yea me again i dunno if im doing this right but when i use custom controls true this comes up.."syntaxerror"
it works fine when custim controls are false
yeah heres the part of script..
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['o']]" # previous page
NEXTPAGE = "[Let['p']]" # next page
CONFIRM = "['Enter']]" # confirm selections / pick up items
CANCEL = "['Esc']]" # cancel selections
ATTACK = "[Let['L']]" # attacking
DEFEND = "[Let['M']]" # defending (hold)
SKILL = "[Let['B']]" # use skill
ITEM = "[Let['N']]" # use item
SELECT = "[Let['Z']]" # change leader
HUD = "[Let['X']]" # HUD on/off if enabled
HOTKEY = "[Let['C']]" # hotkey display on/off if enabled
MINIMAP = "[Let['V']]" # toggle minimap mode if enabled
RUN = "['Alt']]" # running (hold)
SNEAK = "['Shift']" # sneaking (hold)
JUMP = "['Ctrl']" # jumping
TURN = "[Let['Comma']]" # turning around without moving (hold)
end
it would help to have the error message with line number, but I'll take a shot at it.
First of all, for next and prev page, you need to capitalize the o and p, so it would be [Let['O']] and [Let['P']]
Enter, esc, ctrl, alt, and shift all need to be set up properly. i'm not 100% sure, but I think its [Enter], [Esc] [Ctrl] [Alt] [Shift]. Check with Blizz on these ones
And for comma, its [Comma], not [Let['Comma']]
thanks ill do all that and see if it works.
okay i did that and now it comes on...but none of the keys work besided the A,S,W,D
example: i press Enter..NADA..
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['O']]" # previous page
NEXTPAGE = "[Let['P']]" # next page
CONFIRM = "[['Enter']]" # confirm selections / pick up items
CANCEL = "[['Esc']]" # cancel selections
ATTACK = "[Let['L']]" # attacking
DEFEND = "[Let['M']]" # defending (hold)
SKILL = "[Let['B']]" # use skill
ITEM = "[Let['N']]" # use item
SELECT = "[Let['Z']]" # change leader
HUD = "[Let['X']]" # HUD on/off if enabled
HOTKEY = "[Let['C']]" # hotkey display on/off if enabled
MINIMAP = "[Let['V']]" # toggle minimap mode if enabled
RUN = "[['Alt']]" # running (hold)
SNEAK = "[['Shift']]" # sneaking (hold)
JUMP = "[['Ctrl']]" # jumping
TURN = "[['Comma']]" # turning around without moving (hold)
end
nevermind i fixed it. i ahd to take out the..
example..[['enter']] = took out ['&'] left [enter] and it workd..i think thats what u wre prbbly tryin to tell me :|
You're not the first one who had problems with the configuration. (-_-') Blizz-ABS 1.9 will have a failure safe setup, you'll see... ;) I only need to add some minor features and test it overall a bit more and then I will release it.