20 lines
599 B
Plaintext
20 lines
599 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sc_002
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 3/11/2004 3:30:27 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
if(!(GetLocalInt(GetPCSpeaker(), "wurmdead") == 1))
|
||
|
return FALSE;
|
||
|
if(!(GetLocalInt(GetPCSpeaker(), "bl_on") != 1))
|
||
|
return FALSE;
|
||
|
if(!(GetLocalInt(GetModule(), "sw_bl") != 1))
|
||
|
return FALSE;
|
||
|
return TRUE;
|
||
|
}
|