31 lines
464 B
Plaintext
31 lines
464 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()>75)
|
|
return;
|
|
|
|
CreateItemOnObject("stonegnawerbrai", OBJECT_SELF);
|
|
|
|
if (d100()>50)
|
|
return;
|
|
|
|
CreateItemOnObject("spineheart1", OBJECT_SELF);
|
|
|
|
}
|
|
|