Battledale_PRC8/_module/nss/jw_minsol_chkday.nss

18 lines
438 B
Plaintext
Raw Normal View History

int StartingConditional()
{
int iResult;
// this returns TRUE if more than two days have passed since the last time the player delivered the drugs
iResult = (GetLocalInt(GetPCSpeaker(), "medicine" + GetTag(OBJECT_SELF))<(GetCalendarDay()));
if (GetLocalInt(GetPCSpeaker(), "medicine" + GetTag(OBJECT_SELF))==0)
{
SetLocalInt(GetPCSpeaker(), "medicine" + GetTag(OBJECT_SELF),GetCalendarDay());
}
return iResult;
}