View Single Post
  #7  
Old 09-27-2001, 08:20 AM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
variables

i prefere the variable approach a lot better:
NPC Code:

if (playery=49){playery--;
this.varup=1;
this.vardown=0;
}
while(#v(this.varup=1)){
playery--;
}
if(playery=11){
playery++;
this.varup=0;
this.vardown=1;
}
while(#v(this.down=1)){
playery++;
}


that may work ....
Reply With Quote