View Single Post
  #10  
Old 11-02-2001, 11:05 PM
LilNiglet LilNiglet is offline
Registered User
Join Date: Jun 2001
Posts: 3,178
LilNiglet is on a distinguished road
Or just use a for() loop to create a moving object, thats what you had to do before move ^_^
NPC Code:

if (strequals(#c,move)){
for (i=0;i<=20;i+=1){
x += .05;
sleep .1;
}}



=D That will move an object 10 spaces down
Reply With Quote