Initial commit - mod-playerbots

This commit is contained in:
UltraNix
2021-12-30 17:13:09 +01:00
commit b3d00ccb26
28 changed files with 571 additions and 0 deletions

32
conf/conf.sh.dist Normal file
View File

@@ -0,0 +1,32 @@
#!/usr/bin/env bash
## CUSTOM SQL - Important file used by the db_assembler.sh
## Keep only the required variables (base sql files or updates, depending on the DB)
## BASE SQL
DB_AUTH_CUSTOM_PATHS+=(
"$MOD_SKELETON_ROOT/sql/auth/base/"
)
DB_CHARACTERS_CUSTOM_PATHS+=(
"$MOD_SKELETON_ROOT/sql/characters/base/"
)
DB_WORLD_CUSTOM_PATHS+=(
"$MOD_SKELETON_ROOT/sql/world/base/"
)
## UPDATES
DB_AUTH_UPDATES_PATHS+=(
"$MOD_SKELETON_ROOT/sql/auth/updates/"
)
DB_CHARACTERS_UPDATES_PATHS+=(
"$MOD_SKELETON_ROOT/sql/characters/updates/"
)
DB_WORLD_UPDATES_PATHS+=(
"$MOD_SKELETON_ROOT/sql/world/updates/"
)

17
conf/my_custom.conf.dist Normal file
View File

@@ -0,0 +1,17 @@
#
# Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
#
[worldserver]
########################################
# My module configuration
########################################
#
# MyModule.Enable
# Description: Enable my module and print "Hello World" message at server start
# Default: 0 - Disabled
# 1 - Enabled
#
MyModule.Enable = 0