34 lines
1022 B
Plaintext
34 lines
1022 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_007
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 3/11/2004 3:32:13 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetPCSpeaker(), "marilithdead") == 1))
|
|
return FALSE;
|
|
// Inspect local variables
|
|
|
|
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;
|
|
}
|