[7603] Drop from mangosd.conf oudated not working option.
[AHbot.git] / src / mangosd / mangosd.conf.dist.in
blob8ad5c451a1a79081c2c2c4ceefa98ee1a239bebe
1 #####################################
2 # MaNGOS Configuration file         #
3 #####################################
4 ConfVersion=2008080101
6 ###################################################################################################################
7 # CONNECTIONS AND DIRECTORIES
9 #    RealmID
10 #        RealmID must match the realmlist inside the realmd database
12 #    DataDir
13 #        Data directory setting.
14 #        Important: DataDir needs to be quoted, as it is a string which may contain space characters.
15 #        Example: "@prefix@/share/mangos"
17 #    LogsDir
18 #        Logs directory setting.
19 #        Important: Logs dir must exists, or all logs need to be disabled
20 #        Default: "" - no log directory prefix, if used log names isn't absolute path
21 #        then logs will be stored in current directory for run program.
24 #    LoginDatabaseInfo
25 #    WorldDatabaseInfo
26 #    CharacterDatabaseInfo
27 #        Database connection settings for the world server.
28 #        Default: 
29 #                ---MYSQL---
30 #                    hostname;port;username;password;database
31 #                    .;somenumber;username;password;database - use named pipes at Windows
32 #                        Named pipes: mySQL required adding "enable-named-pipe" to [mysqld] section my.ini
33 #                    .;/path/to/unix_socket;username;password;database - use Unix sockets at Unix/Linux
34 #                ---PGSQL---
35 #                    hostname;port;username;password;database
36 #                    .;/path/to/unix_socket/DIRECTORY or . for default path;username;password;database - use Unix sockets at Unix/Linux
38 #    MaxPingTime
39 #        Settings for maximum database-ping interval (minutes between pings)
41 #    WorldServerPort
42 #        Default WorldServerPort
44 #    BindIP
45 #        Bind World Server to IP/hostname
47 ###################################################################################################################
49 RealmID = 1
50 DataDir = "."
51 LogsDir = ""
52 LoginDatabaseInfo     = "127.0.0.1;3306;root;mangos;realmd"
53 WorldDatabaseInfo     = "127.0.0.1;3306;root;mangos;mangos"
54 CharacterDatabaseInfo = "127.0.0.1;3306;root;mangos;characters"
55 MaxPingTime = 30
56 WorldServerPort = 8085
57 BindIP = "0.0.0.0"
59 ###################################################################################################################
60 # PERFORMANCE SETINGS
62 #    UseProcessors
63 #        Used processors mask for multi-processors system (Used only at Windows)
64 #        Default: 0 (selected by OS)
65 #                 number (bitmask value of selected processors)
67 #    ProcessPriority
68 #        Process priority setting (Used only at Windows)
69 #        Default: 1 (HIGH)
70 #                 0 (Normal)
72 #    Compression
73 #        Compression level for update packages sent to client (1..9)
74 #        Default: 1 (speed)
75 #                 9 (best compression)
77 #    PlayerLimit
78 #        Maximum number of players in the world. Excluding Mods, GM's and Admins
79 #        Default: 100
80 #                 0 (for infinite players)
81 #                -1 (for Mods, GM's and Admins only)
82 #                -2 (for GM's and Admins only)
83 #                -3 (for Admins only)
85 #    SaveRespawnTimeImmediately
86 #        Save respawn time for creatures at death and for gameobjects at use/open
87 #        Default: 1 (save creature/gameobject respawn time without waiting grid unload)
88 #                 0 (save creature/gameobject respawn time at grid unload)
90 #    MaxOverspeedPings
91 #        Maximum overspeed ping count before player kick (minimum is 2, 0 used for disable check)
92 #        Default: 2
94 #    GridUnload
95 #        Unload grids (if you have lot memory you can disable it to speed up player move to new grids second time)
96 #        Default: 1 (unload grids)
97 #                 0 (do not unload grids)
99 #    SocketSelectTime
100 #        Socket select time (in milliseconds)
101 #        Default: 10000 (10 secs)
103 #    GridCleanUpDelay
104 #        Grid clean up delay (in milliseconds)
105 #        Default: 300000 (5 min)
107 #    MapUpdateInterval
108 #        Map update interval (in milliseconds)
109 #        Default: 100
111 #    ChangeWeatherInterval
112 #        Weather update interval (in milliseconds)
113 #        Default: 600000 (10 min)
115 #    PlayerSaveInterval
116 #        Player save interval (in milliseconds)
117 #        Default: 900000 (15 min)
119 #    vmap.enableLOS
120 #    vmap.enableHeight
121 #        Enable/Disable VMmap support for line of sight and height calculation
122 #        Default: 0 (disable)
123 #                 1 (enable)
125 #    vmap.ignoreMapIds
126 #        Map id that will be ignored by VMaps
127 #        List of ids with delimiter ','
128 #        If more then one id is defined and spaces are included, the string has to be enclosed by "
129 #        Example: "369,0,1,530"
131 #    vmap.ignoreSpellIds
132 #        These spells are ignored for LoS calculation
133 #        List of ids with delimiter ','
135 #    DetectPosCollision
136 #        Check final move position, summon position, etc for visible collision with other objects or
137 #        wall (wall only if vmaps are enabled)
138 #        Default: 1 (enable, required more CPU power usage)
139 #                 0 (disable, less nice position selection but will less CPU power usage)
141 #    TargetPosRecalculateRange
142 #        Max distance from movement target point (+moving unit size) and targeted object (+size)
143 #        after that new target movmeent point calculated. Max: melee attack range (5), min: contact range (0.5)
144 #        More distance let have better performence, less distance let have more sensitive reaction at target move.
145 #        Default: 1.5
147 #    UpdateUptimeInterval
148 #        Update realm uptime period in minutes (for save data in 'uptime' table). Must be > 0
149 #        Default: 10 (minutes)
151 #    MaxCoreStuckTime
152 #        Periodically check if the process got freezed, if this is the case force crash after the specified
153 #        amount of seconds. Must be > 0. Recommended > 10 secs if you use this.
154 #        Default: 0 (Disabled)
156 #    AddonChannel
157 #        Permit/disable the use of the addon channel through the server
158 #        (some client side addons can stop work correctly with disabled addon channel)
159 #        Default: 1 (permit addon channel)
160 #                 0 (do not permit addon channel)
162 ###################################################################################################################
164 UseProcessors = 0
165 ProcessPriority = 1
166 Compression = 1
167 PlayerLimit = 100
168 SaveRespawnTimeImmediately = 1
169 MaxOverspeedPings = 2
170 GridUnload = 1
171 SocketSelectTime = 10000
172 GridCleanUpDelay = 300000
173 MapUpdateInterval = 100
174 ChangeWeatherInterval = 600000
175 PlayerSaveInterval = 900000
176 vmap.enableLOS = 0
177 vmap.enableHeight = 0
178 vmap.ignoreMapIds = "369"
179 vmap.ignoreSpellIds = "7720"
180 DetectPosCollision = 1
181 TargetPosRecalculateRange = 1.5
182 UpdateUptimeInterval = 10
183 MaxCoreStuckTime = 0
184 AddonChannel = 1
186 ###################################################################################################################
187 # SERVER LOGGING
189 #    LogSQL
190 #        Enable logging of GM commands - all SQL code will be written to a log file
191 #        All commands are written to a file: YYYY-MM-DD_logSQL.sql
192 #        If a new day starts (00:00:00) then a new file is created - the old file will not be deleted.
193 #        Default: 1 - Write SQL code to logfile
194 #                 0 - Do not log
196 #    PidFile
197 #        World daemon PID file
198 #        Default: ""             - do not create PID file
199 #                 "./worldd.pid" - create PID file (recommended name)
201 #    LogLevel
202 #        Server console level of logging
203 #        0 = Minimum; 1 = Basic&Error; 2 = Detail; 3 = Full/Debug
204 #        Default: 3
206 #    LogTime
207 #        Include time in server console output [hh:mm:ss]
208 #        Default: 0 (no time)
209 #                 1 (print time)
211 #    LogFile
212 #        Logfile name
213 #        Default: "Server.log"
214 #                 "" - Empty name disable creating log file
216 #    LogTimestamp
217 #        Logfile with timestamp of server start in name
218 #        Default: 0 - no timestamp in name
219 #                 1 - add timestamp in name in form Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext
221 #    LogFileLevel
222 #        Server file level of logging
223 #        0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
224 #        Default: 0
226 #    LogFilter_AchievementUpdates
227 #    LogFilter_CreatureMoves
228 #    LogFilter_TransportMoves
229 #    LogFilter_VisibilityChanges
230 #        Log filters
231 #        Default: 1 - not include with any log level
232 #                 0 - include in log if log level permit
234 #    WorldLogFile
235 #        Packet logging file for the worldserver
236 #        Default: "world.log"
238 #    DBErrorLogFile
239 #        Log file of DB errors detected at server run
240 #        Default: "DBErrors.log"
242 #    CharLogFile
243 #        Character operations logfile name
244 #        Default: "Char.log"
245 #                 "" - Empty name disable creating log file
247 #    CharLogTimestamp
248 #        Logfile with timestamp of server start in name
249 #        Default: 0 - no timestamp in name
250 #                 1 - add timestamp in name in form Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext
252 #    CharLogDump
253 #        Write character dump before deleting in Char.log
254 #        For restoration, cut character data from log starting from
255 #        line == START DUMP == to line == END DUMP == (without its) in file and load it using loadpdump command
256 #        Default: 0 - don't include dumping chars to log
257 #                 1 - include dumping chars to log
259 #    GmLogFile
260 #        GM Log file of gm commands
261 #        Default: "" (Disable)
263 #    GmLogTimestamp
264 #        GM Logfile with timestamp of server start in name
265 #        Default: 0 - no timestamp in name
266 #                 1 - add timestamp in name in form Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext
268 #    GmLogPerAccount
269 #        GM Logfiles with GM account id (Note: logs not created if GmLogFile not set)
270 #        Default: 0 - add gm log data to single log file
271 #                 1 - add gm log data to account specific log files with name
272 #                     in form Logname_#ID_YYYY-MM-DD_HH-MM-SS.Ext
273 #                     or form Logname_#ID.Ext
275 #    RaLogFile
276 #        Log file of RA commands
277 #        Default: "Ra.log"
278 #                 "" - Empty name for disable
280 #    LogColors
281 #        Color for messages (format "normal_color details_color debug_color error_color")
282 #        Colors: 0 - BLACK, 1 - RED, 2 - GREEN,  3 - BROWN, 4 - BLUE, 5 - MAGENTA, 6 -  CYAN, 7 - GREY,
283 #                8 - YELLOW, 9 - LRED, 10 - LGREEN, 11 - LBLUE, 12 - LMAGENTA, 13 - LCYAN, 14 - WHITE
284 #        Default: "" - none colors
285 #        Example: "13 7 11 9"
287 ###################################################################################################################
289 LogSQL = 1
290 PidFile = ""
291 LogLevel = 3
292 LogTime = 0
293 LogFile = "Server.log"
294 LogTimestamp = 0
295 LogFileLevel = 0
296 LogFilter_AchievementUpdates = 1
297 LogFilter_CreatureMoves = 1
298 LogFilter_TransportMoves = 1
299 LogFilter_VisibilityChanges = 1
300 WorldLogFile = ""
301 DBErrorLogFile = "DBErrors.log"
302 CharLogFile = "Char.log"
303 CharLogTimestamp = 0
304 CharLogDump = 0
305 GmLogFile = ""
306 GmLogTimestamp = 0
307 GmLogPerAccount = 0
308 RaLogFile = ""
309 LogColors = ""
311 ###################################################################################################################
312 # SERVER SETTINGS
314 #    GameType
315 #        Server realm style
316 #        0 = NORMAL;1 = PVP; 4 = NORMAL; 6 = RP; 8 = RPPVP
317 #        also custom type: 16 FFA_PVP (free for all pvp mode like arena PvP in all zones except rest
318 #        activated places and sanctuaries)
320 #    RealmZone
321 #        Server realm zone (set allowed alphabet in character names/etc). See also Strict*Names options.
323 #    1 Development    - any language (Default)
324 #    2 United States  - extended-Latin
325 #    3 Oceanic        - extended-Latin
326 #    4 Latin America  - extended-Latin
327 #    5 Tournament     - basic-Latin at create, any at login
328 #    6 Korea          - East-Asian
329 #    7 Tournament     - basic-Latin at create, any at login
330 #    8 English        - extended-Latin
331 #    9 German         - extended-Latin
332 #    10 French        - extended-Latin
333 #    11 Spanish       - extended-Latin
334 #    12 Russian       - Cyrillic
335 #    13 Tournament    - basic-Latin at create, any at login
336 #    14 Taiwan        - East-Asian
337 #    15 Tournament    - basic-Latin at create, any at login
338 #    16 China         - East-Asian
339 #    17 CN1           - basic-Latin at create, any at login
340 #    18 CN2           - basic-Latin at create, any at login
341 #    19 CN3           - basic-Latin at create, any at login
342 #    20 CN4           - basic-Latin at create, any at login
343 #    21 CN5           - basic-Latin at create, any at login
344 #    22 CN6           - basic-Latin at create, any at login
345 #    23 CN7           - basic-Latin at create, any at login
346 #    24 CN8           - basic-Latin at create, any at login
347 #    25 Tournament    - basic-Latin at create, any at login
348 #    26 Test Server   - any language
349 #    27 Tournament    - basic-Latin at create, any at login
350 #    28 QA Server     - any language
351 #    29 CN9           - basic-Latin at create, any at login
353 #    Expansion
354 #        Allow server use content from expansion
355 #        Default: 2 - check expansion 2 maps existence, and if client support expansion 2 and account have
356 #                     expansion 2 setting then allow visit expansion 2 maps, allow create new class character)
357 #                 1 - check expansion 1 maps existence, and if client support expansion 1 and account have
358 #                     expansion 1 setting then allow visit expansion 1 maps, allow create new races character)
359 #                 0 - not check expansion maps existence, not allow wisit its, not allow create new race or new class
360 #                     characters, ignore account expansion setting)
362 #    DBC.Locale
363 #        DBC Language Settings
364 #        0 = English; 1 = Korean; 2 = French; 3 = German; 4 = Chinese; 5 = Taiwanese; 6 = Spanish; 7 = Spanish Mexico
365 #        8 = Russian; 255 = Auto Detect (Default)
367 #    DeclinedNames
368 #    Allow russian clients to set and use declined names
369 #    Default: 0 - do not use declined names, except when the Russian RealmZone is set
370 #         1 - use declined names
372 #    StrictPlayerNames
373 #        Limit player name to language specific symbols set, not allow create characters, and set rename request and disconnect at not allowed symbols name
374 #        Default: 0 disable (but limited server timezone dependent client check)
375 #                 1 basic latin characters  (strict)
376 #                 2 realm zone specific (strict). See RealmZone setting.
377 #                   Note: In any case if you want correctly see character name at client this client must have apporopriate fonts
378 #                   (included in client by default, with active official localization or custom localization fonts in clientdir/Fonts).
379 #                 3 basic latin characters + server timezone specific
381 #    StrictCharterNames
382 #        Limit guild/arena team charter names to language specific symbols set, not allow create charters with allowed symbols in name
383 #        Default: 0 disable
384 #                 1 basic latin characters  (strict)
385 #                 2 realm zone specific (strict). See RealmZone setting.
386 #                   Note: In any case if you want correctly see character name at client this client must have apporopriate fonts
387 #                   (included in client by default, with active official localization or custom localization fonts in clientdir/Fonts).
388 #                 3 basic latin characters + server timezone specific
390 #    StrictPetNames
391 #        Limit pet names to language specific symbols set
392 #        Default: 0 disable
393 #                 1 basic latin characters  (strict)
394 #                 2 realm zone specific (strict). See RealmZone setting.
395 #                   Note: In any case if you want correctly see character name at client this client must have apporopriate fonts
396 #                   (included in client by default, with active official localization or custom localization fonts in clientdir/Fonts).
397 #                 3 basic latin characters + server timezone specific
399 #    CharactersCreatingDisabled
400 #        Disable characters creating for specific team or any (non-player accounts not affected)
401 #        Default: 0 - enabled
402 #                 1 - disabled only for Alliance
403 #                 2 - disabled only for Horde
404 #                 3 - disabled for both teams
406 #    CharactersPerAccount
407 #        Limit numbers of characters per account (at all realms).
408 #        Note: this setting limit character creating at _current_ realm base at characters amount at all realms
409 #        Default: 50
410 #                The number must be >= CharactersPerRealm
412 #    CharactersPerRealm
413 #        Limit numbers of characters for account at realm
414 #        Default: 10 (client limitation)
415 #                The number must be between 1 and 10
417 #    HeroicCharactersPerRealm
418 #        Limit numbers of heroic class characters for account at realm
419 #        Default: 1
420 #                The number must be between 0 (not allowed) and 10
422 #    MinLevelForHeroicCharacterCreating
423 #        Limit creating heroic characters only for account with another character of specific level (ignored for GM accounts)
424 #                 0  - not require any existed chaarcter
425 #                 1  - require at least any character existed
426 #        Default: 55 - default requirement
429 #    SkipCinematics
430 #        Disable in-game script movie at first character's login(allows to prevent buggy intro in case of custom start location coordinates)
431 #        Default: 0 - show intro for each new characrer
432 #                 1 - show intro only for first character of selected race
433 #                 2 - disable intro show in all cases
435 #    MaxPlayerLevel
436 #        Max level that can be reached by player for experience (in range from 1 to 100).
437 #        Change not recommended
438 #        Default: 80
440 #    StartPlayerLevel
441 #        Staring level that have character at creating (in range 1 to MaxPlayerLevel)
442 #        Default: 1
444 #    StartHeroicPlayerLevel
445 #        Staring level that have character of heroic class at creating (in range 1 to MaxPlayerLevel)
446 #        Default: 55
448 #    StartPlayerMoney
449 #        Amount of money that new players will start with.
450 #        If you want to start with silver, use for example 100 (100 copper = 1 silver)
451 #        Default: 0
453 #    MaxHonorPoints
454 #        Max honor points that player can have.
455 #        Default: 75000
457 #    StartHonorPoints
458 #        Amount of honor that new players will start with
459 #        Default: 0
461 #    MaxArenaPoints
462 #        Max arena points that player can have.
463 #        Default: 5000
465 #    StartArenaPoints
466 #        Amount of arena points that new players will start with
467 #        Default: 0
469 #    InstantLogout
470 #        Enable or disable instant logout for security level (0..4) or high (NOT in combat/while dueling/while falling)
471 #        Default: 1 (Mods/GMs/Admins)
473 #    AllFlightPaths
474 #        Players will start with all flight paths (Note: ALL flight paths, not only player's team)
475 #        Default: 0 (true)
476 #                 1 (false)
478 #    AlwaysMaxSkillForLevel
479 #        Players will automatically gain max level dependent (weapon/defense) skill when logging in, leveling up etc.
480 #        Default: 0 (false)
481 #                 1 (true)
483 #    ActivateWeather
484 #        Activate weather system
485 #        Default: 1 (true)
486 #                 0 (false)
488 #    CastUnstuck
489 #        Allow cast or not Unstuck spell at .start or client Help option use
490 #        Default: 1 (true)
491 #                 0 (false)
493 #    Instance.IgnoreLevel
494 #        Ignore level requirement to enter instance
495 #        Default: 0 (false)
496 #                 1 (true)
498 #    Instance.IgnoreRaid
499 #        Ignore raid requirement to enter instance
500 #        Default: 0 (false)
501 #                 1 (true)
503 #    Instance.ResetTimeHour
504 #        The hour of the day (0-23) when the global instance resets occur.
505 #        Default: 4
507 #    Instance.UnloadDelay
508 #        Unload the instance map from memory after some time if no players are inside.
509 #        Default: 1800000 (miliseconds 30 minutes)
510 #                 0 (instance maps are kept in memory until they are reset)
512 #    Quests.LowLevelHideDiff
513 #        Quest level difference to hide for player low level quests:
514 #        if player_level > quest_level + LowLevelQuestsHideDiff then quest "!" mark not show for quest giver
515 #        Default: 4
516 #                -1 (show all available quests marks)
518 #    Quests.HighLevelHideDiff
519 #        Quest level difference to hide for player high level quests:
520 #        if player_level < quest_min_level - HighLevelQuestsHideDiff then quest "!" mark not show for quest giver
521 #        Default: 7
522 #                -1 (show all available quests marks)
524 #    MaxPrimaryTradeSkill
525 #        Max count that player can learn the primary trade skill.
526 #        Default: 2
527 #        Max : 10
529 #    MinPetitionSigns
530 #        Min signatures count to creating guild (0..9).
531 #        Default: 9
533 #    MaxGroupXPDistance
534 #        Max distance to creature for group memeber to get XP at creature death.
535 #        Default: 74
537 #    MailDeliveryDelay
538 #        Mail delivery delay time for item sending
539 #        Default: 3600 sec (1 hour)
541 #    SkillChance.Prospecting
542 #        For prospecting skillup impossible by default, but can be allowed as custom setting
543 #        Default: 0 - no skilups
544 #                 1 - skilups possible
546 #    SkillChance.Milling
547 #        For milling skillup impossible by default, but can be allowed as custom setting
548 #        Default: 0 - no skilups
549 #                 1 - skilups possible
551 #    OffhandCheckAtTalentsReset
552 #        Talent reset can change offhand weapon restrictions for equip slots.
553 #        Default: 0 - recheck offhand slot weapon only at zone update
554 #                 1 - recheck offhand slot weapon at talent reset also
556 #    Event.Announce
557 #        Default: 0 (false)
558 #                 1 (true)
560 #    BeepAtStart
561 #        Beep at mangosd start finished (mostly work only at Unix/Linux systems)
562 #        Default: 1 (true)
563 #                 0 (false)
565 #    Motd
566 #        Message of the Day. Displayed at worldlogin for every user ('@' for a newline).
568 ###################################################################################################################
570 GameType = 1
571 RealmZone = 1
572 Expansion = 2
573 DBC.Locale = 255
574 DeclinedNames = 0
575 StrictPlayerNames = 0
576 StrictCharterNames = 0
577 StrictPetNames = 0
578 CharactersCreatingDisabled = 0
579 CharactersPerAccount = 50
580 CharactersPerRealm = 10
581 HeroicCharactersPerRealm = 1
582 MinLevelForHeroicCharacterCreating = 55
583 SkipCinematics = 0
584 MaxPlayerLevel = 80
585 StartPlayerLevel = 1
586 StartHeroicPlayerLevel = 55
587 StartPlayerMoney = 0
588 MaxHonorPoints = 75000
589 StartHonorPoints = 0
590 MaxArenaPoints = 5000
591 StartArenaPoints = 0
592 InstantLogout = 1
593 AllFlightPaths = 0
594 AlwaysMaxSkillForLevel = 0
595 ActivateWeather = 1
596 CastUnstuck = 1
597 Instance.IgnoreLevel = 0
598 Instance.IgnoreRaid = 0
599 Instance.ResetTimeHour = 4
600 Instance.UnloadDelay = 1800000
601 Quests.LowLevelHideDiff = 4
602 Quests.HighLevelHideDiff = 7
603 MaxPrimaryTradeSkill = 2
604 MinPetitionSigns = 9
605 MaxGroupXPDistance = 74
606 MailDeliveryDelay = 3600
607 SkillChance.Prospecting = 0
608 SkillChance.Milling = 0
609 OffhandCheckAtTalentsReset = 0
610 Event.Announce = 0
611 BeepAtStart = 1
612 Motd = "Welcome to the Massive Network Game Object Server."
614 ###################################################################################################################
615 # PLAYER INTERACTION
617 #    AllowTwoSide.Accounts
618 #        Allow or not accounts to create characters in the 2 teams in any game type.
619 #        Default: 0 (Not allowed)
620 #                 1 (Allowed)
622 #    AllowTwoSide.Interaction.Chat
623 #    AllowTwoSide.Interaction.Channel
624 #    AllowTwoSide.Interaction.Group
625 #    AllowTwoSide.Interaction.Guild
626 #    AllowTwoSide.Interaction.Auction
627 #    AllowTwoSide.Interaction.Mail
628 #        Allow or not common :chat(say,yell);channel(chat)group(join)guild(join);merge all auction houses for players from
629 #        different teams, send mail to different team.
630 #        Default: 0 (Not allowed)
631 #                 1 (Allowed)
633 #    AllowTwoSide.WhoList
634 #        Allow or not show player from both team in who list.
635 #        Default: 0 (Not allowed)
636 #                 1 (Allowed)
638 #    AllowTwoSide.AddFriend
639 #        Allow or not adding friends from other team in friend list.
640 #        Default: 0 (Not allowed)
641 #                 1 (Allowed)
643 #    TalentsInspecting
644 #        Allow other players see character talents in inspect dialog (Characters in Gamemaster mode can
645 #        inspect talents always)
646 #        Default: 1 (allow)
647 #                 0 (not allow)
649 ###################################################################################################################
651 AllowTwoSide.Accounts = 0
652 AllowTwoSide.Interaction.Chat = 0
653 AllowTwoSide.Interaction.Channel = 0
654 AllowTwoSide.Interaction.Group = 0
655 AllowTwoSide.Interaction.Guild = 0
656 AllowTwoSide.Interaction.Auction = 0
657 AllowTwoSide.Interaction.Mail = 0
658 AllowTwoSide.WhoList = 0
659 AllowTwoSide.AddFriend = 0
660 TalentsInspecting = 1
662 ###################################################################################################################
663 # CREATURE SETTINGS
665 #    ThreatRadius
666 #        Radius for creature to evade after being pulled away from combat start point
667 #        If ThreatRadius is less than creature aggro radius then aggro radius will be used
668 #        Default: 100 yards
670 #    Rate.Creature.Aggro
671 #        Aggro radius percent or off.
672 #        Default: 1   - 100%
673 #                 1.5 - 150%
674 #                 0   - off (0%)
676 #    CreatureFamilyAssistanceRadius
677 #        Creature family assistance radius
678 #        Default: 10
679 #                 0   - off
681 #    CreatureFamilyAssistanceDelay
682 #        Reaction time for creature assistance call
683 #        Default: 1500 (1.5s)
685 #    WorldBossLevelDiff
686 #        Difference for boss dynamic level with target
687 #        Default: 3
689 #    Corpse.Decay.NORMAL
690 #    Corpse.Decay.RARE
691 #    Corpse.Decay.ELITE
692 #    Corpse.Decay.RAREELITE
693 #    Corpse.Decay.WORLDBOSS
694 #        Seconds until creature corpse will decay without being looted or skinned.
695 #        Default: 60, 300, 300, 300, 3600
697 #    Rate.Corpse.Decay.Looted
698 #         Controls how long the creature corpse stays after it had been looted, as a multiplier of its Corpse.Decay.* config.
699 #         Default: 0.1
701 #    Rate.Creature.Normal.Damage
702 #    Rate.Creature.Elite.Elite.Damage
703 #    Rate.Creature.Elite.RAREELITE.Damage
704 #    Rate.Creature.Elite.WORLDBOSS.Damage
705 #    Rate.Creature.Elite.RARE.Damage
706 #        Creature Damage Rates.
707 #        Examples: 2 - creatures will damage 2x, 1.7 - 1.7x.
709 #    Rate.Creature.Normal.SpellDamage
710 #    Rate.Creature.Elite.Elite.SpellDamage
711 #    Rate.Creature.Elite.RAREELITE.SpellDamage
712 #    Rate.Creature.Elite.WORLDBOSS.SpellDamag
713 #    Rate.Creature.Elite.RARE.SpellDamage
714 #        Creature Spell Damage Rates.
715 #        Examples: 2 - creatures will damage with spells 2x, 1.7 - 1.7x.
717 #    Rate.Creature.Normal.HP
718 #    Rate.Creature.Elite.Elite.HP
719 #    Rate.Creature.Elite.RAREELITE.HP
720 #    Rate.Creature.Elite.WORLDBOSS.HP
721 #    Rate.Creature.Elite.RARE.HP
722 #        Creature Health Ammount Modifier.
723 #        Examples: 2 - creatures have 2x health, 1.7 - 1.7x.
725 #    ListenRange.Say
726 #        Distance from player to listen text that creature (or other world object) say
727 #        Default: 25
729 #    ListenRange.TextEmote
730 #        Distance from player to listen textemote that creature (or other world object) say
731 #        Default: 25
733 #    ListenRange.Yell
734 #        Distance from player to listen text that creature (or other world object) yell
735 #        Default: 300
737 ###################################################################################################################
739 ThreatRadius = 100
740 Rate.Creature.Aggro = 1
741 CreatureFamilyAssistanceRadius = 10
742 CreatureFamilyAssistanceDelay = 1500
743 WorldBossLevelDiff = 3
744 Corpse.Decay.NORMAL = 60
745 Corpse.Decay.RARE = 300
746 Corpse.Decay.ELITE = 300
747 Corpse.Decay.RAREELITE = 300
748 Corpse.Decay.WORLDBOSS = 3600
749 Rate.Corpse.Decay.Looted = 0.1
750 Rate.Creature.Normal.Damage = 1
751 Rate.Creature.Elite.Elite.Damage = 1
752 Rate.Creature.Elite.RAREELITE.Damage = 1
753 Rate.Creature.Elite.WORLDBOSS.Damage = 1
754 Rate.Creature.Elite.RARE.Damage = 1
755 Rate.Creature.Normal.SpellDamage = 1
756 Rate.Creature.Elite.Elite.SpellDamage = 1
757 Rate.Creature.Elite.RAREELITE.SpellDamage = 1
758 Rate.Creature.Elite.WORLDBOSS.SpellDamage = 1
759 Rate.Creature.Elite.RARE.SpellDamage = 1
760 Rate.Creature.Normal.HP = 1
761 Rate.Creature.Elite.Elite.HP = 1
762 Rate.Creature.Elite.RAREELITE.HP = 1
763 Rate.Creature.Elite.WORLDBOSS.HP = 1
764 Rate.Creature.Elite.RARE.HP = 1
765 ListenRange.Say = 40
766 ListenRange.TextEmote = 40
767 ListenRange.Yell = 300
769 ###################################################################################################################
770 # CHAT SETTINGS
772 #    ChatFakeMessagePreventing
773 #        Chat protection from creating fake messages using a lot spaces (other invisible symbols),
774 #        not applied to addon language messages, but can prevent working old addons
775 #        that use normal languages for sending data to another clients.
776 #        Default: 0 (disible fake messages preventing)
777 #                 1 (enabled fake messages preventing)
779 #    ChatFlood.MessageCount
780 #        Chat anti-flood protection, haste message count to activate protection
781 #        Default: 10
782 #                 0 (disible anti-flood protection)
784 #    ChatFlood.MessageDelay
785 #        Chat anti-flood protection, minimum message delay to count message
786 #        Default: 1 (in secs)
788 #    ChatFlood.MuteTime
789 #        Chat anti-flood protection, mute time at activation flood protection (not saved)
790 #        Default: 10 (in secs)
792 #    Channel.RestrictedLfg
793 #        Restrict use LookupForGroup channel only registered in LFG tool players
794 #        Default: 1 (allow join to channel only if active in LFG)
795 #                 0 (allow join to channel in any time)
797 #    Channel.SilentlyGMJoin
798 #        Silently join GM characters (security level > 1) to channels
799 #        Default: 0 (join announcement in normal way)
800 #                 1 (GM join without announcement)
802 ###################################################################################################################
804 ChatFakeMessagePreventing = 0
805 ChatFlood.MessageCount = 10
806 ChatFlood.MessageDelay = 1
807 ChatFlood.MuteTime = 10
808 Channel.RestrictedLfg = 1
809 Channel.SilentlyGMJoin = 0
811 ###################################################################################################################
812 # GAME MASTER SETTINGS
814 #    GM.LoginState
815 #        GM mode at login
816 #        Default: 2 (last save state)
817 #                 0 (disable)
818 #                 1 (enable)
820 #    GM.Visible
821 #        GM visibility at login
822 #        Default: 2 (last save state)
823 #                 0 (invisible)
824 #                 1 (visible)
826 #    GM.AcceptTickets
827 #        Is GM accepting tickets from player by default or not.
828 #        Default: 2 (last save state)
829 #                 0 (disable)
830 #                 1 (enable)
832 #    GM.Chat
833 #        GM chat mode at login
834 #        Default: 2 (last save state)
835 #                 0 (disable)
836 #                 1 (enable)
838 #    GM.WhisperingTo
839 #        Is GM accepting whispers from player by default or not.
840 #        Default: 2 (last save state)
841 #                 0 (disable)
842 #                 1 (enable)
844 #    GM.InGMList
845 #        Is GM showed in GM list (if visible) in non-GM state (.gm off)
846 #        Default: 0 (false)
847 #                 1 (true)
849 #    GM.InWhoList
850 #        Is GM showed in who list (if visible).
851 #        Default: 0 (false)
852 #                 1 (true)
854 #    GM.LogTrade
855 #        Include GM trade and trade slot enchanting operations in GM log if it enable
856 #        Default: 1 (include)
857 #                 0 (not include)
859 #    GM.StartLevel
860 #        GM starting level (1-100)
861 #        Default: 1
863 #    GM.LowerSecurity
864 #        Disallow a lower security member to interact with a higher one using commands
865 #        Default: 0 (disable)
866 #                 1 (enable)
868 #    GM.AllowAchievementGain
869 #        If enabled it allows gaining achievements for GM characters
870 #        Default: 1 (enable)
871 #                 0 (disable)
873 ###################################################################################################################
875 GM.LoginState            = 2
876 GM.Visible               = 2
877 GM.AcceptTickets         = 2
878 GM.Chat                  = 2
879 GM.WhisperingTo          = 2
880 GM.InGMList              = 0
881 GM.InWhoList             = 0
882 GM.LogTrade              = 1
883 GM.StartLevel            = 1
884 GM.LowerSecurity         = 0
885 GM.AllowAchievementGain  = 1
887 ###################################################################################################################
888 # VISIBILITY AND RADIUSES
890 #    Visibility.GroupMode
891 #        Group visibility modes
892 #        Default: 0 (standard setting: only members from same group can 100% auto detect invisible player)
893 #                 1 (raid members 100% auto detect invisible player from same raid)
894 #                 2 (players from same team can 100% auto detect invisible player)
896 #    Visibility.Distance.Creature
897 #    Visibility.Distance.Player
898 #        Visibility distance for different in game object
899 #        Max limited by active player zone: ~ 166
900 #        Min limit dependent from objects
901 #        Default: 66 (cell size)
902 #        Min limit is max aggro radius (45) * Rate.Creature.Aggro
904 #    Visibility.Distance.Object
905 #        Visible distance for gameobject, dynobject, bodies, corpses, bones
906 #        Min limit is iteraction distance (5)
908 #    Visibility.Distance.InFlight
909 #        Visible distance for player in flight
910 #        Min limit is 0 (not show any objects)
912 #    Visibility.Distance.Grey.Unit
913 #        Visibility grey distance for creatures/players (fast changing objects)
914 #        addition to appropriate object type Visibility.Distance.* use in case visibility removing to
915 #        object (except corpse around distences) If ï¿½ is distance and G is grey distance then object
916 #        make visible if distance to it <= D but make non visible if distance > D+G
917 #        Default: 1 (yard)
919 #    Visibility.Distance.Grey.Object
920 #        Visibility grey distance for dynobjects/gameobjects/corpses/creature bodies
921 #        Default: 10 (yards)
924 ###################################################################################################################
926 Visibility.GroupMode = 0
927 Visibility.Distance.Creature      = 66
928 Visibility.Distance.Player        = 66
929 Visibility.Distance.Object        = 66
930 Visibility.Distance.InFlight      = 66
931 Visibility.Distance.Grey.Unit   = 1
932 Visibility.Distance.Grey.Object = 10
934 ###################################################################################################################
935 # SERVER RATES
937 #    Rate.Health
938 #    Rate.Mana
939 #    Rate.Rage.Income
940 #    Rate.Rage.Loss
941 #    Rate.RunicPower.Income
942 #    Rate.RunicPower.Loss
943 #    Rate.Focus
944 #        Health and power regeneration and rage income from damage.
945 #        Default: 1
947 #    Rate.Skill.Discovery
948 #         Skill Discovery Rates
949 #         Default: 1
951 #    Rate.Drop.Item.Poor
952 #    Rate.Drop.Item.Normal
953 #    Rate.Drop.Item.Uncommon
954 #    Rate.Drop.Item.Rare
955 #    Rate.Drop.Item.Epic
956 #    Rate.Drop.Item.Legendary
957 #    Rate.Drop.Item.Artifact
958 #    Rate.Drop.Item.Referenced
959 #    Rate.Drop.Money
960 #         Drop rates (items by quality and money)
961 #         Default: 1
963 #    Rate.Drop.Money
964 #         Drop rates
965 #         Default: 1
967 #    Rate.XP.Kill
968 #    Rate.XP.Quest
969 #    Rate.XP.Explore
970 #        XP rates
971 #        Default: 1
973 #    Rate.Rest.InGame
974 #    Rate.Rest.Offline.InTavernOrCity
975 #    Rate.Rest.Offline.InWilderness
976 #        Resting points grow rates (1 - normal, 2 - double rate, 0.5 - half rate, etc) from standard values
978 #    Rate.Damage.Fall
979 #        Damage after fall rate. (1 - standard, 2 - double damage, 0.5 - half damage, etc)
981 #    Rate.Auction.Time
982 #    Rate.Auction.Deposit
983 #    Rate.Auction.Cut
984 #        Auction rates (auction time, deposit get at auction start, auction cut from price at auction end)
986 #    Rate.Honor
987 #        Honor gain rate
989 #    Rate.Mining.Amount
990 #    Rate.Mining.Next
991 #        Mining Rates (Mining.Amount changes minimum/maximum usetimes of a deposit,
992 #        Mining.Next changes chance to have next use of a deposit)
994 #    Rate.Talent
995 #        Talent Point rates
996 #        Default: 1
998 #    Rate.Reputation.Gain
999 #         Reputation Gain rate
1000 #         Default: 1
1002 #    Rate.Reputation.LowLevel.Kill
1003 #         Reputation Gain form low level kill (grey creture)
1004 #         Default: 1
1006 #    Rate.Reputation.LowLevel.Quest
1007 #         Reputation Gain rate
1008 #         Default: 1
1010 #    Rate.InstanceResetTime
1011 #        Multiplier for the number of days in between global raid/heroic instance resets.
1012 #        Default: 1
1014 #    SkillGain.Crafting
1015 #    SkillGain.Defense
1016 #    SkillGain.Gathering
1017 #    SkillGain.Weapon
1018 #         crafting/defense/gathering/weapon skills gain at skill grow (1,2,...)
1019 #         Default: 1
1021 #    SkillChance.Orange
1022 #    SkillChance.Yellow
1023 #    SkillChance.Green
1024 #    SkillChance.Grey
1025 #        Skill chance values (0..100)
1026 #        Default: 100-75-25-0
1028 #    SkillChance.MiningSteps
1029 #    SkillChance.SkinningSteps
1030 #         For skinning and Mining chance decrease with skill level.
1031 #         Default: 0  - no decrease
1032 #                  75 - in 2 times each 75 skill points
1034 #    DurabilityLossChance.Damage
1035 #         Chance lost one from equiped items durability point at damage apply or receive.
1036 #         Default: 0.5 (100/0.5 = 200) Each 200 damage apply one from 19 possible equipped items
1038 #    DurabilityLossChance.Absorb
1039 #         Chance lost one from armor items durability point at damage absorb.
1040 #         Default: 0.5 (100/0.5 = 200) Each 200 absorbs apply one from 15 possible armor equipped items
1042 #    DurabilityLossChance.Parry
1043 #         Chance lost weapon durability point at parry.
1044 #         Default: 0.05 (100/0.05 = 2000) Each 2000 parry attacks main weapon lost point
1046 #    DurabilityLossChance.Block
1047 #         Chance lost sheild durability point at damage block.
1048 #         Default: 0.05 (100/0.05 = 2000) Each 2000 partly or full blocked attacks shield lost point
1050 #    Death.SicknessLevel
1051 #         Starting Character start gain sickness at spirit resurrection (1 min)
1052 #         Default: 11
1053 #                  -10 - character will have full time (10min) sickness at 1 level
1054 #                  maxplayerlevel+1 - chaarcter will not have sickess at any level
1056 #    Death.CorpseReclaimDelay.PvP
1057 #    Death.CorpseReclaimDelay.PvE
1058 #         Enabled/disabled increase corpse reclaim delay at often PvP/PvE deaths
1059 #         Default: 1 (enabled)
1060 #                  0 (disabled)
1062 #    Death.Bones.World
1063 #    Death.Bones.BattlegroundOrArena
1064 #         Enable/disable creating bones instead corpse at resurrection (in normal zones/instacnes, or battleground/arenas)
1065 #         Default: 1 (enabled)
1066 #                  0 (disabled)
1068 ###################################################################################################################
1070 Rate.Health = 1
1071 Rate.Mana = 1
1072 Rate.Rage.Income = 1
1073 Rate.Rage.Loss = 1
1074 Rate.RunicPower.Income = 1
1075 Rate.RunicPower.Loss = 1
1076 Rate.Focus = 1
1077 Rate.Skill.Discovery = 1
1078 Rate.Drop.Item.Poor = 1
1079 Rate.Drop.Item.Normal = 1
1080 Rate.Drop.Item.Uncommon = 1
1081 Rate.Drop.Item.Rare = 1
1082 Rate.Drop.Item.Epic = 1
1083 Rate.Drop.Item.Legendary = 1
1084 Rate.Drop.Item.Artifact = 1
1085 Rate.Drop.Item.Referenced = 1
1086 Rate.Drop.Money = 1
1087 Rate.XP.Kill    = 1
1088 Rate.XP.Quest   = 1
1089 Rate.XP.Explore = 1
1090 Rate.Rest.InGame = 1
1091 Rate.Rest.Offline.InTavernOrCity = 1
1092 Rate.Rest.Offline.InWilderness = 1
1093 Rate.Damage.Fall = 1
1094 Rate.Auction.Time = 1
1095 Rate.Auction.Deposit = 1
1096 Rate.Auction.Cut = 1
1097 Rate.Honor = 1
1098 Rate.Mining.Amount = 1
1099 Rate.Mining.Next   = 1
1100 Rate.Talent = 1
1101 Rate.Reputation.Gain = 1
1102 Rate.Reputation.LowLevel.Kill    = 1
1103 Rate.Reputation.LowLevel.Quest   = 1
1105 Rate.InstanceResetTime = 1
1106 SkillGain.Crafting = 1
1107 SkillGain.Defense = 1
1108 SkillGain.Gathering = 1
1109 SkillGain.Weapon = 1
1110 SkillChance.Orange = 100
1111 SkillChance.Yellow = 75
1112 SkillChance.Green  = 25
1113 SkillChance.Grey   = 0
1114 SkillChance.MiningSteps   = 0
1115 SkillChance.SkinningSteps = 0
1116 DurabilityLossChance.Damage = 0.5
1117 DurabilityLossChance.Absorb = 0.5
1118 DurabilityLossChance.Parry  = 0.05
1119 DurabilityLossChance.Block  = 0.05
1120 Death.SicknessLevel = 11
1121 Death.CorpseReclaimDelay.PvP = 1
1122 Death.CorpseReclaimDelay.PvE = 1
1123 Death.Bones.World = 1
1124 Death.Bones.BattlegroundOrArena = 1
1127 ###################################################################################################################
1128 # BATTLEGROUND CONFIG
1130 #    Battleground.CastDeserter
1131 #        Cast Deserter spell at player who leave battleground in progress
1132 #        Default: 1 (enable)
1133 #                 0 (disable)
1135 #    Battleground.QueueAnnouncer.Enable
1136 #        Enable queue announcer posting to chat
1137 #        Default: 0 (disable)
1138 #                 1 (enable)
1140 #    Battleground.QueueAnnouncer.PlayerOnly
1141 #        Enable queue announcer posting to chat
1142 #        Default: 0 (disable)
1143 #                 1 (enable)
1145 #    Battleground.InvitationType
1146 #        Set Battleground invitation type
1147 #        Default: 0 (normal - invite as much players to bg as possible, don't bother with ballance)
1148 #                 1 (Experimental - don't allow to invite much more players of one faction)
1150 #    Battleground.PrematureFinishTimer
1151 #        The time to end the bg if there are less than MinPlayersPerTeam on one side in milliseconds
1152 #        Default: 300000 (5 minutes)
1153 #                 0 - disable (not recommended)
1155 #    BattleGround.PremadeGroupWaitForMatch
1156 #        The time in which premade group of 1 faction waits in BG Queue for premade group of other faction
1157 #        Default: 1800000 (30 minutes)
1158 #                 0 - disable (not recommended)
1160 ###################################################################################################################
1162 Battleground.CastDeserter = 1
1163 Battleground.QueueAnnouncer.Enable = 0
1164 Battleground.QueueAnnouncer.PlayerOnly = 0
1165 Battleground.InvitationType = 0
1166 BattleGround.PrematureFinishTimer = 300000
1167 BattleGround.PremadeGroupWaitForMatch = 1800000
1170 ###################################################################################################################
1171 # ARENA CONFIG
1173 #    Arena.MaxRatingDifference
1174 #        The maximum rating difference between two groups in rated matches
1175 #        Default: 150 (enable, recommended)
1176 #                 0 (disable, rating difference is discarded)
1178 #    Arena.RatingDiscardTimer
1179 #        After the specified milliseconds has passed,
1180 #        rating information will be discarded when selecting teams for matches
1181 #        also initiates an update by this timer
1182 #        Default: 600000 (10 minutes, recommended)
1183 #                 0 (disable)
1185 #    Arena.AutoDistributePoints
1186 #        Set if arena points should be distributed automatically, or by GM command
1187 #        Default: 0 (disable) (recommended): use gm command or sql query to distribute the points
1188 #                 1 (enable)  arena points are distributed automatically
1190 #    Arena.AutoDistributeInterval
1191 #        How often should the distribution take place
1192 #        If automatic distribution is enabled in days
1193 #        Default: 7 (weekly)
1195 #    Arena.QueueAnnouncer.Enable
1196 #        Enable bg queue announcer posting to chat
1197 #        Default: 0 (disable)
1198 #                 1 (enable)
1200 #    Arena.ArenaSeason.ID
1201 #        Current area season id show in client
1202 #        Default: 1
1204 #    Arena.ArenaSeason.InProgress
1205 #        Current area season state
1206 #        Default: 1 (active)
1207 #                 0 (finished)
1209 ###################################################################################################################
1211 Arena.MaxRatingDifference = 150
1212 Arena.RatingDiscardTimer = 600000
1213 Arena.AutoDistributePoints = 0
1214 Arena.AutoDistributeInterval = 7
1215 Arena.QueueAnnouncer.Enable = 0
1216 Arena.ArenaSeason.ID = 1
1217 Arena.ArenaSeason.InProgress = 1
1220 ###################################################################################################################
1221 # NETWORK CONFIG
1223 #    Network.Threads
1224 #         Number of threads for network, recommend 1 thread per 1000 connections.
1225 #         Default: 1
1227 #    Network.OutKBuff
1228 #         The size of the output kernel buffer used ( SO_SNDBUF socket option, tcp manual ).
1229 #         Default: -1 (Use system default setting)
1231 #    Network.OutUBuff
1232 #         Userspace buffer for output. This is amount of memory reserved per each connection.
1233 #         Default: 65536
1235 #    Network.TcpNoDelay:
1236 #         TCP Nagle algorithm setting
1237 #         Default: 0 (enable Nagle algorithm, less traffic, more latency)
1238 #                  1 (TCP_NO_DELAY, disable Nagle algorithm, more traffic but less latency)
1240 ###################################################################################################################
1242 Network.Threads = 1
1243 Network.OutKBuff = -1
1244 Network.OutUBuff = 65536
1245 Network.TcpNodelay = 1
1247 ###################################################################################################################
1248 # CONSOLE AND REMOTE ACCESS
1250 #    Console.Enable
1251 #        Enable console
1252 #        Default: 1 - on
1253 #                 0 - off
1255 #    Ra.Enable
1256 #        Enable remote console
1257 #        Default: 0 - off
1258 #                 1 - on
1260 #    Ra.IP
1261 #        Default remote console ip address, use 0.0.0.0 for every address
1263 #    Ra.Port
1264 #        Default remote console port
1266 #    Ra.MinLevel
1267 #        Minimum level that's required to login,3 by default
1269 #    Ra.Secure
1270 #        Kick client on wrong pass
1272 ###################################################################################################################
1274 Console.Enable = 1
1275 Ra.Enable = 0
1276 Ra.IP = 0.0.0.0
1277 Ra.Port = 3443
1278 Ra.MinLevel = 3
1279 Ra.Secure = 1