29 lines
520 B
Plaintext
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;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|