View Single Post
  #10  
Old 06-09-2001, 03:27 AM
KJS KJS is offline
The one, The only -
KJS's Avatar
Join Date: Apr 2001
Location: USA, Minnesota
Posts: 1,012
KJS is on a distinguished road
Send a message via AIM to KJS
Cool to check if they have the keyup

ok to check if they have the key up do something like this
NPC Code:
if(keydown(<numb>) && this.keydown==0){
this.keydown=1;
//do rest of the coding
}
if(!keydown(<numb>) && this.keydown==1)
this.keydown=0;

__________________
Thanks,
-KJL
Reply With Quote