NWNDS/nwnds_module/sc_random1d20.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
408 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_random1d20
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/9/2002 1:53:23 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(20) >= 1)
return FALSE;
return TRUE;
}