17 lines
422 B
Plaintext
17 lines
422 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(2) >= 1)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|