PRC8 content update

PRC8 content update.  Full compile.
This commit is contained in:
Jaysyn904
2024-12-28 22:38:01 -05:00
parent 983030ff1e
commit f8835e0b32
373 changed files with 3921 additions and 7440 deletions

View File

@@ -240,7 +240,14 @@ int PWFXP_GetLevel(object oPC)
if(PWFXP_USE_TOTAL_XP_TO_COMPUTE_PCLEVEL) // use total XP to compute PC level
return FloatToInt(0.5 + sqrt(0.25 + ( IntToFloat(GetXP(oPC)) / 500 )));
else // use total class level to compute PC level
return GetLevelByPosition(1,oPC) + GetLevelByPosition(2,oPC) + GetLevelByPosition(3,oPC);
return GetLevelByPosition(1,oPC) +
GetLevelByPosition(2,oPC) +
GetLevelByPosition(3,oPC) +
GetLevelByPosition(4,oPC) +
GetLevelByPosition(5,oPC) +
GetLevelByPosition(6,oPC) +
GetLevelByPosition(7,oPC) +
GetLevelByPosition(8,oPC);
}