Ancordia_PRC8/_module/nss/archerytarget.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

13 lines
518 B
Plaintext

void main()
{
object oPC = GetLastAttacker();
ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectHeal(50), OBJECT_SELF, 0.1);
ClearAllActions(TRUE);
ClearPersonalReputation(oPC, OBJECT_SELF);
ClearPersonalReputation(OBJECT_SELF, oPC);
AdjustReputation(oPC, GetObjectByTag("ArcheryTarget1"), -50);
AdjustReputation(oPC, GetObjectByTag("ArcheryTarget1"), 50);
AdjustReputation(oPC, GetObjectByTag("ArcheryTarget2"), -50);
AdjustReputation(oPC, GetObjectByTag("ArcheryTarget2"), 50);
}