AOC_PRC8/_module/nss/monst_check.nss
Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

29 lines
520 B
Plaintext

int StartingConditional()
{
object oMod = GetModule();
if(!(GetLocalInt(oMod, "sw_bm") == 1)&&(GetLocalInt(oMod, "sw_pm") == 1)
&&(GetLocalInt(GetModule(), "sw_hd") == 1)
&&(GetLocalInt(GetModule(), "sw_pf") == 1)&&(GetLocalInt(GetModule(), "sw_bl") == 1)
&&(GetLocalInt(GetModule(), "sw_dr") == 1)&&(GetLocalInt(GetModule(), "sw_hw") == 1)
&&(GetLocalInt(GetModule(), "sw_lm") == 1)&&(GetLocalInt(GetModule(), "sw_ll") == 1))
return FALSE;
return TRUE;
}