generated from Jaysyn/ModuleTemplate
17 lines
408 B
Plaintext
17 lines
408 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName mod_1in6_conv
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 3/28/2004 11:55:06 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the randomness
|
|
if(Random(6) >= 1)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|