20 lines
605 B
Plaintext
20 lines
605 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_003
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 3/11/2004 3:30:42 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetPCSpeaker(), "doppledead") == 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetModule(), "sw_pf") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetPCSpeaker(), "pf_on") != 1))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|