17 lines
407 B
Plaintext
17 lines
407 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sc_randomcoin
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 9/21/2002 2:57:34 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the randomness
|
||
|
if(Random(5) >= 1)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|