14 lines
173 B
Plaintext
14 lines
173 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
int nInt;
|
|
nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYTM_QUEST1");
|
|
|
|
if (!(nInt >= 1))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|