Here you go everybody
I made a much more convenient fix for you guys:
- Open Notepad
- Paste the following code in it:
@echo off
set db_file="game.db"
if NOT exist %db_file% (
echo No game.db file in this directory!
PAUSE
EXIT /B
)
echo Duplicating agility as grit for followers in %db_file%...
sqlite3.exe %db_file% "insert into character_stats(char_id, stat_type, stat_id, stat_value) select char_id, 0, 15, stat_value from character_stats where stat_id=19 and stat_type=0 and char_id not in (select char_id from character_stats where stat_type=0 and stat_id=15)"
echo Complete!..
PAUSE
EXIT /B
- Save the file next to your game.db (if in Single Player then your game installation directory
Conan Exiles\ConanSandbox\Saved\
if it’s a windows server then the equivalent folder with the databases) - obviously make sure the game is not running / the server is offline
When saving in notepad, select “all files” instead of Text documents and name the file GritFix.bat - Make a backup of your game.db (just in case)
- Double-click GritFix.bat
What it will do is duplicate the current Agility stat of your already placed followers and insert it as their Grit also, giving them back roughly the armor they had prior to the update. (they might get a slight bit OP with as much agility as grit, but it’ll roughly be in the same ballpark so this is probably the closest you’ll get to a decent solution)
It will not affect followers that you have placed since the update
Cheers!