Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: macht102 on July 25, 2010, 01:56:09 am

Title: Blizz-ABS part2 error with rmx-os
Post by: macht102 on July 25, 2010, 01:56:09 am
i get an error when i login

Spoiler: ShowHide
(http://img339.imageshack.us/img339/9023/errorcxn.jpg)


this is the area the line is pointing to
    return keys.any? {|key| @triggered[key]}

Spoiler: ShowHide
 #----------------------------------------------------------------------------
  # trigger?
  #  Test if key was triggered once.
  #----------------------------------------------------------------------------
  def Input.trigger?(keys)
    keys = [keys] unless keys.is_a?(Array)
    return keys.any? {|key| @triggered[key]}
  end


Title: Re: Blizz-ABS part2 error with rmx-os
Post by: stripe103 on July 25, 2010, 05:25:03 am
Do you have the Blizz-ABS controller for RMX-OS (http://forum.chaos-project.com/index.php?topic=5409.0) installed?
Title: Re: Blizz-ABS part2 error with rmx-os
Post by: Blizzard on July 25, 2010, 05:27:37 am
Are your scripts in the right order (http://forum.chaos-project.com/index.php/topic,23.0.html)?
Title: Re: Blizz-ABS part2 error with rmx-os
Post by: macht102 on July 25, 2010, 05:43:54 am
ya i got the controller installed and i think i got the right order

Spoiler: ShowHide
rmx-os options
rmx-os script
global switches and variables
blizz-abs part1
part2
part3
abs controller
ATES
ATES global
mouse controller
mouse enhancment
Creation System
guild officers
versioning
Title: Re: Blizz-ABS part2 error with rmx-os
Post by: macht102 on July 25, 2010, 04:49:52 pm
i think it has something to do with my current setup of keys since i re copied everything and it worked, but when i changed the keys it gave the error

changed to this:
Spoiler: ShowHide
module Control
   
    CUSTOM_CONTROLS = true
    DISABLE_DEFAULT = true
    UP = "Key['Arrow Up']"
    LEFT = "Key['Arrow Left']"
    DOWN = "Key['Arrow Down']"
    RIGHT = "Key['Arrow Right']"
    PREVPAGE = "Key['-']"
    NEXTPAGE = "Key['=']"
    CONFIRM = "Key['Enter']"
    CANCEL = "Key['Backspace']"
    ATTACK = "Key['Ctrl']"
    DEFEND = "Key['Shift']"
    SKILL = "Key['Alt']"
    ITEM = "Key['\']"
    SELECT = "Key[']']"
    HUD = "Key['[']"
    HOTKEY = "Key[';']"
    MINIMAP = "Key['/']"
    RUN = "Key['.']"
    SNEAK = "Key[',']"
    JUMP = "Key['Space']"
    TURN = "Key['Tab']"
   
  end


Title: Re: Blizz-ABS part2 error with rmx-os
Post by: Blizzard on July 25, 2010, 05:04:37 pm
You used the config app to create the configuration?
Title: Re: Blizz-ABS part2 error with rmx-os
Post by: macht102 on July 25, 2010, 05:09:44 pm
i tried manualy and using the config app

only reason why i changed the controls in the first place was because the login screen for rmx-os wont let some of the keys to work properly,

is there a way to disable blizz-abs for the login/register screen, cause id be fine with the default controls if i knew a way.
Title: Re: Blizz-ABS part2 error with rmx-os
Post by: Blizzard on July 25, 2010, 05:21:26 pm
You should really use the application. Manually configuring can break the whole script.

I didn't sort out the problems with conflicting control yet so you will have to use arrow buttons for the directional controls.