Action RPG Framework

by Forum_account
Action RPG Framework
A framework for developing action RPGs.
ID:843888
 
is it possible to type numbers using numpad?
When I was adding the number_prompt() proc earlier today I realized the number pad didn't work (if you've got num lock on). It looks like BYOND macros the number pad differently than the number keys above the QWERTY row and the Keyboard library doesn't even check for those keys. I'm not sure what the best way to resolve this is. I might just make the Keyboard library convert "Numpad1" to "1" when you press the key.
yea since i already configured some code from prompt file to make it work as only number mode, i figured that out and i see that in your keyboard it doesn't let you type numbers from numpad mostlikely there is no NUMPAD thing in there something like this.
var
const
ARROWS = "|west|east|north|south|"
NUMPAD = "|west|east|north|south|northeast|southeast|northwest|southwest|center|insert|"
EXTENDED = "|space|shift|ctrl|alt|escape|return|tab|back|delete|insert|"
PUNCTUATION = "|`|-|=|\[|]|;|'|,|.|/|\\|"
FUNCTION = "|F1|F2|F3|F4|F5|F6|F7|F8|F9|F10|F11|F12|"
LETTERS = "|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|"
NUMBERS = "|0|1|2|3|4|5|6|7|8|9|"

ALL_KEYS = NUMPAD + EXTENDED + FUNCTION + LETTERS + NUMBERS + PUNCTUATION

there is no Numpad defined only diognal movement key