PWE_PRC8/_module/nss/x2_def_ondeath.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

73 lines
1.1 KiB
Plaintext

#include "nw_i0_tool"
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.3
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this OnDeath
void main()
{
object oPC = GetLastKiller();
if (!GetIsPC(oPC)) return;
if (GetHitDice(oPC) >= 1)
{
RewardPartyXP(20, oPC, TRUE);
RewardPartyGP(10, oPC, TRUE);
if (GetHitDice(oPC) >= 10)
{
RewardPartyXP(20, oPC, TRUE);
RewardPartyGP(10, oPC, TRUE);
if (GetHitDice(oPC) >= 20)
{
RewardPartyXP(20, oPC, TRUE);
RewardPartyGP(50, oPC, TRUE);
if (GetHitDice(oPC) >= 30)
{
RewardPartyXP(50, oPC, TRUE);
RewardPartyGP(100, oPC, TRUE);
if (GetHitDice(oPC) >= 35)
{
RewardPartyXP(150, oPC, TRUE);
RewardPartyGP(200, oPC, TRUE);
}
else
{
}
}
else
{
}
}
else
{
}
}
else
{
}
}
else
{
}
}