mob/shina/proc/move()
while(src)
src.Move(usr,usr)
sleep(10)
mob/shina/
icon='shina.dmi'
New()
move()
I make a proc for move with infinite loop of as long as shina exists it will move towards me. Then I used the predefined New() proc giving it the special initialization that when it is created it will begin moving towards me. But nothing happens! What did I do wrong?