ID:149434
 
I would like it if you helped.
mob/verb/WalkRandomly()
walk_rand(src,0)
In response to Super16
with out them moving.
Last time I checked you can't walk randomly unless your moving:P
In response to Super16
Know with out letting them decide. with the code you gave me I can walk and stop moving randomly. I want it so you can't do that.
In response to Buzzyboy
mob/var/isrand = 0

mob/verb/Randomness()
usr.isrand = 1
walk_rand(usr)

client/Move()
if(mob.isrand)
return
else
..()
In response to Nadrew
thanks Nadrew that helped a lot