19 lines
470 B
Plaintext
19 lines
470 B
Plaintext
int StartingConditional()
|
|
{
|
|
object Get = GetModule();
|
|
if((!(GetLocalInt(Get, "sw_ll") == 1))&&(GetLocalInt(Get, "sw_lm") == 1)&&
|
|
(GetLocalInt(Get, "sw_ll") == 1)&&(GetLocalInt(Get, "sw_bm") == 1)
|
|
&&(GetLocalInt(Get, "sw_pm") == 1)&&(GetLocalInt(Get, "sw_hd") == 1)
|
|
&&(GetLocalInt(Get, "sw_pf") == 1)&&(GetLocalInt(Get, "sw_bl") == 1)
|
|
&&(GetLocalInt(Get, "sw_dr") == 1) &&(GetLocalInt(Get, "sw_hw") == 1))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|