35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_011
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 4/11/2004 9:32:57 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetModule(), "d5_complete") == 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_lm") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_ll") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_bm") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_pm") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_hd") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_pf") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_bl") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_dr") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_hw") != 1))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|