View Single Post
  #11  
Old 03-25-2002, 04:22 PM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
ok, this script does a lot of f***** up thing...

one thing:
NPC Code:

NPC Code:

if (playerhearts > 3 || playerhearts == 3 && this.l33t = 0){playerhearts = 3; this.l33t = this.l33t + 1;
}

should be:

if ((playerhearts>3||playerhearts==3)&&this.l33t=0) {
playerhearts=3;
this.l33t+=1;
}



Reply With Quote