Amon_PRC8/_module/nss/m1q2_commonerc2.nss

17 lines
356 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
//Be sure to include a check for a m1q2 Plot Complete global, as well.
int StartingConditional()
{
int iSeeStairs = GetLocalInt(OBJECT_SELF, "SeeStairs");
int iTalkedTo = GetLocalInt(OBJECT_SELF, "TalkedTo");
if(iSeeStairs == FALSE)
{
if (iTalkedTo == FALSE)
{
return TRUE;
}
}
return FALSE;
}