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;
}
}