Amon_PRC8/_module/nss/random_1_in_4.nss

17 lines
407 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//::///////////////////////////////////////////////
//:: FileName random_1_in_4
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/30/2003 1:27:28 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(4) >= 1)
return FALSE;
return TRUE;
}