Increased HP of Practice Dummy

Increased HP of Practice Dummy.  Added instanced player room with persistent storage in Inn.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-09-21 14:31:54 -04:00
parent d481e97d69
commit 8c530509fe
73 changed files with 17784 additions and 252 deletions

View File

@@ -23,8 +23,15 @@ else if (GetLastRestEventType()==REST_EVENTTYPE_REST_FINISHED||REST_EVENTTYPE_RE
int nMillisecond = GetTimeMillisecond();
// Advance the time 8 hours.
nHour += 8;
// Set the new time
SetTime(nHour, nMinute, nSecond, nMillisecond);
int iPW = GetLocalInt(GetModule(), "PW_MODE");
//:: Skip if running as a Persistant World MP module
if (!iPW)
{
SetTime(nHour, nMinute, nSecond, nMillisecond);
}
// See how hungry and thirsty PC is
int ibHungry = GetLocalInt(oPC,"ate");