17 lines
409 B
Plaintext
17 lines
409 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName conv_bvgrd_rndm1
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/2/2003 1:47:45 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the randomness
|
|
if(Random(5) >= 1)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|