18 lines
264 B
Plaintext
18 lines
264 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
int nInt;
|
||
|
nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYhuntandgather1");
|
||
|
|
||
|
if (nInt < 1)
|
||
|
return FALSE;
|
||
|
|
||
|
nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYhuntandgather1");
|
||
|
|
||
|
if (nInt >= 2)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|