in blizzard's abs, i want you to be able to move with the arrow keys.
CUSTOM_CONTROL = true
# set the next values only if the one above is true
DOWN = 'S' # move down
LEFT = 'A' # move left
RIGHT = 'D' # move right
UP = 'W' # move up
ATTACK = 'F' # attacking
DEFEND = 'D' # defending (hold)
SKILL = 'S' # use skill
ITEM = 'C' # use item
SELECT = 'L' # change leader
HUD_BUTTON = 'H' # HUD on/off if enabled
MINIMAP_BUTTON = 'M' # minimap on/off if enabled
HOTKEY_BUTTON = 'K' # hotkey display on/off if enabled
RUN = 'A' # running (hold)
SNEAK = 'Z' # sneaking (hold)
JUMP = 'Q' # jumping
TURN = 'T' # turning around without moving (hold)
end
what should i replace s, a, d, and w with to move with the arrow keys?