ID:174788
 
is it possible to modify how fast a player can move around in your game? and if so can you make certain mobs move faster than the default mob speed in byond games?
mob/player//for the mob called player
Move()//when he moves
sleep(x)//sleep what you want
..()//then move

Btw i written this in The forum so the indention is probly wrong
There are loads of demos on movement delay. There isn't really anyway to speed up a player, you can only slow him down. But if you're really stubborn you can play around with pixel x and pixel y. Or just make him move two tiles instead of one but that would look ugly.
In response to SSChicken
ah i see. well thanks for the help.