20 lines
497 B
Plaintext
20 lines
497 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName levelcheckscrpt3
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/31/2006 2:20:52 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's class
|
|
int iPassed = 0;
|
|
if(GetHitDice(GetPCSpeaker()) >= 2)
|
|
iPassed = 1;
|
|
if(iPassed == 0)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|