NWNDS/nwnds_module/sc_random1d5.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

17 lines
407 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_random1d5
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/12/2002 1:58:54 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(5) >= 1)
return FALSE;
return TRUE;
}