11 lines
340 B
Plaintext
11 lines
340 B
Plaintext
#include "quest_inc"
|
|
int StartingConditional()
|
|
{
|
|
if (GetLocalInt(GetArea(OBJECT_SELF), "ClientSpawned") == TRUE || Random(2) == 0) return FALSE;
|
|
object oPC = GetPCSpeaker();
|
|
string sDB = CharacterDB(oPC);
|
|
int nJournalEntry = GetCampaignInt(sDB, "QUEST_JOURNAL");
|
|
if (nJournalEntry != 0) return TRUE;
|
|
return FALSE;
|
|
}
|