#include "nw_i0_tool" /* Script generated by Lilac Soul's NWN Script Generator, v. 2.1 For download info, please visit: http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */ //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; RewardPartyGP(300, oPC, FALSE); }