18 lines
492 B
Plaintext
18 lines
492 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_046
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 2/03/2005 2:07:58 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
object oMod = GetModule();
|
|
int oPCs = GetLocalInt(oMod, "num_players");
|
|
// Inspect local variables
|
|
if(oPCs == 1)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|