9 lines
199 B
Plaintext
9 lines
199 B
Plaintext
#include "quest_inc"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sDB = CharacterDB(oPC);
|
|
if (GetCampaignInt(sDB, "QUEST_TWIST") == 2) return TRUE;
|
|
return FALSE;
|
|
}
|