how can I move player character left,right and down on the arrow keys? ???
I use ags version 2.72
You could use THIS MODULE (http://www.adventuregamestudio.co.uk/yabb/index.php?topic=22724.msg278823#msg278823). Don't know if it works with 3.0, though.
Isn't this built-in anyway in the latest versions?
The last default template made by Rui has the keyboard movement build in, yes. I don't know if it is included in the current beta, but the last stable version has it.
I use that script to move player character to up
if (IsKeyPressed(372) == 1)
character[PLAYERSHIP].Walk(character[PLAYERSHIP].x, character[PLAYERSHIP].y-18);
and I think I found left arrow keycode number but player character go grazy(it go somewhere) when I test it
If you need the keycodes, look up "ASCII code table" in the AGS help file.
thanks :)