Thread: Bread Help
View Single Post
  #8  
Old 09-28-2001, 07:51 PM
Metal-Slug Metal-Slug is offline
!_!
Metal-Slug's Avatar
Join Date: Jun 2001
Posts: 2,421
Metal-Slug is on a distinguished road
so i need
NPC Code:

// NPC made by Urónd the Paladin
if (playertouchsme) {
toweapons Bread;
this.Bcount = =1;
}
if (weaponfired && this.Bcount>1) {
playerhearts+=2;
this.Bcount ==1;
if (isweapon && this.Bcount<1) {
destroy;
}
}


or
NPC Code:

// NPC made by Urónd the Paladin
if (playertouchsme) {
toweapons Bread;
this.Bcount ==+1;
}
if (weaponfired && this.Bcount>1) {
playerhearts+=2;
this.Bcount -==1;
if (isweapon && this.Bcount<1) {
destroy;
}
}

Reply With Quote