Files
PWE_PRC8/_module/nss/100xp4pc10gp4par.nss
Jaysyn904 43c4564112 2025/09/15 Update
Updated XP system to use PWFXP.
2025-09-16 07:32:56 -04:00

34 lines
654 B
Plaintext

#include "nw_i0_tool"
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.2
For download info, please visit:
http://www.angelfire.com/space/lilacsoul */
//Put this OnDeath
void main()
{
ExecuteScript("prc_npc_death", OBJECT_SELF);
ExecuteScript("prc_pwondeath", OBJECT_SELF);
object oKiller = GetLastKiller();
if (!GetIsObjectValid(oKiller)) return;
object oPC;
if (GetIsPC(oKiller))
oPC = oKiller;
else
oPC = GetMaster(oKiller);
if (!GetIsPC(oPC)) return;
//RewardPartyXP(100, oPC, FALSE);
RewardPartyGP(50, oPC, FALSE);
//RewardPartyXP(25, oPC, TRUE);
RewardPartyGP(10, oPC, TRUE);
}