REO-EE/_module/nss/dialoguestart2.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

17 lines
170 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;
if (GetLocalInt(oNPC, "Dialogue1") == 2)
{
return TRUE;
}
else
{
return FALSE;
}
}