REO-EE/_module/nss/php_mod_leaving.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

13 lines
280 B
Plaintext

#include "php_include"
#include "nwnx_funcs_w"
void main()
{
object oPC = OBJECT_SELF;
// Linux is handled on the OnClientExit event as opposed to the OnPlayerLeaving hook that Windows has
if(ADV_USING_LINUX) oPC = GetExitingObject();
PHP_SaveHitPoints(oPC);
}