17 lines
413 B
Plaintext
17 lines
413 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName aw_isisquestion
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 11/11/2003 7:00:50 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the randomness
|
||
|
if(Random(100) >= 30)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|