REO-EE/_module/nss/dialoguestart3.nss

17 lines
170 B
Plaintext
Raw Normal View History

2024-02-22 13:22:03 -05:00
int StartingConditional()
{
object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;
if (GetLocalInt(oNPC, "Dialogue1") == 3)
{
return TRUE;
}
else
{
return FALSE;
}
}