Given that version 1.0.130 of the game made it so that resistances are hard-capped at 80% (which wasn't in the patch notes), I'm here to present a quick-fix mod that reverts it back to 200%.

http://www.mediafire.com/download/98u1en5jgqvo9pf/

The mod (and the change it makes) is quite simple. There's only one line that was changed-

Original Character Stat file-
Code
new entry "_Hero"
type "Character"
data "Act" "1"
data "Act part" "1"
data "Act strength" "0"
data "Strength" "5"
data "Dexterity" "5"
data "Intelligence" "5"
data "Constitution" "5"
data "Speed" "5"
data "Perception" "5"
data "Armor" "0"
data "Reflexes" "0"
data "Vitality" "100"
data "APMaximum" "7"
data "APStart" "2"
data "APRecovery" "4"
data "Movement" "0"
data "Gain" "None"
data "Sight" "0"
data "Hearing" "0"
data "Initiative" "0"
data "FOV" "90"
data "Weight" "50000"
data "PiercingResistance" "0"
data "SlashingResistance" "0"
data "CrushingResistance" "0"
data "ShadowResistance" "0"
data "CriticalChance" "0"
data "MaxResistance" "80"
data "FireResistance" "0"
data "EarthResistance" "0"
data "WaterResistance" "0"
data "AirResistance" "0"
data "PoisonResistance" "0"
data "WarriorLore" "0"
data "RangerLore" "0"
data "SingleHanded" "0"
data "TwoHanded" "0"
data "Blackrock" "0"
data "Bow" "0"
data "Crossbow" "0"
data "DualWielding" "0"
data "Shield" "0"
data "ArmorMastery" "0"
data "BodyBuilding" "0"
data "Willpower" "0"
data "Sourcery" "0"
data "Telekinesis" "0"
data "FireSpecialist" "0"
data "WaterSpecialist" "0"
data "AirSpecialist" "0"
data "EarthSpecialist" "0"
data "Repair" "0"
data "Sneaking" "0"
data "PickPocket" "0"
data "LockPicking" "0"
data "Loremaster" "0"
data "Crafting" "0"
data "Barter" "0"
data "Charm" "0"
data "Intimidate" "0"
data "Reason" "0"
data "Charisma" "0"
data "Leadership" "0"
data "Luck" "0"
data "PathInfluence" "Lava,70;Fire,40;Electrified,40;BloodElectrified,40;CloudPoison,40;CloudStatic,40;Ooze,30"


The version in my mod-
Code
new entry "_Hero"
type "Character"
data "Act" "1"
data "Act part" "1"
data "Act strength" "0"
data "Strength" "5"
data "Dexterity" "5"
data "Intelligence" "5"
data "Constitution" "5"
data "Speed" "5"
data "Perception" "5"
data "Armor" "0"
data "Reflexes" "0"
data "Vitality" "100"
data "APMaximum" "7"
data "APStart" "2"
data "APRecovery" "4"
data "Movement" "0"
data "Gain" "None"
data "Sight" "0"
data "Hearing" "0"
data "Initiative" "0"
data "FOV" "90"
data "Weight" "50000"
data "PiercingResistance" "0"
data "SlashingResistance" "0"
data "CrushingResistance" "0"
data "ShadowResistance" "0"
data "CriticalChance" "0"
data "MaxResistance" "200"
data "FireResistance" "0"
data "EarthResistance" "0"
data "WaterResistance" "0"
data "AirResistance" "0"
data "PoisonResistance" "0"
data "WarriorLore" "0"
data "RangerLore" "0"
data "SingleHanded" "0"
data "TwoHanded" "0"
data "Blackrock" "0"
data "Bow" "0"
data "Crossbow" "0"
data "DualWielding" "0"
data "Shield" "0"
data "ArmorMastery" "0"
data "BodyBuilding" "0"
data "Willpower" "0"
data "Sourcery" "0"
data "Telekinesis" "0"
data "FireSpecialist" "0"
data "WaterSpecialist" "0"
data "AirSpecialist" "0"
data "EarthSpecialist" "0"
data "Repair" "0"
data "Sneaking" "0"
data "PickPocket" "0"
data "LockPicking" "0"
data "Loremaster" "0"
data "Crafting" "0"
data "Barter" "0"
data "Charm" "0"
data "Intimidate" "0"
data "Reason" "0"
data "Charisma" "0"
data "Leadership" "0"
data "Luck" "0"
data "PathInfluence" "Lava,70;Fire,40;Electrified,40;BloodElectrified,40;CloudPoison,40;CloudStatic,40;Ooze,30"


It's the MaxResistance line that had it's value changed.


I'm not yet sure whether the multiple mod loading issue was fixed (the patch notes indicate something was fixed at least), so if this doesn't work with other modules you can just place the UncappedResists.txt within the Public/(mod)/Stats/Generated/Data/ folder into another mod's equivalent folder.

Edit: I just tested it, and the multiple mod loading issue isn't fixed for the Public portions of mods. So just transfer the UncappedResists.txt file to other mods (unless they're in .pak form) to merge functionalities.

Last edited by Rhidian; 22/08/14 04:14 PM.