Amon_PRC8/_module/nss/random1in2.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

17 lines
418 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName random1in2
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 5/9/2004 5:36:50 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(2) >= 1)
return FALSE;
return TRUE;
}