NWNDS/nwn_dark_sun/ka_onhuntquest1.nss

18 lines
264 B
Plaintext
Raw Normal View History

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;
}