Ok.... So how can i make it wait three seconds before executing the next move statement?
Edit: I just found the sleep command :P
It still doesnt work though. This is my script:
NPC Code:
if (created) {
move 20,0,3,;
sleep 3;
move 0,20,3,;
}
//#CLIENTSIDE
//some stuff controlling how the npc looks
With this, the NPC is never even shown. It might be being moved, but i cant see it.
