17 lines
170 B
Plaintext
17 lines
170 B
Plaintext
int StartingConditional()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
object oNPC = OBJECT_SELF;
|
|
|
|
if (GetLocalInt(oNPC, "Dialogue1") == 5)
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|