14 lines
258 B
Plaintext
14 lines
258 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetCampaignInt("Endless Nights IV","MP") == 1)
|
|
iResult = TRUE;
|
|
|
|
if (GetCampaignInt("Endless Nights IV","E4DMModOnly") == 1 && !GetIsDM(GetPCSpeaker()))
|
|
iResult= FALSE;
|
|
|
|
return iResult;
|
|
}
|