I am wondering how i could make a person/monster walk in a certain direction and back and forth as well(like silk wizard has it)Thanx
[Edit]
I have been looking over deadrons pathfinding demo/lib and i dont understand how i could make a mob walk back and forth (like in dwo)
ID:179581
Dec 1 2001, 7:58 pm (Edited on Dec 1 2001, 8:07 pm)
|
|
mob
monster
New()
walkingpattern()
..()
proc
walkingpattern()
walk_to(src,locate(src.x+4,src.y,src.z),0)
sleep(10)
walk_to(src,locate(src.x-4,src.y,src.z),0)
sleep(10)
walkingpattern()
please note this a simple but poor way to do this, but i wanted to prove how simple your question was...
FIREking