ID:267272
 
How can i disable NPCs for moving diagonal directions?
tell them to only walk in N,S,W,E directions like
mob/npc
New()LifeCycle()
proc/LifeCycle()
var/dir = pick(NORTH,SOUTH,WEST,EAST)
walk(src,dir)
spawn(5)LifeCycle()