17 lines
404 B
Plaintext
17 lines
404 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName random50
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 11/30/2003 1:27:57 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the randomness
|
||
|
if(Random(50) >= 1)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|