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

17 lines
418 B
Plaintext

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