NWNDS/nwnds_module/sc_randomcoin.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_randomcoin
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/21/2002 2:57:34 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(5) >= 1)
return FALSE;
return TRUE;
}