17 lines
401 B
Plaintext
17 lines
401 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_006
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 6/23/2002 4:06:12 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the randomness
|
|
if(Random(10) >= 1)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|