73 lines
1.1 KiB
Plaintext
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
|
|
{
|
|
}
|
|
|
|
}
|
|
|