├── .github └── workflows │ └── core_build.yml ├── LICENSE ├── README.md ├── conf ├── conf.sh.dist └── npcbots.conf.dist ├── include.sh ├── mod-npc-bot.jpg ├── sql ├── README.md └── world │ ├── creature_template_npcbots.sql │ └── npc_text_npcbots.sql └── src ├── ACoreHookScript.cpp ├── ACoreHookScript.h ├── BotAI.cpp ├── BotAI.h ├── BotCommon.h ├── BotDreadlord.cpp ├── BotDreadlord.h ├── BotEvents.h ├── BotGiver.cpp ├── BotGiver.h ├── BotGridNotifiers.h ├── BotInfernal.cpp ├── BotInfernal.h ├── BotMgr.cpp ├── BotMgr.h ├── NPCBots.cpp ├── NPCBots.h └── npcbots_loader.cpp /.github/workflows/core_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/.github/workflows/core_build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/README.md -------------------------------------------------------------------------------- /conf/conf.sh.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/conf/conf.sh.dist -------------------------------------------------------------------------------- /conf/npcbots.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/conf/npcbots.conf.dist -------------------------------------------------------------------------------- /include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/include.sh -------------------------------------------------------------------------------- /mod-npc-bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/mod-npc-bot.jpg -------------------------------------------------------------------------------- /sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/sql/README.md -------------------------------------------------------------------------------- /sql/world/creature_template_npcbots.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/sql/world/creature_template_npcbots.sql -------------------------------------------------------------------------------- /sql/world/npc_text_npcbots.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/sql/world/npc_text_npcbots.sql -------------------------------------------------------------------------------- /src/ACoreHookScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/ACoreHookScript.cpp -------------------------------------------------------------------------------- /src/ACoreHookScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/ACoreHookScript.h -------------------------------------------------------------------------------- /src/BotAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotAI.cpp -------------------------------------------------------------------------------- /src/BotAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotAI.h -------------------------------------------------------------------------------- /src/BotCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotCommon.h -------------------------------------------------------------------------------- /src/BotDreadlord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotDreadlord.cpp -------------------------------------------------------------------------------- /src/BotDreadlord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotDreadlord.h -------------------------------------------------------------------------------- /src/BotEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotEvents.h -------------------------------------------------------------------------------- /src/BotGiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotGiver.cpp -------------------------------------------------------------------------------- /src/BotGiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotGiver.h -------------------------------------------------------------------------------- /src/BotGridNotifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotGridNotifiers.h -------------------------------------------------------------------------------- /src/BotInfernal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotInfernal.cpp -------------------------------------------------------------------------------- /src/BotInfernal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotInfernal.h -------------------------------------------------------------------------------- /src/BotMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotMgr.cpp -------------------------------------------------------------------------------- /src/BotMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/BotMgr.h -------------------------------------------------------------------------------- /src/NPCBots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/NPCBots.cpp -------------------------------------------------------------------------------- /src/NPCBots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/NPCBots.h -------------------------------------------------------------------------------- /src/npcbots_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeofstorm/mod-npc-bots/HEAD/src/npcbots_loader.cpp --------------------------------------------------------------------------------