NWNDS/nwnds_module/sc_random1d10.nss

17 lines
408 B
Plaintext
Raw Normal View History

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