Files
Anphillia_PRC8/_module/nss/mod_onheart.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

32 lines
666 B
Plaintext

///////////////////////////////////////////////////////////////////////////////
// mod_onheart
// written by: eyesolated
// written at: Jan. 30, 2004
//
// Notes: Placeholder for the module-wide OnHeartbeat Event
///////////
// Includes
//
#include "datetime_inc"
void main()
{
int hb = GetLocalInt(OBJECT_SELF, "MOD_HEARTBEAT");
if (hb % 100 == 0)
datetime_SaveCurrentDateTime();
if (hb % 20 == 0)
ExecuteScript("chr_update_all", OBJECT_SELF);
if (hb % 70 == 0)
ExportAllCharacters();
if (hb % 100 == 0)
ExecuteScript("discord_update", OBJECT_SELF);
SetLocalInt(OBJECT_SELF, "MOD_HEARTBEAT", hb+1);
}