Thread: Possible?
View Single Post
  #17  
Old 05-18-2002, 10:48 PM
Bhala Bhala is offline
Disgruntled Monkey
Bhala's Avatar
Join Date: Mar 2001
Posts: 779
Bhala is on a distinguished road
Quote:
Originally posted by nyghtGT

even better:
NPC Code:

if (created) {
timeout=0.05;
}
if (timeout) {
for(i=0;i<3;i++) {
if (keydown(i)) {
this.move++;
} else {
this.move=0;
}
}
}

No your script does not work as you have to check all vars at once or you will get a value other then 0 while your moving.
Reply With Quote