Amon_PRC8/_module/nss/random_1_in_2.nss

17 lines
422 B
Plaintext
Raw 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(2) >= 1)
return FALSE;
return TRUE;
}