├── .editorconfig ├── .git_commit_template.txt ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ └── core-build.yml ├── .gitignore ├── README.md ├── acore-module.json ├── conf └── AutoBalance.conf.dist ├── icon.png ├── include.sh ├── pull_request_template.md ├── setup_git_commit_template.sh └── src ├── ABAllCreatureScript.cpp ├── ABAllCreatureScript.h ├── ABAllMapScript.cpp ├── ABAllMapScript.h ├── ABCommandScript.cpp ├── ABCommandScript.h ├── ABConfig.cpp ├── ABConfig.h ├── ABCreatureInfo.h ├── ABGameObjectScript.cpp ├── ABGameObjectScript.h ├── ABGlobalScript.cpp ├── ABGlobalScript.h ├── ABInflectionPointSettings.h ├── ABLevelScalingDynamicLevelSettings.h ├── ABMapInfo.h ├── ABModuleScript.cpp ├── ABModuleScript.h ├── ABPlayerScript.cpp ├── ABPlayerScript.h ├── ABScriptMgr.cpp ├── ABScriptMgr.h ├── ABStatModifiers.h ├── ABUnitScript.cpp ├── ABUnitScript.h ├── ABUtils.cpp ├── ABUtils.h ├── ABWorldScript.cpp ├── ABWorldScript.h ├── AB_loader.cpp ├── AutoBalance.cpp ├── AutoBalance.h ├── Message.cpp └── Message.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git_commit_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/.git_commit_template.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/core-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/.github/workflows/core-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/README.md -------------------------------------------------------------------------------- /acore-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/acore-module.json -------------------------------------------------------------------------------- /conf/AutoBalance.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/conf/AutoBalance.conf.dist -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/icon.png -------------------------------------------------------------------------------- /include.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /setup_git_commit_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/setup_git_commit_template.sh -------------------------------------------------------------------------------- /src/ABAllCreatureScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABAllCreatureScript.cpp -------------------------------------------------------------------------------- /src/ABAllCreatureScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABAllCreatureScript.h -------------------------------------------------------------------------------- /src/ABAllMapScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABAllMapScript.cpp -------------------------------------------------------------------------------- /src/ABAllMapScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABAllMapScript.h -------------------------------------------------------------------------------- /src/ABCommandScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABCommandScript.cpp -------------------------------------------------------------------------------- /src/ABCommandScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABCommandScript.h -------------------------------------------------------------------------------- /src/ABConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABConfig.cpp -------------------------------------------------------------------------------- /src/ABConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABConfig.h -------------------------------------------------------------------------------- /src/ABCreatureInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABCreatureInfo.h -------------------------------------------------------------------------------- /src/ABGameObjectScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABGameObjectScript.cpp -------------------------------------------------------------------------------- /src/ABGameObjectScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABGameObjectScript.h -------------------------------------------------------------------------------- /src/ABGlobalScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABGlobalScript.cpp -------------------------------------------------------------------------------- /src/ABGlobalScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABGlobalScript.h -------------------------------------------------------------------------------- /src/ABInflectionPointSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABInflectionPointSettings.h -------------------------------------------------------------------------------- /src/ABLevelScalingDynamicLevelSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABLevelScalingDynamicLevelSettings.h -------------------------------------------------------------------------------- /src/ABMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABMapInfo.h -------------------------------------------------------------------------------- /src/ABModuleScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABModuleScript.cpp -------------------------------------------------------------------------------- /src/ABModuleScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABModuleScript.h -------------------------------------------------------------------------------- /src/ABPlayerScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABPlayerScript.cpp -------------------------------------------------------------------------------- /src/ABPlayerScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABPlayerScript.h -------------------------------------------------------------------------------- /src/ABScriptMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABScriptMgr.cpp -------------------------------------------------------------------------------- /src/ABScriptMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABScriptMgr.h -------------------------------------------------------------------------------- /src/ABStatModifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABStatModifiers.h -------------------------------------------------------------------------------- /src/ABUnitScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABUnitScript.cpp -------------------------------------------------------------------------------- /src/ABUnitScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABUnitScript.h -------------------------------------------------------------------------------- /src/ABUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABUtils.cpp -------------------------------------------------------------------------------- /src/ABUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABUtils.h -------------------------------------------------------------------------------- /src/ABWorldScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABWorldScript.cpp -------------------------------------------------------------------------------- /src/ABWorldScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/ABWorldScript.h -------------------------------------------------------------------------------- /src/AB_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/AB_loader.cpp -------------------------------------------------------------------------------- /src/AutoBalance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/AutoBalance.cpp -------------------------------------------------------------------------------- /src/AutoBalance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/AutoBalance.h -------------------------------------------------------------------------------- /src/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/Message.cpp -------------------------------------------------------------------------------- /src/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-autobalance/HEAD/src/Message.h --------------------------------------------------------------------------------