Amon_PRC8/_module/nss/m1q2_commonerc2.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

17 lines
356 B
Plaintext

//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;
}