Blizz-ABS part2 error with rmx-os

Started by macht102, July 25, 2010, 01:56:09 am

Previous topic - Next topic

macht102

i get an error when i login

Spoiler: ShowHide


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



stripe103


Blizzard

Check out our game brands:

Daygames
Game Night Games
Chugnar Games

Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

macht102

July 25, 2010, 05:43:54 am #3 Last Edit: July 25, 2010, 05:10:32 pm by macht102
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

macht102

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



Blizzard

You used the config app to create the configuration?
Check out our game brands:

Daygames
Game Night Games
Chugnar Games

Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

macht102

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.

Blizzard

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.
Check out our game brands:

Daygames
Game Night Games
Chugnar Games

Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.