28 lines
761 B
Plaintext
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;
|
|
}
|