35 lines
783 B
Plaintext
35 lines
783 B
Plaintext
|
//:://////////////////////////////////////////////////
|
||
|
//:: NW_C2_DEFAULT7
|
||
|
/*
|
||
|
Default OnDeath event handler for NPCs.
|
||
|
|
||
|
Adjusts killer's alignment if appropriate and
|
||
|
alerts allies to our death.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////////
|
||
|
//:: Copyright (c) 2002 Floodgate Entertainment
|
||
|
//:: Created By: Naomi Novik
|
||
|
//:: Created On: 12/22/2002
|
||
|
//:://////////////////////////////////////////////////
|
||
|
|
||
|
#include "x0_i0_spawncond"
|
||
|
|
||
|
void main()
|
||
|
{ object oPC = GetLastKiller();
|
||
|
|
||
|
while (GetIsObjectValid(GetMaster(oPC)))
|
||
|
{
|
||
|
oPC=GetMaster(oPC);
|
||
|
}
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));
|
||
|
|
||
|
if (DoOnce==TRUE) return;
|
||
|
|
||
|
SetLocalInt(oPC, GetTag(OBJECT_SELF), TRUE);
|
||
|
|
||
|
AddJournalQuestEntry("Rudo'sRescue", 2, oPC, TRUE, FALSE);
|
||
|
}
|