Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2023-09-25 20:24:01 -04:00
parent 4e16ca63ca
commit 5197ad9a4d
7741 changed files with 5391820 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
//Created by Guile 3/27/07
//Can go OnDamaged, OnDisturbed, OnSpellCastAt, creature heartbeats, etc.
#include "nw_i0_tool"
void main()
{
object oPC = GetLastHostileActor();
if (!GetIsPC(oPC)) return;
if (GetHitDice(oPC) > 8)
return;
RewardPartyXP(10, oPC, FALSE);
RewardPartyGP(10, oPC, FALSE);
if (d100()>=80)
{
ActionSpeakString("OOOWWW");
}
else if (d100()<=40)
{
ActionSpeakString("AAARRRGGHHH!!!");
}
}