NWNDS/nwnds_module/sc_random1d5.nss

17 lines
407 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName sc_random1d5
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/12/2002 1:58:54 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Add the randomness
if(Random(5) >= 1)
return FALSE;
return TRUE;
}