14 lines
258 B
Plaintext
Raw Normal View History

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;
}