Ancordia_PRC8/_module/nss/quest_hasjourna1.nss

11 lines
271 B
Plaintext
Raw Permalink Normal View History

2023-09-21 19:51:32 -04:00
#include "x4_inc_functions"
int StartingConditional()
{
object oPC = GetPCSpeaker();
string sDB = CharacterDB(oPC);
int nJournalEntry = GetCampaignInt(sDB, "QUEST_JOURNAL");
if (nJournalEntry != 0 && Random(3) == 0) return TRUE;
else return FALSE;
}