Thread: frolic updates
View Single Post
  #2  
Old 06-08-2001, 09:36 PM
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
Thumbs up humm lol

lol what just poped up in my mind is a bad glitch in the water spar (I didn't even have anyone to test it yet).. But I know about this glitch because I use it in my jail (were they pound rocks)...

the glitch is if they hold down s it will keep on hitting the person...

(i fixed it in the jail a long time ago, so they have to keep on pressing d so it will hit the rock only 1 and they cant hold it down)

it is not that hard of a glitch to fix I just do something like

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;


well that is how I do it... the only reason I posted this is because some other people might wonder how to do it also...
__________________
Thanks,
-KJL
Reply With Quote