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

26 lines
512 B
Plaintext

#include "aps_include"
void main()
{
// HP Regen System
ExecuteScript("regen_mod_hb", OBJECT_SELF);
// Temporary fix to database idle shutdown - ping DB periodically
int iCount = GetLocalInt(OBJECT_SELF, "PING_COUNTDOWN");
if(iCount <= 0)
{
iCount = 300;
string sSQL = "SELECT * FROM pwdata";
SQLExecDirect(sSQL);
SQLFetch();
SQLGetData(1);
}
else
{
iCount--;
}
SetLocalInt(OBJECT_SELF, "PING_COUNTDOWN", iCount);
}