*notices something horribly simple that he screwed up on and pukes*
Remind me not to visit this board only at 2 a.m....
Change
NPC Code:
if (timeout && keydown(4)&&this.fon==1) {
hideimg 69;
hideimg 80;
this.fon=0;
}
to
NPC Code:
if (timeout&&this.fon==1) {
if (keydown(4)){
hideimg 69;
hideimg 80;
this.fon=0; }
timeout=.05;
}