Alangara_PRC8/_module/nss/ke_entrapped_key.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

29 lines
628 B
Plaintext

/*
* Script generated by LS Script Generator, v.TK.0
*
* For download info, please visit:
* http://nwvault.ign.com/View.php?view=Other.Detail&id=1502
*/
// Put this script OnDeath.
#include "x0_i0_partywide"
void main()
{
object oSelf = OBJECT_SELF;
// Get the creature who triggered this event.
object oPC = GetLastKiller();
// We are really interested in the ultimate master of the killer.
while ( GetMaster(oPC) != OBJECT_INVALID )
oPC = GetMaster(oPC);
// Give 1 gold (to party) to us.
GiveGoldToAll(oSelf, 1);
CreateItemOnObject("ancientlegacykey", oSelf, 1);
}