├── .editorconfig ├── .git_commit_template.txt ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── README.md └── workflows │ └── core-build.yml ├── .gitignore ├── LICENSE ├── conf └── my_custom.conf.dist ├── data └── sql │ ├── db-auth │ ├── base │ │ └── .gitkeep │ └── updates │ │ └── .gitkeep │ ├── db-characters │ ├── base │ │ └── .gitkeep │ └── updates │ │ └── .gitkeep │ └── db-world │ ├── base │ ├── .gitkeep │ └── skeleton_module_acore_string.sql │ └── updates │ └── .gitkeep ├── include.sh ├── pull_request_template.md ├── setup_git_commit_template.sh └── src ├── FlyInOldWorld.cpp └── FlyInOldWorld_loader.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git_commit_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.git_commit_template.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/workflows/core-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.github/workflows/core-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/LICENSE -------------------------------------------------------------------------------- /conf/my_custom.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/conf/my_custom.conf.dist -------------------------------------------------------------------------------- /data/sql/db-auth/base/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-auth/updates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-characters/base/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-characters/updates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-world/base/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-world/base/skeleton_module_acore_string.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/data/sql/db-world/base/skeleton_module_acore_string.sql -------------------------------------------------------------------------------- /data/sql/db-world/updates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /setup_git_commit_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/setup_git_commit_template.sh -------------------------------------------------------------------------------- /src/FlyInOldWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/src/FlyInOldWorld.cpp -------------------------------------------------------------------------------- /src/FlyInOldWorld_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tralenor/mod-fly-in-old-world/HEAD/src/FlyInOldWorld_loader.cpp --------------------------------------------------------------------------------