11 lines
251 B
Plaintext
11 lines
251 B
Plaintext
|
#include "x4_inc_functions"
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
string sDB = CharacterDB(oPC);
|
||
|
string sNPCRace = GetCampaignString(sDB, "QUEST_NPC_RACE");
|
||
|
|
||
|
if (sNPCRace != "") return TRUE;
|
||
|
else return FALSE;
|
||
|
}
|