WoR_PRC8/_module/nss/ship_level.nss

20 lines
491 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: FileName ship_level
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 4/24/2003 12:42:44 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetHitDice(GetPCSpeaker()) >= 5)
iPassed = 1;
if(iPassed == 0)
return FALSE;
return TRUE;
}