ID:170650
 
Hmm, I am having troubles. My games animations display weirdly. I have a movement delay in, and I tried taking it out then the animation looked decent.

mob
var
move_delay = 5
tmp
move_time = 0

client
Move()
if(world.time < mob.move_time)
return

mob.move_time = world.time + mob.move_delay
return ..()


But is there a way to make it have a movement delay and look good?
This works well for me - http://developer.byond.com/hub/Kunark/MoveDelay
Not sure what's wrong with yours though.