Amon_PRC8/_module/nss/random1in3.nss

17 lines
418 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//::///////////////////////////////////////////////
//:: FileName random1in3
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 5/9/2004 5:36:50 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(3) >= 1)
return FALSE;
return TRUE;
}