RATDOG/_module/nss/cv_chk_lvl15plus.nss
Jaysyn904 4af27ed685 Quest persistence work
Quest persistence work.  Added new salamander model.
2022-07-03 23:23:03 -04:00

26 lines
582 B
Plaintext

//::///////////////////////////////////////////////
//:: cv_chk_lvl15plus.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Checks to see if the PC is 15th lvl.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220703
//:://////////////////////////////////////////////
int StartingConditional()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
//:: The PC's total level must be at least 10.
if ( GetHitDice(oPC) < 15 )
return FALSE;
return TRUE;
}