PWE_PRC8/_module/nss/ff_onenterarea.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

26 lines
685 B
Plaintext

///*************************************
//* NWN-MySQL 4.0 (c) 2004 FastFrench *
//*************************************
// This file is licensed under the terms of the
// GNU GENERAL PUBLIC LICENSE (GPL) Version 2
// ************************
// ** ff_onenterarea.nss **
// ************************
// ** use this script on the OnEnter event for each AREA
// ** or add the instruction:
// ** ExecuteScript("ff_onenterarea", OBJECT_SELF);
// ** at the beginning of your main function in your existing script
#include "ff_include"
void main()
{
if (!FF_USE_EXTERNAL_DATABASE) return;
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
ff_FlushData(oPC);
}