21 lines
537 B
Plaintext
21 lines
537 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_sailorchat_02
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/23/2003 1:03:55 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the gender restrictions
|
|
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
|
|
return FALSE;
|
|
|
|
// Add randomness
|
|
if(Random(100) >= 34)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|