Need SERIOUS help with key binding/mapping

admin

Administrator
Staff member
Im working on a php rpg with some others, but I want to be able to use the arrow keys to navigate the character using the up arrow/down arrow/left arrow/right arrow, and you move your character through links


var left="<? echo $url.$west;?>";
var up="<? echo $url.$north;?>";
var right="<? echo $url.$east;?>";
var down="<? echo $url.$south;?>";


can ANYONE give me a example for doing this, all i want is when you press the up down left or right it, produces the same result as if you pressed a link. to move left or right etc..
 
Back
Top