10 lines
225 B
Plaintext
10 lines
225 B
Plaintext
#include "x4_inc_functions"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sDB = CharacterDB(oPC);
|
|
|
|
if (GetCampaignString(sDB, "QUEST_TEMPLATE") == "defend") return TRUE;
|
|
else return FALSE;
|
|
}
|