17 lines
408 B
Plaintext
17 lines
408 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_random1d20
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 10/9/2002 1:53:23 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the randomness
|
|
if(Random(20) >= 1)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|