mob/proc/walkspeed(M as mob)
if(usr.speed == 1)
step(M:North,Lag=100)
my error says I only have one argument but I need 3, I think I have 3 up there...
error:walk :expected 2 to 3 arguments (found 1).
ID:261319
![]() Dec 15 2001, 6:52 pm
|
|
step(M,NORTH,0)//You don't need to do lag= because that var is built-in to be within that part of the proc
Also, take a look at step() in the reference.