18 lines
438 B
Plaintext
18 lines
438 B
Plaintext
|
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;
|
||
|
}
|