28 lines
816 B
Plaintext
28 lines
816 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Wrapper
|
|
// wrap_mod_onexit
|
|
// by Don Anderson
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
// Check to see if player is dead and trying to avoid death penalties
|
|
// if (GetCurrentHitPoints(oPlayer) <= 0)
|
|
// SetLocalInt (GetModule(), "death"+GetName(oPlayer), 1);
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// This script has been auto-generated by HakInstaller to call
|
|
// multiple handlers for the onclientleave event.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
#include "nw_o0_itemmaker"
|
|
void main()
|
|
{
|
|
ExecuteScript("pwdb_clientleave", OBJECT_SELF);
|
|
ExecuteScript("prc_onleave", OBJECT_SELF);
|
|
}
|
|
|