Alright I want to change the controls of Blizz-ABS, the module I need to edit is this:
module Control
# using other controls instead of arrow keys
CUSTOM_CONTROLS = true
# RMXP default controls will be replaced completely with Blizz-ABS controls
DISABLE_DEFAULT = true
# you can skip this if you have set CUSTOM_CONTROLS to false
# setup the controls as array, but with prefix and suffix "
# i.e.: Let T and R be for cancel => CANCEL = "[Let['T'], Let['R']]"
# for more info about read 1.1.1. of the manual
UP = "[Let['W']]" # move up
LEFT = "[Let['A']]" # move left
DOWN = "[Let['S']]" # move down
RIGHT = "[Let['D']]" # move right
PREVPAGE = "[Let['Q']]" # previous page
NEXTPAGE = "[Let['E']]" # next page
CONFIRM = "[Let['H']]" # confirm selections / pick up items
CANCEL = "[Let['F']]" # cancel selections
ATTACK = "[Let['K']]" # attacking
DEFEND = "[Let['L']]" # defending (hold)
SKILL = "[Let['J']]" # use skill
ITEM = "[Let['I']]" # use item
SELECT = "[Let['O']]" # change leader
HUD = "[Let['Z']]" # HUD on/off if enabled
HOTKEY = "[Let['X']]" # hotkey display on/off if enabled
MINIMAP = "[Let['C']]" # toggle minimap mode if enabled
RUN = "[Let['M']]" # running (hold)
SNEAK = "[Dot]" # sneaking (hold)
JUMP = "[Comma]" # jumping
TURN = "[Let['U']]" # turning around without moving (hold)
end
Now I know for the arrow keys I'm supposed to use D_UP, D_RIGHT, D_DOWN, D_LEFT but.. I have no clue how to do this I've tried "[D_UP]" and "[Let['D_UP']]" both do not work, how am I supposed to do this?
Edit: Figured it out. "[D_Up]" "[D_Down]" "[D_Left]" "[D_Right]"
Alright I want to change the controls of Blizz-ABS, the module I need to edit is this:
module Control
# using other controls instead of arrow keys
CUSTOM_CONTROLS = true
# RMXP default controls will be replaced completely with Blizz-ABS controls
DISABLE_DEFAULT = true
# you can skip this if you have set CUSTOM_CONTROLS to false
# setup the controls as array, but with prefix and suffix "
# i.e.: Let T and R be for cancel => CANCEL = "[Let['T'], Let['R']]"
# for more info about read 1.1.1. of the manual
UP = "[Let['W']]" # move up
LEFT = "[Let['A']]" # move left
DOWN = "[Let['S']]" # move down
RIGHT = "[Let['D']]" # move right
PREVPAGE = "[Let['Q']]" # previous page
NEXTPAGE = "[Let['E']]" # next page
CONFIRM = "[Let['H']]" # confirm selections / pick up items
CANCEL = "[Let['F']]" # cancel selections
ATTACK = "[Let['K']]" # attacking
DEFEND = "[Let['L']]" # defending (hold)
SKILL = "[Let['J']]" # use skill
ITEM = "[Let['I']]" # use item
SELECT = "[Let['O']]" # change leader
HUD = "[Let['Z']]" # HUD on/off if enabled
HOTKEY = "[Let['X']]" # hotkey display on/off if enabled
MINIMAP = "[Let['C']]" # toggle minimap mode if enabled
RUN = "[Let['M']]" # running (hold)
SNEAK = "[Dot]" # sneaking (hold)
JUMP = "[Comma]" # jumping
TURN = "[Let['U']]" # turning around without moving (hold)
end
Now I know for the arrow keys I'm supposed to use D_UP, D_RIGHT, D_DOWN, D_LEFT but.. I have no clue how to do this I've tried "[D_UP]" and "[Let['D_UP']]" both do not work, how am I supposed to do this?
Edit: Figured it out. "[D_Up]" "[D_Down]" "[D_Left]" "[D_Right]"
Share this post
Link to post
Share on other sites