20 lines
497 B
Plaintext
20 lines
497 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sign_level_check
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/15/2003 7:43:59 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's class
|
|
int iPassed = 0;
|
|
if(GetHitDice(GetPCSpeaker()) >= 16)
|
|
iPassed = 1;
|
|
if(iPassed == 0)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|