NWNDS/nwnds_module/sc_random1d30.nss

17 lines
408 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName sc_random1d30
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/9/2002 1:52:46 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(30) >= 1)
return FALSE;
return TRUE;
}