ID:269330
 
How would I make them turn there dir, just not move like.
If they are frozen and u press NORTH, they turn NORTH. Is ther anyway to implement this in move, instead of coding it into each client/NORTH,SOUTH, etc?
client
Move()
if(usr.Frozen)
return
..()

src.Frozen.....
In response to Digital Samurai
Can't use it in Client procs without me first just doing src.mob, and I already changed that. :p learn up dude!
Make use of the parameters of the Move function.
client/Move(loc,dir)
if(mob.Frozen)
mob.dir=dir
return 0 //or 1, if you want that to count as success
.=..()
In response to ITG Master
sorry, my bad mob.