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

28 lines
761 B
Plaintext

int StartingConditional()
{
// Inspect local variables
if(!(GetLocalInt(GetModule(), "ch_lm") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_ll") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_bm") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_pm") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_hd") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_pf") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_bl") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_dr") != 1))
return FALSE;
if(!(GetLocalInt(GetModule(), "ch_hw") != 1))
return FALSE;
return TRUE;
}