mirror of
https://github.com/uprightbass360/AzerothCore-RealmMaster.git
synced 2026-01-29 16:33:47 +00:00
feat: adds config/db import functionality
This commit is contained in:
279
config/CONFIG_MANAGEMENT.md
Normal file
279
config/CONFIG_MANAGEMENT.md
Normal file
@@ -0,0 +1,279 @@
|
||||
# Configuration Management System
|
||||
|
||||
This system allows easy management of AzerothCore server settings using familiar INI/conf file syntax.
|
||||
|
||||
## 📁 File Structure
|
||||
|
||||
```
|
||||
config/
|
||||
├── server-overrides.conf # Main configuration overrides
|
||||
└── presets/ # Pre-configured server types
|
||||
├── blizzlike.conf # Authentic WotLK experience
|
||||
├── fast-leveling.conf # 3x XP rates
|
||||
├── hardcore-pvp.conf # Competitive PvP server
|
||||
└── casual-pve.conf # Relaxed PvE experience
|
||||
```
|
||||
|
||||
## 🚀 Quick Start
|
||||
|
||||
### 1. Edit Configuration Settings
|
||||
|
||||
Edit `config/server-overrides.conf` with your desired settings:
|
||||
|
||||
```ini
|
||||
[worldserver.conf]
|
||||
Rate.XP.Kill = 2.0
|
||||
Rate.XP.Quest = 2.0
|
||||
GM.InGMList.Level = 3
|
||||
|
||||
[playerbots.conf]
|
||||
AiPlayerbot.MinRandomBots = 100
|
||||
AiPlayerbot.MaxRandomBots = 300
|
||||
```
|
||||
|
||||
### 2. Apply Configuration
|
||||
|
||||
```bash
|
||||
# Apply your custom overrides
|
||||
./scripts/apply-config.py
|
||||
|
||||
# Or apply a preset
|
||||
./scripts/apply-config.py --preset fast-leveling
|
||||
|
||||
# Preview changes without applying
|
||||
./scripts/apply-config.py --dry-run
|
||||
```
|
||||
|
||||
### 3. Restart Server
|
||||
|
||||
Restart your AzerothCore containers to apply the changes:
|
||||
|
||||
```bash
|
||||
docker compose down && docker compose up -d
|
||||
```
|
||||
|
||||
## 🤖 Automated Integration
|
||||
|
||||
The configuration system is fully integrated into the setup and deployment workflow for seamless automation.
|
||||
|
||||
### **Setup Integration**
|
||||
During `./setup.sh`, you can choose a server configuration preset:
|
||||
```
|
||||
SERVER CONFIGURATION PRESET
|
||||
Choose a server configuration preset:
|
||||
1) Default (No Preset)
|
||||
Use default AzerothCore settings without any modifications
|
||||
2) Blizzlike Server
|
||||
Authentic WotLK experience with 1x rates and original mechanics
|
||||
3) Fast Leveling Server
|
||||
3x XP rates with quality of life improvements and cross-faction features
|
||||
4) Hardcore PvP Server
|
||||
Competitive PvP environment with 1.5x leveling and minimal bots
|
||||
5) Casual PvE Server
|
||||
Relaxed PvE experience with 2x rates and social features
|
||||
```
|
||||
|
||||
The chosen preset is stored in `.env`:
|
||||
```bash
|
||||
SERVER_CONFIG_PRESET=fast-leveling
|
||||
```
|
||||
|
||||
### **Deploy Integration**
|
||||
During `./deploy.sh`, the configuration is automatically applied:
|
||||
```
|
||||
Step 5/6: Applying server configuration
|
||||
✅ Applying server configuration preset: fast-leveling
|
||||
✅ Server configuration preset 'fast-leveling' applied successfully
|
||||
ℹ️ Restarting worldserver to apply configuration changes
|
||||
```
|
||||
|
||||
### **Automated Usage Examples**
|
||||
|
||||
**Interactive Setup:**
|
||||
```bash
|
||||
./setup.sh
|
||||
# Choose preset during interactive configuration
|
||||
./deploy.sh
|
||||
# Configuration automatically applied
|
||||
```
|
||||
|
||||
**Non-Interactive Setup:**
|
||||
```bash
|
||||
./setup.sh --server-config fast-leveling --non-interactive
|
||||
./deploy.sh
|
||||
# Configuration automatically applied
|
||||
```
|
||||
|
||||
**Skip Configuration:**
|
||||
```bash
|
||||
./deploy.sh --skip-config
|
||||
# Deploys without applying any configuration changes
|
||||
```
|
||||
|
||||
## 📋 Available Commands
|
||||
|
||||
### Apply Custom Overrides
|
||||
```bash
|
||||
./scripts/apply-config.py
|
||||
```
|
||||
|
||||
### Apply a Preset
|
||||
```bash
|
||||
# List available presets
|
||||
./scripts/apply-config.py --list-presets
|
||||
|
||||
# Apply specific preset
|
||||
./scripts/apply-config.py --preset blizzlike
|
||||
./scripts/apply-config.py --preset fast-leveling
|
||||
./scripts/apply-config.py --preset hardcore-pvp
|
||||
./scripts/apply-config.py --preset casual-pve
|
||||
```
|
||||
|
||||
### Advanced Usage
|
||||
```bash
|
||||
# Apply only specific conf files
|
||||
./scripts/apply-config.py --files "worldserver.conf,playerbots.conf"
|
||||
|
||||
# Preview changes without applying
|
||||
./scripts/apply-config.py --dry-run
|
||||
|
||||
# Use different storage path
|
||||
./scripts/apply-config.py --storage-path /custom/storage
|
||||
|
||||
# Use different overrides file
|
||||
./scripts/apply-config.py --overrides-file /path/to/custom.conf
|
||||
```
|
||||
|
||||
## ⚙️ Configuration Format
|
||||
|
||||
### Section Headers
|
||||
Each section corresponds to a `.conf` file:
|
||||
```ini
|
||||
[worldserver.conf] # Settings for worldserver.conf
|
||||
[authserver.conf] # Settings for authserver.conf
|
||||
[playerbots.conf] # Settings for playerbots.conf
|
||||
[mod_transmog.conf] # Settings for mod_transmog.conf
|
||||
```
|
||||
|
||||
### Data Types
|
||||
```ini
|
||||
# Boolean values (0 = disabled, 1 = enabled)
|
||||
SomeFeature.Enable = 1
|
||||
|
||||
# Numeric values
|
||||
Rate.XP.Kill = 2.5
|
||||
MaxPlayerLevel = 80
|
||||
|
||||
# String values (can be quoted or unquoted)
|
||||
ServerMessage = "Welcome to our server!"
|
||||
DatabaseInfo = "127.0.0.1;3306;user;pass;db"
|
||||
```
|
||||
|
||||
### Comments
|
||||
Lines starting with `#` are comments and are ignored:
|
||||
```ini
|
||||
# This is a comment
|
||||
# Rate.XP.Kill = 1.0 # This setting is disabled
|
||||
Rate.XP.Quest = 2.0 # Active setting with comment
|
||||
```
|
||||
|
||||
## 🎯 Available Presets
|
||||
|
||||
### blizzlike.conf
|
||||
- **Description**: Authentic WotLK experience
|
||||
- **XP Rates**: 1x (Blizzlike)
|
||||
- **Features**: No cross-faction interaction, standard death penalties
|
||||
|
||||
### fast-leveling.conf
|
||||
- **Description**: 3x XP with quality of life improvements
|
||||
- **XP Rates**: 3x Kill/Quest, 2.5x Money
|
||||
- **Features**: Cross-faction interaction, faster corpse decay, autobalance
|
||||
|
||||
### hardcore-pvp.conf
|
||||
- **Description**: Competitive PvP environment
|
||||
- **XP Rates**: 1.5x (to reach endgame faster)
|
||||
- **Features**: No cross-faction interaction, minimal bots, expensive transmog
|
||||
|
||||
### casual-pve.conf
|
||||
- **Description**: Relaxed PvE with social features
|
||||
- **XP Rates**: 2x XP, 2.5x Rest bonus
|
||||
- **Features**: Full cross-faction interaction, high bot population, solo LFG
|
||||
|
||||
## 🔧 How It Works
|
||||
|
||||
1. **Preservation**: The system reads your existing `.conf` files and preserves all comments and structure
|
||||
2. **Override**: Only the settings you specify are updated
|
||||
3. **Fallback**: If a `.conf` file doesn't exist, it's created from the corresponding `.dist` file
|
||||
4. **Safety**: Use `--dry-run` to preview changes before applying
|
||||
|
||||
## 📝 Common Settings Reference
|
||||
|
||||
### XP and Progression
|
||||
```ini
|
||||
[worldserver.conf]
|
||||
Rate.XP.Kill = 2.0 # XP from killing monsters
|
||||
Rate.XP.Quest = 2.0 # XP from completing quests
|
||||
Rate.XP.Explore = 1.5 # XP from exploring new areas
|
||||
Rate.Rest.InGame = 2.0 # Rest bonus while logged in
|
||||
Rate.Rest.Offline.InTavernOrCity = 2.0 # Rest bonus while offline in safe zones
|
||||
```
|
||||
|
||||
### Drop Rates
|
||||
```ini
|
||||
[worldserver.conf]
|
||||
Rate.Drop.Money = 1.5 # Money drop rate
|
||||
Rate.Drop.Items = 1.2 # Item drop rate
|
||||
```
|
||||
|
||||
### Cross-Faction Settings
|
||||
```ini
|
||||
[worldserver.conf]
|
||||
AllowTwoSide.Interaction.Chat = 1 # Cross-faction chat
|
||||
AllowTwoSide.Interaction.Group = 1 # Cross-faction groups
|
||||
AllowTwoSide.Interaction.Guild = 1 # Cross-faction guilds
|
||||
AllowTwoSide.Interaction.Auction = 1 # Shared auction house
|
||||
AllowTwoSide.Interaction.Mail = 1 # Cross-faction mail
|
||||
```
|
||||
|
||||
### Playerbot Settings
|
||||
```ini
|
||||
[playerbots.conf]
|
||||
AiPlayerbot.RandomBotMinLevel = 15 # Minimum bot level
|
||||
AiPlayerbot.RandomBotMaxLevel = 80 # Maximum bot level
|
||||
AiPlayerbot.MinRandomBots = 50 # Minimum number of bots
|
||||
AiPlayerbot.MaxRandomBots = 200 # Maximum number of bots
|
||||
AiPlayerbot.RandomBotJoinLfg = 1 # Bots join LFG
|
||||
AiPlayerbot.RandomBotJoinBG = 1 # Bots join battlegrounds
|
||||
```
|
||||
|
||||
### Module Settings
|
||||
```ini
|
||||
[mod_transmog.conf]
|
||||
Transmogrification.Enable = 1 # Enable transmogrification
|
||||
Transmogrification.Cost = 100000 # Cost in copper
|
||||
|
||||
[mod_autobalance.conf]
|
||||
AutoBalance.enable = 1 # Enable dungeon scaling
|
||||
AutoBalance.MinPlayerReward = 1 # Scale rewards for solo play
|
||||
```
|
||||
|
||||
## 🆘 Troubleshooting
|
||||
|
||||
### Configuration Not Applied
|
||||
- Ensure you restart the server after applying changes
|
||||
- Check that the `.conf` files exist in your `storage/config/` directory
|
||||
- Use `--dry-run` to verify what changes would be made
|
||||
|
||||
### Permission Errors
|
||||
```bash
|
||||
# Make sure the script is executable
|
||||
chmod +x scripts/apply-config.py
|
||||
|
||||
# Check file permissions in storage/config/
|
||||
ls -la storage/config/
|
||||
```
|
||||
|
||||
### Finding Available Settings
|
||||
- Look in your `storage/config/` directory for `.conf` files
|
||||
- Each module's available settings are documented in their `.conf` files
|
||||
- Use `--dry-run` to see which files would be affected
|
||||
36
config/presets/blizzlike.conf
Normal file
36
config/presets/blizzlike.conf
Normal file
@@ -0,0 +1,36 @@
|
||||
# CONFIG_NAME: Blizzlike Server
|
||||
# CONFIG_DESCRIPTION: Authentic WotLK experience with 1x rates and original mechanics
|
||||
# Blizzlike Server Configuration - Authentic WotLK Experience
|
||||
|
||||
[worldserver.conf]
|
||||
# Blizzlike experience rates (1x)
|
||||
Rate.XP.Kill = 1.0
|
||||
Rate.XP.Quest = 1.0
|
||||
Rate.XP.Explore = 1.0
|
||||
Rate.Rest.InGame = 1.0
|
||||
Rate.Rest.Offline.InTavernOrCity = 1.0
|
||||
|
||||
# Blizzlike drop rates (1x)
|
||||
Rate.Drop.Money = 1.0
|
||||
Rate.Drop.Items = 1.0
|
||||
|
||||
# Standard player settings
|
||||
MaxPlayerLevel = 80
|
||||
GM.InGMList.Level = 3
|
||||
|
||||
# Faction restrictions (authentic)
|
||||
AllowTwoSide.Interaction.Chat = 0
|
||||
AllowTwoSide.Interaction.Channel = 0
|
||||
AllowTwoSide.Interaction.Group = 0
|
||||
AllowTwoSide.Interaction.Guild = 0
|
||||
AllowTwoSide.Interaction.Auction = 0
|
||||
AllowTwoSide.Interaction.Mail = 0
|
||||
|
||||
# Standard death penalties
|
||||
Death.CorpseDecayType = 0
|
||||
Death.Bones.BattlegroundOrArena = 1
|
||||
Corpse.Decay.NORMAL = 300
|
||||
Corpse.Decay.RARE = 900
|
||||
Corpse.Decay.ELITE = 1800
|
||||
Corpse.Decay.RAREELITE = 3600
|
||||
Corpse.Decay.WORLDBOSS = 7200
|
||||
63
config/presets/casual-pve.conf
Normal file
63
config/presets/casual-pve.conf
Normal file
@@ -0,0 +1,63 @@
|
||||
# CONFIG_NAME: Casual PvE Server
|
||||
# CONFIG_DESCRIPTION: Relaxed PvE experience with 2x rates and social features
|
||||
# Casual PvE Server - Relaxed PvE Experience with Quality of Life
|
||||
|
||||
[worldserver.conf]
|
||||
# Moderate XP rates for casual play
|
||||
Rate.XP.Kill = 2.0
|
||||
Rate.XP.Quest = 2.0
|
||||
Rate.XP.Explore = 2.0
|
||||
Rate.Rest.InGame = 2.5
|
||||
Rate.Rest.Offline.InTavernOrCity = 2.5
|
||||
|
||||
# Generous drops for casual enjoyment
|
||||
Rate.Drop.Money = 2.0
|
||||
Rate.Drop.Items = 1.3
|
||||
|
||||
# Standard level cap
|
||||
MaxPlayerLevel = 80
|
||||
GM.InGMList.Level = 3
|
||||
|
||||
# Full cross-faction interaction for social play
|
||||
AllowTwoSide.Interaction.Chat = 1
|
||||
AllowTwoSide.Interaction.Channel = 1
|
||||
AllowTwoSide.Interaction.Group = 1
|
||||
AllowTwoSide.Interaction.Guild = 1
|
||||
AllowTwoSide.Interaction.Auction = 1
|
||||
AllowTwoSide.Interaction.Mail = 1
|
||||
|
||||
# Forgiving death mechanics
|
||||
Death.CorpseDecayType = 2
|
||||
Death.Bones.BattlegroundOrArena = 1
|
||||
Corpse.Decay.NORMAL = 600
|
||||
Corpse.Decay.RARE = 1200
|
||||
Corpse.Decay.ELITE = 2400
|
||||
Corpse.Decay.RAREELITE = 4800
|
||||
Corpse.Decay.WORLDBOSS = 9600
|
||||
|
||||
[playerbots.conf]
|
||||
# High bot population for social atmosphere
|
||||
AiPlayerbot.RandomBotMinLevel = 5
|
||||
AiPlayerbot.RandomBotMaxLevel = 80
|
||||
AiPlayerbot.MinRandomBots = 200
|
||||
AiPlayerbot.MaxRandomBots = 500
|
||||
AiPlayerbot.RandomBotJoinLfg = 1
|
||||
AiPlayerbot.RandomBotJoinBG = 1
|
||||
AiPlayerbot.RandomBotRpg = 1
|
||||
|
||||
[mod_transmog.conf]
|
||||
# Affordable transmogrification
|
||||
Transmogrification.Enable = 1
|
||||
Transmogrification.Cost = 50000
|
||||
Transmogrification.AllowMixedArmorTypes = 1
|
||||
|
||||
[mod_autobalance.conf]
|
||||
# Enable autobalance for solo dungeon content
|
||||
AutoBalance.enable = 1
|
||||
AutoBalance.MinPlayerReward = 1
|
||||
AutoBalance.InflectionPoint = 3
|
||||
|
||||
[mod_solo_lfg.conf]
|
||||
# Enable solo LFG for convenience
|
||||
SoloLFG.Enable = 1
|
||||
SoloLFG.Announce = 1
|
||||
53
config/presets/fast-leveling.conf
Normal file
53
config/presets/fast-leveling.conf
Normal file
@@ -0,0 +1,53 @@
|
||||
# CONFIG_NAME: Fast Leveling Server
|
||||
# CONFIG_DESCRIPTION: 3x XP rates with quality of life improvements and cross-faction features
|
||||
# Fast Leveling Server - 3x XP with Quality of Life Features
|
||||
|
||||
[worldserver.conf]
|
||||
# Fast leveling rates (3x)
|
||||
Rate.XP.Kill = 3.0
|
||||
Rate.XP.Quest = 3.0
|
||||
Rate.XP.Explore = 3.0
|
||||
Rate.Rest.InGame = 3.0
|
||||
Rate.Rest.Offline.InTavernOrCity = 3.0
|
||||
|
||||
# Generous drop rates
|
||||
Rate.Drop.Money = 2.5
|
||||
Rate.Drop.Items = 1.5
|
||||
|
||||
# Standard level cap
|
||||
MaxPlayerLevel = 80
|
||||
GM.InGMList.Level = 3
|
||||
|
||||
# Quality of life - cross-faction interaction
|
||||
AllowTwoSide.Interaction.Chat = 1
|
||||
AllowTwoSide.Interaction.Channel = 1
|
||||
AllowTwoSide.Interaction.Group = 1
|
||||
AllowTwoSide.Interaction.Guild = 1
|
||||
AllowTwoSide.Interaction.Auction = 1
|
||||
AllowTwoSide.Interaction.Mail = 1
|
||||
|
||||
# Faster corpse recovery
|
||||
Death.CorpseDecayType = 2
|
||||
Death.Bones.BattlegroundOrArena = 1
|
||||
Corpse.Decay.NORMAL = 180
|
||||
Corpse.Decay.RARE = 360
|
||||
Corpse.Decay.ELITE = 720
|
||||
Corpse.Decay.RAREELITE = 1440
|
||||
Corpse.Decay.WORLDBOSS = 2880
|
||||
|
||||
[playerbots.conf]
|
||||
# Moderate bot population for fast leveling
|
||||
AiPlayerbot.RandomBotMinLevel = 10
|
||||
AiPlayerbot.RandomBotMaxLevel = 80
|
||||
AiPlayerbot.MinRandomBots = 100
|
||||
AiPlayerbot.MaxRandomBots = 300
|
||||
|
||||
[mod_transmog.conf]
|
||||
# Cheap transmogrification for appearance customization
|
||||
Transmogrification.Enable = 1
|
||||
Transmogrification.Cost = 10000
|
||||
|
||||
[mod_autobalance.conf]
|
||||
# Enable autobalance for solo dungeon experience
|
||||
AutoBalance.enable = 1
|
||||
AutoBalance.MinPlayerReward = 1
|
||||
49
config/presets/hardcore-pvp.conf
Normal file
49
config/presets/hardcore-pvp.conf
Normal file
@@ -0,0 +1,49 @@
|
||||
# CONFIG_NAME: Hardcore PvP Server
|
||||
# CONFIG_DESCRIPTION: Competitive PvP environment with 1.5x leveling and minimal bots
|
||||
# Hardcore PvP Server - Competitive WotLK PvP Experience
|
||||
|
||||
[worldserver.conf]
|
||||
# Slightly accelerated leveling to reach endgame faster
|
||||
Rate.XP.Kill = 1.5
|
||||
Rate.XP.Quest = 1.5
|
||||
Rate.XP.Explore = 1.0
|
||||
Rate.Rest.InGame = 1.0
|
||||
Rate.Rest.Offline.InTavernOrCity = 1.0
|
||||
|
||||
# Standard drop rates
|
||||
Rate.Drop.Money = 1.0
|
||||
Rate.Drop.Items = 1.0
|
||||
|
||||
# Level cap
|
||||
MaxPlayerLevel = 80
|
||||
GM.InGMList.Level = 3
|
||||
|
||||
# No cross-faction interaction (competitive environment)
|
||||
AllowTwoSide.Interaction.Chat = 0
|
||||
AllowTwoSide.Interaction.Channel = 0
|
||||
AllowTwoSide.Interaction.Group = 0
|
||||
AllowTwoSide.Interaction.Guild = 0
|
||||
AllowTwoSide.Interaction.Auction = 0
|
||||
AllowTwoSide.Interaction.Mail = 0
|
||||
|
||||
# Standard death penalties
|
||||
Death.CorpseDecayType = 0
|
||||
Death.Bones.BattlegroundOrArena = 1
|
||||
Corpse.Decay.NORMAL = 300
|
||||
Corpse.Decay.RARE = 900
|
||||
Corpse.Decay.ELITE = 1800
|
||||
Corpse.Decay.RAREELITE = 3600
|
||||
Corpse.Decay.WORLDBOSS = 7200
|
||||
|
||||
[playerbots.conf]
|
||||
# Minimal bot population to maintain authentic PvP experience
|
||||
AiPlayerbot.RandomBotMinLevel = 70
|
||||
AiPlayerbot.RandomBotMaxLevel = 80
|
||||
AiPlayerbot.MinRandomBots = 20
|
||||
AiPlayerbot.MaxRandomBots = 50
|
||||
AiPlayerbot.RandomBotJoinBG = 1
|
||||
|
||||
[mod_transmog.conf]
|
||||
# Expensive transmogrification (cosmetic luxury)
|
||||
Transmogrification.Enable = 1
|
||||
Transmogrification.Cost = 500000
|
||||
6
config/presets/none.conf
Normal file
6
config/presets/none.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
# CONFIG_NAME: Default (No Preset)
|
||||
# CONFIG_DESCRIPTION: Use default AzerothCore settings without any modifications
|
||||
# Default Configuration - No modifications applied
|
||||
|
||||
# This preset intentionally contains no configuration overrides.
|
||||
# The server will use default AzerothCore settings from .dist files.
|
||||
134
config/server-overrides.conf
Normal file
134
config/server-overrides.conf
Normal file
@@ -0,0 +1,134 @@
|
||||
# AzerothCore Server Configuration Overrides
|
||||
#
|
||||
# This file allows you to easily customize server settings without editing
|
||||
# individual .conf files. Settings defined here will override defaults.
|
||||
#
|
||||
# Format: [filename.conf] followed by key = value pairs
|
||||
# Boolean values: 0 = disabled, 1 = enabled
|
||||
# Strings: Can be quoted or unquoted
|
||||
# Numbers: Integer or decimal values
|
||||
#
|
||||
# After editing this file, run: ./scripts/apply-config.py
|
||||
|
||||
# =====================
|
||||
# Core Server Settings
|
||||
# =====================
|
||||
|
||||
[worldserver.conf]
|
||||
# Experience and progression rates
|
||||
Rate.XP.Kill = 2.0
|
||||
Rate.XP.Quest = 2.0
|
||||
Rate.XP.Explore = 1.5
|
||||
Rate.Rest.InGame = 2.0
|
||||
Rate.Rest.Offline.InTavernOrCity = 2.0
|
||||
|
||||
# Drop rates
|
||||
Rate.Drop.Money = 1.5
|
||||
Rate.Drop.Items = 1.2
|
||||
|
||||
# Player limits and GM settings
|
||||
MaxPlayerLevel = 80
|
||||
GM.InGMList.Level = 3
|
||||
GM.InWhoList.Level = 3
|
||||
|
||||
# Quality of life features
|
||||
AllowTwoSide.Interaction.Chat = 1
|
||||
AllowTwoSide.Interaction.Channel = 1
|
||||
AllowTwoSide.Interaction.Group = 1
|
||||
AllowTwoSide.Interaction.Guild = 1
|
||||
AllowTwoSide.Interaction.Auction = 1
|
||||
AllowTwoSide.Interaction.Mail = 1
|
||||
|
||||
# Death and corpse settings
|
||||
Death.CorpseDecayType = 2
|
||||
Death.Bones.BattlegroundOrArena = 1
|
||||
Corpse.Decay.NORMAL = 300
|
||||
Corpse.Decay.RARE = 900
|
||||
Corpse.Decay.ELITE = 1800
|
||||
Corpse.Decay.RAREELITE = 3600
|
||||
Corpse.Decay.WORLDBOSS = 7200
|
||||
|
||||
[authserver.conf]
|
||||
# Login settings
|
||||
LoginDatabase.WorkerThreads = 2
|
||||
LoginDatabase.SynchThreads = 1
|
||||
|
||||
# Updates
|
||||
Updates.AutoSetup = 1
|
||||
Updates.EnableDatabases = 7
|
||||
|
||||
# =====================
|
||||
# Playerbot Settings (if MODULE_PLAYERBOTS enabled)
|
||||
# =====================
|
||||
|
||||
[playerbots.conf]
|
||||
# Bot population control
|
||||
AiPlayerbot.RandomBotMinLevel = 15
|
||||
AiPlayerbot.RandomBotMaxLevel = 80
|
||||
AiPlayerbot.MinRandomBots = 50
|
||||
AiPlayerbot.MaxRandomBots = 200
|
||||
|
||||
# Bot behavior
|
||||
AiPlayerbot.RandomBotJoinLfg = 1
|
||||
AiPlayerbot.RandomBotJoinBG = 1
|
||||
AiPlayerbot.RandomBotAutoJoinAR = 1
|
||||
AiPlayerbot.RandomBotRpg = 1
|
||||
|
||||
# Bot restrictions
|
||||
AiPlayerbot.DisableRandomLevels = 0
|
||||
AiPlayerbot.RandomBotInGuildFraction = 0.1
|
||||
|
||||
# =====================
|
||||
# Module Configurations
|
||||
# =====================
|
||||
|
||||
[mod_transmog.conf]
|
||||
# Transmogrification settings
|
||||
Transmogrification.Enable = 1
|
||||
Transmogrification.Cost = 100000
|
||||
Transmogrification.MaxSets = 10
|
||||
Transmogrification.AllowMixedArmorTypes = 0
|
||||
Transmogrification.AllowMixedWeaponTypes = 0
|
||||
|
||||
[mod_aoe_loot.conf]
|
||||
# AOE Looting configuration
|
||||
AOELoot.Enable = 1
|
||||
|
||||
[mod_learnspells.conf]
|
||||
# Auto-learn spells configuration
|
||||
LearnSpells.Enable = 1
|
||||
LearnSpells.Gamemasters = 1
|
||||
|
||||
[mod_fireworks.conf]
|
||||
# Fireworks on level up
|
||||
Fireworks.Enable = 1
|
||||
|
||||
[mod_solo_lfg.conf]
|
||||
# Solo LFG settings
|
||||
SoloLFG.Enable = 1
|
||||
SoloLFG.Announce = 1
|
||||
|
||||
[mod_autobalance.conf]
|
||||
# Autobalance for solo play (if enabled)
|
||||
AutoBalance.enable = 1
|
||||
AutoBalance.MinPlayerReward = 1
|
||||
AutoBalance.InflectionPoint = 5
|
||||
AutoBalance.InflectionPointRaid10M = 7.5
|
||||
AutoBalance.InflectionPointRaid25M = 17
|
||||
AutoBalance.InflectionPointRaidHeroic = 5
|
||||
AutoBalance.InflectionPointHeroic = 5
|
||||
|
||||
[mod_individual_progression.conf]
|
||||
# Individual progression settings (if enabled)
|
||||
IndividualProgression.Enable = 1
|
||||
IndividualProgression.VanillaExp = 80000000
|
||||
IndividualProgression.TbcExp = 150000000
|
||||
IndividualProgression.WotlkExp = 220000000
|
||||
|
||||
# =====================
|
||||
# Additional Module Settings
|
||||
# =====================
|
||||
# Add more module configurations as needed.
|
||||
# Module conf files are typically named: mod_<modulename>.conf
|
||||
# Check your storage/config/ directory for available .conf files
|
||||
# to see what settings are available for each module.
|
||||
Reference in New Issue
Block a user