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