First, thank you Rochet2 for inspiration. His reforging repo for TrinityCore can be found here: https://github.com/Rochet2/TrinityCore/tree/reforging_3.3.5/src/server/scripts/Custom/Reforging
Adds the possiblity to reforge items on 3.3.5a client. Reforging allows players to decrease a stat by a certain percentage (default is 40%) and add a new stat based on the difference. The allowed stats and the percentage is configurable via the mod .conf file.
- Due to the nature of WOTLK client, the new STATS will only be visible to the owner. This is only visual, stats will be there nonetheless!
- Upgrades will be lost (of course) when trading, sending mail, depositing to guild bank, deposit to auction.
- Heirlooms can't be reforged.
- Items with random properties (like "of the Bear", "of Intellect") can't be reforged.
WARNING: this is NOT compatible with the Individual item upgrades: https://github.com/silviu20092/azerothcore-item-upgrades, although you can have both systems, if an item is both upgraded and reforged, the stats won't be calculated properly. The two systems are not aware of each other and will step on each other's foot as both systems try to alter item's stats.
- Clone this repository somewhere on your device.
- Copy mod-reforging to your AzerothCore repo modules folder.
- Re-run cmake to generate the solution.
- Re-build your project.
- You should have mod_reforging.conf.dist copied in configs/modules after building, copy this to your server's binaries folder.
- Start the server, .sql files should automatically be imported in DB, if not, apply them manually.
WARNING: this mod requires at least this version of AzerothCore https://github.com/azerothcore/azerothcore-wotlk/commit/3988e9581d736f8c7891baaf13011e9df4f46fa4
Use .npc add 200004 to spawn the Master Reforger NPC. The rest is self explanatory.
- silviu20092