20 lines
497 B
Plaintext
20 lines
497 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName bvcaptain_levchk
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/10/2003 6:58:45 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's class
|
|
int iPassed = 0;
|
|
if(GetHitDice(GetPCSpeaker()) >= 15)
|
|
iPassed = 1;
|
|
if(iPassed == 0)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|