HoS_PRC8/_mod/_module/nss/ep_rumor.nss

9 lines
202 B
Plaintext
Raw Normal View History

2024-11-25 19:36:07 -05:00
int StartingConditional()
{
object oMod=GetModule();
int nEP=GetLocalInt(oMod,"nEvilPower");
int nES=GetLocalInt(oMod,"nEvilStage");
if (nEP>33&&nES==0) return TRUE;
return FALSE;
}