Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
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;
|
|
}
|