NWNDS/nwnds_module/sc_randomcoin.nss

17 lines
407 B
Plaintext
Raw Normal View History

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