├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── README.md ├── README_es.md ├── pull_request_template.md └── workflows │ └── core-build.yml ├── .gitignore ├── LICENSE.md ├── conf └── npc_buffer.conf.dist ├── data └── sql │ └── db-world │ └── npc_buffer.sql ├── include.sh ├── pull_request_template.md └── src ├── NB_loader.cpp └── npc_buffer.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/README_es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.github/README_es.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/core-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.github/workflows/core-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /conf/npc_buffer.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/conf/npc_buffer.conf.dist -------------------------------------------------------------------------------- /data/sql/db-world/npc_buffer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/data/sql/db-world/npc_buffer.sql -------------------------------------------------------------------------------- /include.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/NB_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/src/NB_loader.cpp -------------------------------------------------------------------------------- /src/npc_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/mod-npc-buffer/HEAD/src/npc_buffer.cpp --------------------------------------------------------------------------------