22 lines
402 B
Plaintext
22 lines
402 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iFP;
|
||
|
int iResult;
|
||
|
|
||
|
string sCampaign = "Endless Nights IV";
|
||
|
if (GetCampaignInt(sCampaign,"MP") == 1)
|
||
|
sCampaign = "MP_Endless Nights IV";
|
||
|
|
||
|
iFP = GetCampaignInt(sCampaign,"E4InitialEvent");
|
||
|
|
||
|
iResult= FALSE;
|
||
|
if (iFP == 0)
|
||
|
iResult= TRUE;
|
||
|
|
||
|
if (GetCampaignInt("Endless Nights IV","E4DMModOnly") == 1 && !GetIsDM(GetPCSpeaker()))
|
||
|
iResult= FALSE;
|
||
|
|
||
|
return iResult;
|
||
|
|
||
|
}
|