View Single Post
  #15  
Old 03-25-2002, 10:53 PM
mhermher mhermher is offline
galase galase!
mhermher's Avatar
Join Date: Jun 2001
Location: Sweden, Stockholm.
Posts: 2,012
mhermher is on a distinguished road
Send a message via ICQ to mhermher Send a message via AIM to mhermher Send a message via Yahoo to mhermher
Quote:
Originally posted by 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;
}



a more effective way:


NPC Code:


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


__________________
Donate money for my trip to Germany

Adiarde Manager
Reply With Quote