Thread: Horses
View Single Post
  #1  
Old 06-24-2001, 03:26 AM
grim_squeaker_x grim_squeaker_x is offline
Retired Oldbie
grim_squeaker_x's Avatar
Join Date: Mar 2001
Posts: 3,084
grim_squeaker_x will become famous soon enough
I always use this for my keydowns, don't ask why.
NPC Code:
if (created) {
setarray this.keydown,10;
setarray this.oldkeydown,10;
}
if (playerenters||timeout) {
for (this.k=0;this.k<10;this.k++) this.oldkeydown[this.k]=this.keydown[this.k];
for (this.k=0;this.k<10;this.k++) this.keydown[this.k]=(keydown(this.k));
timeout=0.05;
}

__________________

Reply With Quote