Achievements mod to make WoTLK achievements work on cmangos classic and tbc cores.
This mod was ported from https://github.com/tsaah/core/tree/hb-achievements and modified to become a independent module as well as adding extra features.
Classic and TBC
- Follow the instructions in https://github.com/davidonete/cmangos-modules?tab=readme-ov-file#how-to-install
- Enable the
BUILD_MODULE_ACHIEVEMENTS
flag in cmake and run cmake. The module should be installed insrc/modules/achievements
- Copy the configuration file from
src/modules/achievements/src/achievements.conf.dist.in
and place it where your mangosd executable is. Also rename it toachievements.conf
. - Remember to edit the config file and modify the options you want to use.
- Lastly you will have to install the database changes located in the
src/modules/achievements/sql/install
folder, each folder inside represents where you should execute the queries. E.g. The queries inside ofsrc/modules/achievements/sql/install/world
will need to be executed in the world/mangosd database, the ones insrc/modules/achievements/sql/install/characters
in the characters database, etc... - For being able to see the UI on the client you will need to download and install the following addon https://github.com/celguar/Achiever
To remove achievements from your server you have multiple options, the first and easiest is to disable it from the achievements.conf
file. The second option is to completely remove it from the server and db:
- Remove the
BUILD_MODULE_ACHIEVEMENTS
flag from your cmake configuration and recompile the game - Execute the sql queries located in the
src/modules/achievements/sql/uninstall
folder. Each folder inside represents where you should execute the queries. E.g. The queries inside ofsrc/modules/achievements/sql/uninstall/world
will need to be executed in the world/mangosd database, the ones insrc/modules/achievements/sql/uninstall/characters
in the characters database, etc...