Files
HeroesStone_PRC8/_module/nss/random_1_to_10.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

17 lines
407 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName random_1_to_10
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 27.6.2004 20:37:25
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(10) >= 1)
return FALSE;
return TRUE;
}