ID:169626
 
If someone could please show me how I can loop a npc to continuely step west, I would be very grateful, its driving me insane.

and yes, I have used F1. Didn't help my problem.
Look up walk()
In response to Jp
Dude, I said I used F1, not helping me at all, I need an example.

edit: oops, I forgot I already tried that. what I need is a walk with a delay.

edit2: you know what, if I ask a question, just tell me to look harder, problem solved xD
In response to Jermman
proc/stepwestbaby
while(1)
step(src,WEST)
sleep(5) //change this to decrease or increase the amount of time between a step


Should work, untested, but hope that helps...Call it in your code with src.stepwestbaby()
In response to Jermman
mob/NPC/proc/stepwest()
while(src) // Change the condition if you have a better one
step(WEST)
sleep(7) // Change the delay as you desire


RD
In response to Rurouni Dragon
RD, just walk(src,WEST,7) would eliminate that while loop. D:
In response to Hell Ramen
You're right

RD