Thread: Prevent hurting
View Single Post
  #4  
Old 08-27-2001, 10:25 PM
Merlin Merlin is offline
Banned
Merlin's Avatar
Join Date: Jul 2001
Location: Merlin - U S A Malak - United Kingdom
Posts: 2,543
Merlin is on a distinguished road
Send a message via ICQ to Merlin Send a message via AIM to Merlin
i tested this offline and it worked
PHP Code:
// NPC made by Merlin
if (playertouchsme) {toweapons Invincable;
}
if (
weaponfired&&!this.on) {
set this.on;
setplayerprop #c,On.;
}
else
if (
weaponfired&&this.on) {
unset 
this.on;
setplayerprop #c,Off.;
}
while (
this.on) {
if (
playerhearts<playerfullhearts) {
playerhearts=playerfullhearts;
}

Reply With Quote