View Single Post
  #8  
Old 09-04-2001, 04:19 AM
entravial entravial is offline
Registered User
entravial's Avatar
Join Date: Mar 2001
Posts: 825
entravial is on a distinguished road
Send a message via ICQ to entravial Send a message via AIM to entravial Send a message via Yahoo to entravial
*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;
}

__________________


If the post says ~AlphaFlame~, that's who's posting. If not, it's Entravial (owner)
Reply With Quote