ID:145800
 
need help from you again.

how come the usr.move = 0 doesnt't work anymore? It used to work without defining it. And I'm a lil to slow to figure out how to define it without using move itself lol.


Dunno why it doesnt work anymore or w/e but here I guess
mob/var/move = 1
client
Move()
if(!src.mob.move)return 0
else ..()


Should work
In response to VcentG
thanks man there ya go CYN
In response to VcentG


Actually VcentG, you don't even need src.mob in there. You can just use src.
In response to XzDoG
XzDoG wrote:
Actually VcentG, you don't even need src.mob in there. You can just use src.

Actually no, he is right. You do need mob because you're trying to access the client's mob. The variable is defined from a mob, so he is correct.

~~> Unknown Person