Disabled Hidden Talent until it's actually finished

Disabled Hidden Talent until it's actually finished.  Fixed a few typos & some formatting.
This commit is contained in:
Jaysyn904
2025-02-07 19:11:46 -05:00
parent 23de032b00
commit 4fb9f2783b
18 changed files with 76 additions and 82 deletions

View File

@@ -116,8 +116,11 @@ void main()
// See if we should alter speed based on armor. Dwarves ignore this, as does Wargird's Armor, and the Aym Vestige, and Wildren race
int nAym = FALSE;
if (GetLocalInt(oPC, "ExploitVestige") != VESTIGE_AYM_DWARVEN_STEP && GetHasSpellEffect(VESTIGE_AYM, oPC)) nAym = TRUE;
if(GetPRCSwitch(PRC_PNP_ARMOR_SPEED) && MyPRCGetRacialType(oPC) != RACIAL_TYPE_DWARF && oArmor != oWOL && !nAym && GetRacialType(oPC) != RACIAL_TYPE_WILDREN)
{
if(GetPRCSwitch(PRC_PNP_ARMOR_SPEED)
&& MyPRCGetRacialType(oPC) != RACIAL_TYPE_DWARF
&& oArmor != oWOL && !nAym
&& GetRacialType(oPC) != RACIAL_TYPE_WILDREN)
{
int nCoc = (GetLevelByClass(CLASS_TYPE_COC, oPC));
int nKnight = (GetLevelByClass(CLASS_TYPE_KNIGHT, oPC));
if(nArmorType == ARMOR_TYPE_MEDIUM && nCoc < 5 && nKnight < 4)