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

26 lines
388 B
Plaintext

//Put this script OnDeath
void main()
{
// *** This line added for Alangara ***
ExecuteScript("pwfxp",OBJECT_SELF);
// ************************************
object oPC = GetLastKiller();
while (GetIsObjectValid(GetMaster(oPC)))
{
oPC=GetMaster(oPC);
}
if (!GetIsPC(oPC)) return;
if (d100()>25)
return;
CreateItemOnObject("stonegnawerbrai", OBJECT_SELF);
}