17 lines
418 B
Plaintext
17 lines
418 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName random1in3
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 5/9/2004 5:36:50 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the randomness
|
||
|
if(Random(3) >= 1)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|