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...