UW2_PRC8/_module/nss/henchlvlcheck.nss

20 lines
514 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
//::///////////////////////////////////////////////
//:: FileName sc_030
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/8/2007 11:43:26 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetHitDice(GetPCSpeaker()) >= 30)
iPassed = 1;
if(iPassed == 0)
return FALSE;
return TRUE;
}