├── .editorconfig ├── .git_commit_template.txt ├── .gitattributes ├── .github └── workflows │ └── core-build.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── conf ├── mod_npc_beastmaster.conf.dist └── profanity.txt ├── data └── sql │ ├── db-characters │ └── track_tamed_pets.sql │ ├── db-world │ ├── beastmaster_tames.sql │ ├── beastmaster_tames_inserts.sql │ └── npc_beastmaster.sql │ └── updates │ └── world │ └── .dummy ├── setup_git_commit_template.sh └── src ├── NpcBeastmaster.cpp └── NpcBeastmaster.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git_commit_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/.git_commit_template.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/core-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/.github/workflows/core-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/README.md -------------------------------------------------------------------------------- /conf/mod_npc_beastmaster.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/conf/mod_npc_beastmaster.conf.dist -------------------------------------------------------------------------------- /conf/profanity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/conf/profanity.txt -------------------------------------------------------------------------------- /data/sql/db-characters/track_tamed_pets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/data/sql/db-characters/track_tamed_pets.sql -------------------------------------------------------------------------------- /data/sql/db-world/beastmaster_tames.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/data/sql/db-world/beastmaster_tames.sql -------------------------------------------------------------------------------- /data/sql/db-world/beastmaster_tames_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/data/sql/db-world/beastmaster_tames_inserts.sql -------------------------------------------------------------------------------- /data/sql/db-world/npc_beastmaster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/data/sql/db-world/npc_beastmaster.sql -------------------------------------------------------------------------------- /data/sql/updates/world/.dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /setup_git_commit_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/setup_git_commit_template.sh -------------------------------------------------------------------------------- /src/NpcBeastmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/src/NpcBeastmaster.cpp -------------------------------------------------------------------------------- /src/NpcBeastmaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-beastmaster/HEAD/src/NpcBeastmaster.h --------------------------------------------------------------------------------