Quest persistence work

Quest persistence work.  Added new salamander model.
This commit is contained in:
Jaysyn904
2022-07-03 23:23:03 -04:00
parent 2cf9f57160
commit 4af27ed685
139 changed files with 98388 additions and 4047 deletions

View File

@@ -0,0 +1,25 @@
//::///////////////////////////////////////////////
//:: cv_chk_lvl10plus.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Checks to see if the PC is 10th level.
*/
//:://////////////////////////////////////////////
//:: 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) < 10 )
return FALSE;
return TRUE;
}