Thread: system
View Single Post
  #13  
Old 10-04-2001, 08:29 AM
BocoC BocoC is offline
Registered User
BocoC's Avatar
Join Date: Jun 2001
Location: Washington State, USA
Posts: 980
BocoC is on a distinguished road
Send a message via AIM to BocoC Send a message via Yahoo to BocoC
NPC Code:

if (created || playerenters) {
this.keys={0,0,0,0,0,0,0,0,0,0,0};
timeout=0.05;
}
if (timeout) {
GetKeys();
DoActions();
timeout=0.05;
}
function GetKeys() {
for (i=0;i<11;i++) {
this.keys[i]=keydown(i);
}
}
function DoActions() {
if (this.keys[0]==1 && this.keys[6]==1) {
DoStuff;
}
}


Try that
__________________
-Boco

FLKJH$TRFG*$(&%>FMG >REN<>F ;.kjsd
Reply With Quote