9 lines
202 B
Plaintext
9 lines
202 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oMod=GetModule();
|
|
int nEP=GetLocalInt(oMod,"nEvilPower");
|
|
int nES=GetLocalInt(oMod,"nEvilStage");
|
|
if (nEP>33&&nES==0) return TRUE;
|
|
return FALSE;
|
|
}
|