17 lines
407 B
Plaintext
17 lines
407 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName random_1_in_4
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 9/30/2003 1:27:28 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the randomness
|
|
if(Random(4) >= 1)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|