NWNDS/nwnds_module/sc_random1d20.nss

17 lines
408 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: 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;
}