initial commit derived from skeleton-module

This commit is contained in:
BytesGalore
2021-10-05 18:21:31 +02:00
commit 6500b8cc87
13 changed files with 1065 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_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/auth/base/"
)
DB_CHARACTERS_CUSTOM_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/characters/base/"
)
DB_WORLD_CUSTOM_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/world/base/"
)
## UPDATES
DB_AUTH_UPDATES_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/auth/updates/"
)
DB_CHARACTERS_UPDATES_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/characters/updates/"
)
DB_WORLD_UPDATES_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/world/updates/"
)

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]
#####################################################
# No Hearthstone cooldown module configuration
#####################################################
#
# NoHearthstoneCooldownConfig.Enable
# Description: Enable to skip the Hearthstone cooldown
# Default: 1 - Enabled
# 0 - Disabled
#
NoHearthstoneCooldown.Enable = 1