root/trunk/src/trinitycore/trinitycore.conf.dist @ 39

Revision 39, 47.4 kB (checked in by yumileroy, 17 years ago)

[svn] * Various small changes here and there.
* Implementing MangChat? IRC system.
* Added new config option, MAX_WHO, can be used to set the limit of characters being sent in a /who request from client.

Original author: XTZGZoReX
Date: 2008-10-12 14:03:38-05:00

Line 
1##########################################
2# Trinity Core worldd configuration file #
3##########################################
4ConfVersion=2008080101
5
6###################################################################################################################
7# CONNECTIONS AND DIRECTORIES
8#
9#    RealmID
10#        RealmID must match the realmlist inside the realmd database
11#
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/trinitycore"
16#
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.
22#
23#
24#    LoginDatabaseInfo
25#    WorldDatabaseInfo
26#    CharacterDatabaseInfo
27#        Database connection settings for the world server.
28#        Default: hostname;port;username;password;database
29#                 .;somenumber;username;password;database - use named pipes at Windows
30#                    Named pipes: mySQL required adding "enable-named-pipe" to [mysqld] section my.ini
31#                .;/path/to/unix_socket;username;password;database - use Unix sockets at Unix/Linux
32#                    Unix sockets: experimental, not tested
33#
34#    MaxPingTime
35#        Settings for maximum database-ping interval (minutes between pings)
36#
37#    WorldServerPort
38#        Default WorldServerPort
39#
40#    BindIP
41#        Bind World Server to IP/hostname
42#
43###################################################################################################################
44
45RealmID = 1
46DataDir = "."
47LogsDir = ""
48LoginDatabaseInfo     = "127.0.0.1;3306;trinity;trinity;realmd"
49WorldDatabaseInfo     = "127.0.0.1;3306;trinity;trinity;world"
50CharacterDatabaseInfo = "127.0.0.1;3306;trinity;trinity;characters"
51MaxPingTime = 30
52WorldServerPort = 8085
53BindIP = "0.0.0.0"
54
55###################################################################################################################
56# PERFORMANCE SETINGS
57#
58#    UseProcessors
59#        Used processors mask for multi-processors system (Used only at Windows)
60#        Default: 0 (selected by OS)
61#                 number (bitmask value of selected processors)
62#
63#    ProcessPriority
64#        Process proirity setting (Used only at Windows)
65#        Default: 1 (HIGH)
66#                 0 (Normal)
67#
68#    Compression
69#        Compression level for update packages sent to client (1..9)
70#        Default: 1 (speed)
71#                 9 (best compression)
72#
73#    TcpNoDelay
74#        TCP Nagle algorithm setting
75#        Default: 0 (enable Nagle algorithm, less traffic, more latency)
76#                 1 (TCP_NO_DELAY, disable Nagle algorithm, more traffic but less latency)
77#
78#    PlayerLimit
79#        Maximum number of players in the world. Excluding Mods, GM's and Admins
80#        Default: 100
81#                 0 (for infinite players)
82#                -1 (for Mods, GM's and Admins only)
83#                -2 (for GM's and Admins only)
84#                -3 (for Admins only)
85#
86#    SaveRespawnTimeImmediately
87#        Save respawn time for creatures at death and for gameobjects at use/open
88#        Default: 1 (save creature/gameobject respawn time without waiting grid unload)
89#                 0 (save creature/gameobject respawn time at grid unload)
90#
91#    MaxOverspeedPings
92#        Maximum overspeed ping count before player kick (minimum is 2, 0 used for disable check)
93#        Default: 2
94#
95#    GridUnload
96#        Unload grids (if you have lot memory you can disable it to speed up player move to new grids second time)
97#        Default: 1 (unload grids)
98#                 0 (do not unload grids)
99#
100#    SocketSelectTime
101#        Socket select time (in milliseconds)
102#        Default: 10000
103#
104#    GridCleanUpDelay
105#        Grid clean up delay (in milliseconds)
106#        Default: 300000 (5 min)
107#
108#    MapUpdateInterval
109#        Map update interval (in milliseconds)
110#        Default: 100
111#
112#    ChangeWeatherInterval
113#        Weather update interval (in milliseconds)
114#        Default: 600000 (10 min)
115#
116#    PlayerSaveInterval
117#        Player save interval (in milliseconds)
118#        Default: 900000 (15 min)
119#
120#    vmap.enableLOS
121#    vmap.enableHeight
122#        Enable/Disable VMmap support for line of sight and height calculation
123#        Default: 1 (true)
124#                 0 (false)
125#
126#    vmap.ignoreMapIds
127#        Map id that will be ignored by VMaps
128#        List of ids with delimiter ','
129#        If more then one id is defined and spaces are included, the string has to be enclosed by "
130#        Example: "369,0,1,530"
131#
132#    vmap.ignoreSpellIds
133#        These spells are ignored for LoS calculation
134#        List of ids with delimiter ','
135#
136#
137#    TargetPosRecalculateRange
138#        Max distance from movement target point (+moving unit size) and targeted object (+size)
139#        after that new target movmeent point calculated. Max: melee attack range (5), min: contact range (0.5)
140#        More distance let have better performence, less distance let have more sensitive reaction at target move.
141#        Default: 1.5
142#
143#    UpdateUptimeInterval
144#        Update realm uptime period in minutes (for save data in 'uptime' table). Must be > 0
145#        Default: 10 (minutes)
146#
147#    MaxCoreStuckTime
148#        Periodically check if the process got freezed, if this is the case force crash after the specified
149#        amount of seconds. Must be > 0. Recommended > 10 secs if you use this.
150#        Default: 0 (Disabled)
151#
152#    AddonChannel
153#        Permit/disable the use of the addon channel through the server
154#        (some client side addons can stop work correctly with disabled addon channel)
155#        Default: 1 (permit addon channel)
156#                 0 (do not permit addon channel)
157#
158###################################################################################################################
159
160UseProcessors = 0
161ProcessPriority = 1
162Compression = 1
163TcpNoDelay = 0
164PlayerLimit = 100
165SaveRespawnTimeImmediately = 1
166MaxOverspeedPings = 2
167GridUnload = 1
168SocketSelectTime = 10000
169GridCleanUpDelay = 300000
170MapUpdateInterval = 100
171ChangeWeatherInterval = 600000
172PlayerSaveInterval = 900000
173vmap.enableLOS = 0
174vmap.enableHeight = 0
175vmap.ignoreMapIds = "369"
176vmap.ignoreSpellIds = "7720"
177TargetPosRecalculateRange = 1.5
178UpdateUptimeInterval = 10
179MaxCoreStuckTime = 0
180AddonChannel = 1
181
182###################################################################################################################
183# SERVER LOGGING
184#
185#    LogSQL
186#        Enable logging of GM commands - all SQL code will be written to a log file
187#        All commands are written to a file: YYYY-MM-DD_logSQL.sql
188#        If a new day starts (00:00:00) then a new file is created - the old file will not be deleted.
189#        Default: 1 - Write SQL code to logfile
190#                 0 - Do not log
191#
192#    PidFile
193#        World daemon PID file
194#        Default: ""             - do not create PID file
195#                 "./worldd.pid" - create PID file (recommended name)
196#
197#    LogLevel
198#        Server console level of logging
199#        0 = Minimum; 1 = Basic&Error; 2 = Detail; 3 = Full/Debug
200#        Default: 3
201#
202#    LogTime
203#        Include time in server console output [hh:mm:ss]
204#        Default: 0 (no time)
205#                 1 (print time)
206#
207#    LogFile
208#        Logfile name
209#        Default: "server.log"
210#                 "" - Empty name disable creating log file
211#
212#    LogTimestamp
213#        Logfile with timestamp of server start in name
214#        Default: 0 - no timestamp in name
215#                 1 - add timestamp in name in form Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext
216#
217#    LogFileLevel
218#        Server file level of logging
219#        0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
220#        Default: 0
221#
222#    LogFilter_TransportMoves
223#    LogFilter_CreatureMoves
224#    LogFilter_VisibilityChanges
225#        Log filters
226#        Default: 1 - not include with any log level
227#                 0 - include in log if log level permit
228#
229#    WorldLogFile
230#        Packet logging file for the worldserver
231#        Default: "world.log"
232#
233#    DBErrorLogFile
234#        Log file of DB errors detected at server run
235#        Default: "db_errors.log"
236#
237#    CharLogFile
238#        Character operations logfile name
239#        Default: "characters.log"
240#                 "" - Empty name disable creating log file
241#
242#    CharLogTimestamp
243#        Logfile with timestamp of server start in name
244#        Default: 0 - no timestamp in name
245#                 1 - add timestamp in name in form Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext
246#
247#    CharLogDump
248#        Write character dump before deleting in Char.log
249#        For restoration, cut character data from log starting from
250#        line == START DUMP == to line == END DUMP == (without its) in file and load it using loadpdump command
251#        Default: 0 - don't include dumping chars to log
252#                 1 - include dumping chars to log
253#
254#    GmLogFile
255#        Log file of gm commands
256#        Default: "gm_commands.log"
257#                 "" - Empty name for disable
258#
259#    GmLogTimestamp
260#        Logfile with timestamp of server start in name
261#        Default: 0 - no timestamp in name
262#                 1 - add timestamp in name in form Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext
263#
264#    RaLogFile
265#        Log file of RA commands
266#        Default: "ra_commands.log"
267#                 "" - Empty name for disable
268#
269#    LogColors
270#        Color for messages (format "normal_color details_color debug_color error_color)
271#        Colors: 0 - BLACK, 1 - RED, 2 - GREEN,  3 - BROWN, 4 - BLUE, 5 - MAGENTA, 6 -  CYAN, 7 - GREY,
272#                8 - YELLOW, 9 - LRED, 10 - LGREEN, 11 - LBLUE, 12 - LMAGENTA, 13 - LCYAN, 14 - WHITE
273#        Default: "" - none colors
274#        Example: "13 7 11 9"
275#
276###################################################################################################################
277
278LogSQL = 1
279PidFile = ""
280LogLevel = 3
281LogTime = 0
282LogFile = "server.log"
283LogTimestamp = 0
284LogFileLevel = 0
285LogFilter_TransportMoves = 1
286LogFilter_CreatureMoves = 1
287LogFilter_VisibilityChanges = 1
288WorldLogFile = "world.log"
289DBErrorLogFile = "db_errors.log"
290CharLogFile = "characters.log"
291CharLogTimestamp = 0
292CharLogDump = 0
293GmLogFile = "gm_commands.log"
294GmLogTimestamp = 0
295RaLogFile = "ra_commands.log"
296LogColors = ""
297
298###################################################################################################################
299# SERVER SETTINGS
300#
301#    GameType
302#        Server realm style
303#        0 = NORMAL;1 = PVP; 4 = NORMAL; 6 = RP; 8 = RPPVP
304#        also custom type: 16 FFA_PVP (free for all pvp mode like arena PvP in all zones except rest
305#        activated places and sanctuaries)
306#
307#    RealmZone
308#        Server realm zone (set allowed alphabet in character names/etc). See also Strict*Names options.
309#
310#        1 Development    - any language (Default)
311#        2 United States  - extended-Latin
312#        3 Oceanic        - extended-Latin
313#        4 Latin America  - extended-Latin
314#        5 Tournament     - basic-Latin at create, any at login
315#        6 Korea          - East-Asian
316#        7 Tournament     - basic-Latin at create, any at login
317#        8 English        - extended-Latin
318#        9 German         - extended-Latin
319#        10 French        - extended-Latin
320#        11 Spanish       - extended-Latin
321#        12 Russian       - Cyrillic
322#        13 Tournament    - basic-Latin at create, any at login
323#        14 Taiwan        - East-Asian
324#        15 Tournament    - basic-Latin at create, any at login
325#        16 China         - East-Asian
326#        17 CN1           - basic-Latin at create, any at login
327#        18 CN2           - basic-Latin at create, any at login
328#        19 CN3           - basic-Latin at create, any at login
329#        20 CN4           - basic-Latin at create, any at login
330#        21 CN5           - basic-Latin at create, any at login
331#        22 CN6           - basic-Latin at create, any at login
332#        23 CN7           - basic-Latin at create, any at login
333#        24 CN8           - basic-Latin at create, any at login
334#        25 Tournament    - basic-Latin at create, any at login
335#        26 Test Server   - any language
336#        27 Tournament    - basic-Latin at create, any at login
337#        28 QA Server     - any language
338#        29 CN9           - basic-Latin at create, any at login
339#
340#    Expansion
341#        Allow server use expansion content
342#        Default: 1 - check expansion maps existence, and if client support expansion and account have
343#                     expansion setting then allow visit expansion maps, allow create new races character)
344#                 0 - not check expansion maps existence, not allow wisit its, not allow create new race
345#                     characters, ignore account expansion setting)
346#
347#    DBC.Locale
348#        DBC Language Settings
349#        0 = English; 1 = Korean; 2 = French; 3 = German; 4 = Chinese; 5 = Taiwanese; 6 = Spanish; 7 = Spanish Mexico
350#        8 = Russian; 255 = Auto Detect (Default)
351#
352#    DeclinedNames
353#        Allow russian clients to set and use declined names
354#        Default: 0 - do not use declined names, except when the Russian RealmZone is set
355#                 1 - use declined names
356#
357#    StrictPlayerNames
358#        Limit player name to language specific symbols set, not allow create characters, and set rename request and disconnect at not allowed symbols name
359#        Default: 0 disable (but limited server timezone dependent client check)
360#                 1 basic latin characters  (strict)
361#                 2 realm zone specific (strict). See RealmZone setting.
362#                   Note: In any case if you want correctly see character name at client this client must have apporopriate fonts
363#                   (included in client by default, with active official localization or custom localization fonts in clientdir/Fonts).
364#                 3 basic latin characters + server timezone specific
365#
366#    StrictCharterNames
367#        Limit guild/arena team charter names to language specific symbols set, not allow create charters with allowed symbols in name
368#        Default: 0 disable
369#                 1 basic latin characters  (strict)
370#                 2 realm zone specific (strict). See RealmZone setting.
371#                   Note: In any case if you want correctly see character name at client this client must have apporopriate fonts
372#                   (included in client by default, with active official localization or custom localization fonts in clientdir/Fonts).
373#                 3 basic latin characters + server timezone specific
374#
375#    StrictPetNames
376#        Limit pet names to language specific symbols set
377#        Default: 0 disable
378#                 1 basic latin characters  (strict)
379#                 2 realm zone specific (strict). See RealmZone setting.
380#                   Note: In any case if you want correctly see character name at client this client must have apporopriate fonts
381#                   (included in client by default, with active official localization or custom localization fonts in clientdir/Fonts).
382#                 3 basic latin characters + server timezone specific
383#
384#    CharactersCreatingDisabled
385#        Disable characters creating for specific team or any (non-player accounts not affected)
386#        Default: 0 - enabled
387#                 1 - disabled only for Alliance
388#                 2 - disabled only for Horde
389#                 3 - disabled for both teams
390#
391#    MaxWhoListReturns
392#        Set the maximum number of players returned in the /who list and interface.
393#        Default: 49 (stable)
394#
395#    CharactersPerAccount
396#        Limit numbers of characters per account (at all realms).
397#        Note: this setting limit character creating at _current_ realm base at characters amount at all realms
398#        Default: 50
399#                The number must be >= CharactersPerRealm
400#
401#    CharactersPerRealm
402#        Limit numbers of characters for account at realm
403#        Default: 10 (client limitation)
404#                The number must be between 1 and 10
405#
406#    SkipCinematics
407#        Disable in-game script movie at first character's login(allows to prevent buggy intro in case of custom start location coordinates)
408#        Default: 0 - show intro for each new characrer
409#                 1 - show intro only for first character of selected race
410#                 2 - disable intro show in all cases
411#
412#    MaxPlayerLevel
413#        Max level that can be reached by player for experience (in range from 1 to 255).
414#        Change not recommended
415#        Default: 70
416#
417#    MaxHonorPoints
418#        Max honor points that player can have.
419#        Default: 75000
420#
421#    MaxArenaPoints
422#        Max arena points that player can have.
423#        Default: 5000
424#
425#    StartPlayerLevel
426#        Staring level that have character at creating (in range 1 to MaxPlayerLevel)
427#        Default: 1
428#
429#    ActivateWeather
430#        Activate weather system
431#        Default: 1 (true)
432#                 0 (false)
433#
434#    Battleground.CastDeserter
435#        Cast or not Deserter spell at player who leave battleground in progress
436#        Default: 1 (true)
437#                 0 (false)
438#
439#    CastUnstuck
440#        Allow cast or not Unstuck spell at .start or client Help option use
441#        Default: 1 (true)
442#                 0 (false)
443#
444#    Instance.IgnoreLevel
445#        Ignore level requirement to enter instance
446#        Default: 0 (false)
447#                 1 (true)
448#
449#    Instance.IgnoreRaid
450#        Ignore raid requirement to enter instance
451#        Default: 0 (false)
452#                 1 (true)
453#
454#    Instance.ResetTimeHour
455#        The hour of the day (0-23) when the global instance resets occur.
456#        Default: 4
457#
458#    Instance.UnloadDelay
459#        Unload the instance map from memory after some time if no players are inside.
460#        Default: 1800000 (miliseconds, i.e 30 minutes)
461#                 0 (instance maps are kept in memory until they are reset)
462#
463#    Quests.LowLevelHideDiff
464#        Quest level difference to hide for player low level quests:
465#        if player_level > quest_level + LowLevelQuestsHideDiff then quest "!" mark not show for quest giver
466#        Default: 4
467#                -1 (show all available quests marks)
468#
469#    Quests.HighLevelHideDiff
470#        Quest level difference to hide for player high level quests:
471#        if player_level < quest_min_level - HighLevelQuestsHideDiff then quest "!" mark not show for quest giver
472#        Default: 7
473#                -1 (show all available quests marks)
474#
475#    MaxPrimaryTradeSkill
476#        Max count that player can learn the primary trade skill.
477#        Default: 2
478#        Max : 10
479#
480#    MinPetitionSigns
481#        Min signatures count to creating guild (0..9).
482#        Default: 9
483#
484#    MaxGroupXPDistance
485#        Max distance to creature for group memeber to get XP at creature death.
486#        Default: 74
487#
488#    MailDeliveryDelay
489#        Mail delivery delay time for item sending
490#        Default: 3600 sec (1 hour)
491#
492#    SkillChance.Prospecting
493#        For prospecting skillup not possible by default, but can be allowed as custom setting
494#        Default: 0 - no skilups
495#                 1 - skilups possible
496#
497#    Event.Announce
498#        Default: 0 (false)
499#                 1 (true)
500#
501#    BeepAtStart
502#        Beep at core start finished (mostly work only at Unix/Linux systems)
503#        Default: 1 (true)
504#                 0 (false)
505#
506#    Motd
507#        Message of the Day. Displayed at worldlogin for every user ('@' for a newline).
508#
509###################################################################################################################
510
511GameType = 1
512RealmZone = 1
513Expansion = 1
514DBC.Locale = 255
515DeclinedNames = 0
516StrictPlayerNames = 0
517StrictCharterNames = 0
518StrictPetNames = 0
519MaxWhoListReturns = 49
520CharactersCreatingDisabled = 0
521CharactersPerAccount = 50
522CharactersPerRealm = 10
523SkipCinematics = 0
524MaxPlayerLevel = 70
525MaxHonorPoints = 75000
526MaxArenaPoints = 5000
527StartPlayerLevel = 1
528ActivateWeather = 1
529Battleground.CastDeserter = 1
530CastUnstuck = 1
531Instance.IgnoreLevel = 0
532Instance.IgnoreRaid = 0
533Instance.ResetTimeHour = 4
534Instance.UnloadDelay = 1800000
535Quests.LowLevelHideDiff = 4
536Quests.HighLevelHideDiff = 7
537MaxPrimaryTradeSkill = 2
538MinPetitionSigns = 9
539MaxGroupXPDistance = 74
540MailDeliveryDelay = 3600
541SkillChance.Prospecting = 0
542Event.Announce = 0
543BeepAtStart = 1
544Motd = "Welcome to a Trinity Core server."
545
546###################################################################################################################
547# PLAYER INTERACTION
548#
549#    AllowTwoSide.Accounts
550#        Allow or not accounts to create characters in the 2 teams in any game type.
551#        Default: 0 (Not allowed)
552#                 1 (Allowed)
553#
554#    AllowTwoSide.Interaction.Chat
555#    AllowTwoSide.Interaction.Channel
556#    AllowTwoSide.Interaction.Group
557#    AllowTwoSide.Interaction.Guild
558#    AllowTwoSide.Interaction.Auction
559#    AllowTwoSide.Interaction.Mail
560#        Allow or not common :chat(say,yell);channel(chat)group(join)guild(join);merge all auction houses for players from
561#        different teams, send mail to different team.
562#        Default: 0 (Not allowed)
563#                 1 (Allowed)
564#
565#    AllowTwoSide.WhoList
566#        Allow or not show player from both team in who list.
567#        Default: 0 (Not allowed)
568#                 1 (Allowed)
569#
570#    AllowTwoSide.AddFriend
571#        Allow or not adding friends from other team in friend list.
572#        Default: 0 (Not allowed)
573#                 1 (Allowed)
574#
575#    TalentsInspecting
576#        Allow other players see character talents in inspect dialog (Characters in Gamemaster mode can
577#        inspect talents always)
578#        Default: 1 (allow)
579#                 0 (not allow)
580#
581###################################################################################################################
582
583AllowTwoSide.Accounts = 0
584AllowTwoSide.Interaction.Chat = 0
585AllowTwoSide.Interaction.Channel = 0
586AllowTwoSide.Interaction.Group = 0
587AllowTwoSide.Interaction.Guild = 0
588AllowTwoSide.Interaction.Auction = 0
589AllowTwoSide.Interaction.Mail = 0
590AllowTwoSide.WhoList = 0
591AllowTwoSide.AddFriend = 0
592TalentsInspecting = 1
593
594###################################################################################################################
595# CREATURE SETTINGS
596#
597#    ThreatRadius
598#        Radius for creature to evade after being pulled away from combat start point
599#        If ThreatRadius is less than creature aggro radius then aggro radius will be used
600#        Default: 100 yards
601#
602#    Rate.Creature.Aggro
603#        Aggro radius percent or off.
604#        Default: 1   - 100%
605#                 1.5 - 150%
606#                 0   - off (0%)
607#
608#    CreatureFamilyAssistenceRadius
609#        Creature family assistence radius
610#        Default: 10
611#                 0   - off
612#
613#    WorldBossLevelDiff
614#        Difference for boss dynamic level with target
615#        Default: 3
616#
617#    Corpse.Decay.NORMAL
618#    Corpse.Decay.RARE
619#    Corpse.Decay.ELITE
620#    Corpse.Decay.RAREELITE
621#    Corpse.Decay.WORLDBOSS
622#        Seconds until creature corpse will decay without being looted or skinned.
623#        Default: 60, 300, 300, 300, 3600
624#
625#    Rate.Corpse.Decay.Looted
626#         Controls how long the creature corpse stays after it had been looted, as a multiplier of its Corpse.Decay.* config.
627#         Default: 0.1
628#
629#    Rate.Creature.Normal.Damage
630#    Rate.Creature.Elite.Elite.Damage
631#    Rate.Creature.Elite.RAREELITE.Damage
632#    Rate.Creature.Elite.WORLDBOSS.Damage
633#    Rate.Creature.Elite.RARE.Damage
634#        Creature Damage Rates.
635#        Examples: 2 - creatures will damage 2x, 1.7 - 1.7x.
636#
637#    Rate.Creature.Normal.SpellDamage
638#    Rate.Creature.Elite.Elite.SpellDamage
639#    Rate.Creature.Elite.RAREELITE.SpellDamage
640#    Rate.Creature.Elite.WORLDBOSS.SpellDamag
641#    Rate.Creature.Elite.RARE.SpellDamage
642#        Creature Spell Damage Rates.
643#        Examples: 2 - creatures will damage with spells 2x, 1.7 - 1.7x.
644#
645#    Rate.Creature.Normal.HP
646#    Rate.Creature.Elite.Elite.HP
647#    Rate.Creature.Elite.RAREELITE.HP
648#    Rate.Creature.Elite.WORLDBOSS.HP
649#    Rate.Creature.Elite.RARE.HP
650#        Creature Health Ammount Modifier.
651#        Examples: 2 - creatures have 2x health, 1.7 - 1.7x.
652#
653###################################################################################################################
654
655ThreatRadius = 100
656Rate.Creature.Aggro = 1
657CreatureFamilyAssistenceRadius = 10
658WorldBossLevelDiff = 3
659Corpse.Decay.NORMAL = 60
660Corpse.Decay.RARE = 300
661Corpse.Decay.ELITE = 300
662Corpse.Decay.RAREELITE = 300
663Corpse.Decay.WORLDBOSS = 3600
664Rate.Corpse.Decay.Looted = 0.1
665Rate.Creature.Normal.Damage = 1
666Rate.Creature.Elite.Elite.Damage = 1
667Rate.Creature.Elite.RAREELITE.Damage = 1
668Rate.Creature.Elite.WORLDBOSS.Damage = 1
669Rate.Creature.Elite.RARE.Damage = 1
670Rate.Creature.Normal.SpellDamage = 1
671Rate.Creature.Elite.Elite.SpellDamage = 1
672Rate.Creature.Elite.RAREELITE.SpellDamage = 1
673Rate.Creature.Elite.WORLDBOSS.SpellDamage = 1
674Rate.Creature.Elite.RARE.SpellDamage = 1
675Rate.Creature.Normal.HP = 1
676Rate.Creature.Elite.Elite.HP = 1
677Rate.Creature.Elite.RAREELITE.HP = 1
678Rate.Creature.Elite.WORLDBOSS.HP = 1
679Rate.Creature.Elite.RARE.HP = 1
680
681###################################################################################################################
682# CHAT SETTINGS
683#
684#    ChatFakeMessagePreventing
685#        Chat protection from creating fake messages using a lot spaces (other invisible symbols),
686#        not applied to addon language messages, but can prevent working old addons
687#        that use normal languages for sending data to another clients.
688#        Default: 0 (disible fake messages preventing)
689#                 1 (enabled fake messages preventing)
690#
691#    ChatFlood.MessageCount
692#        Chat anti-flood protection, haste message count to activate protection
693#        Default: 10
694#                 0 (disible anti-flood protection)
695#
696#    ChatFlood.MessageDelay
697#        Chat anti-flood protection, minimum message delay to count message
698#        Default: 1 (in secs)
699#
700#    ChatFlood.MuteTime
701#        Chat anti-flood protection, mute time at activation flood protection (not saved)
702#        Default: 10 (in secs)
703#
704#    Channel.RestrictedLfg
705#        Restrict use LookupForGroup channel only registered in LFG tool players
706#        Default: 1 (allow join to channel only if active in LFG)
707#                 0 (allow join to channel in any time)
708#
709#    Channel.SilentlyGMJoin
710#        Silently join GM characters (security level > 1) to channels
711#        Default: 0 (join announcement in normal way)
712#                 1 (GM join without announcement)
713#
714###################################################################################################################
715
716ChatFakeMessagePreventing = 0
717ChatFlood.MessageCount = 10
718ChatFlood.MessageDelay = 1
719ChatFlood.MuteTime = 10
720Channel.RestrictedLfg = 1
721Channel.SilentlyGMJoin = 0
722
723###################################################################################################################
724# GAME MASTER SETTINGS
725#
726#    GM.WhisperingTo
727#        Is GM accepting whispers from player by default or not.
728#        Default: 0 (false)
729#                 1 (true)
730#
731#    GM.InGMList
732#        Is GM showed in GM list (if visible) in non-GM state (.gmoff)
733#        Default: 0 (false)
734#                 1 (true)
735#
736#    GM.InWhoList
737#        Is GM showed in who list (if visible).
738#        Default: 0 (false)
739#                 1 (true)
740#
741#    GM.LoginState
742#        GM mode at login
743#        Default: 2 (last save state)
744#                 0 (disable)
745#                 1 (enable)
746#
747#    GM.LogTrade
748#        Include GM trade and trade slot enchanting operations in GM log if it enable
749#        Default: 1 (include)
750#                 0 (not include)
751#
752###################################################################################################################
753
754GM.WhisperingTo = 0
755GM.InGMList = 0
756GM.InWhoList = 0
757GM.LoginState = 2
758GM.LogTrade = 1
759
760###################################################################################################################
761# VISIBILITY AND RADIUSES
762#
763#    Visibility.GroupMode
764#        Group visibility modes
765#        Default: 0 (standard setting: only members from same group can 100% auto detect invisible player)
766#                 1 (raid members 100% auto detect invisible player from same raid)
767#                 2 (players from same team can 100% auto detect invisible player)
768#
769#    Visibility.Distance.Creature
770#    Visibility.Distance.Player
771#        Visibility distance for different in game object
772#        Max limited by active player zone: ~ 166
773#        Min limit dependent from objects
774#        Default: 66 (cell size)
775#        Min limit is max aggro radius (45) * Rate.Creature.Aggro
776#
777#    Visibility.Distance.Object
778#        Visible distance for gameobject, dynobject, bodies, corpses, bones
779#        Min limit is iteraction distance (5)
780#
781#    Visibility.Distance.InFlight
782#        Visible distance for player in flight
783#        Min limit is 0 (not show any objects)
784#
785#    Visibility.Distance.Grey.Unit
786#        Visibility grey distance for creatures/players (fast changing objects)
787#        addition to appropriate object type Visibility.Distance.* use in case visibility removing to
788#        object (except corpse around distences) If ᅵ is distance and G is grey distance then object
789#        make visible if distance to it <= D but make non visible if distance > D+G
790#        Default: 1 (yard)
791#
792#    Visibility.Distance.Grey.Object
793#        Visibility grey distance for dynobjects/gameobjects/corpses/creature bodies
794#        Default: 10 (yards)
795#
796#
797###################################################################################################################
798
799Visibility.GroupMode = 0
800Visibility.Distance.Creature      = 66
801Visibility.Distance.Player        = 66
802Visibility.Distance.Object        = 66
803Visibility.Distance.InFlight      = 66
804Visibility.Distance.Grey.Unit   = 1
805Visibility.Distance.Grey.Object = 10
806
807###################################################################################################################
808# SERVER RATES
809#
810#    Rate.Health
811#    Rate.Mana
812#    Rate.Rage.Income
813#    Rate.Rage.Loss
814#    Rate.Focus
815#    Rate.Loyalty
816#        Health and power regeneration and rage income from damage.
817#        Default: 1
818#
819#    Rate.Skill.Discovery
820#         Skill Discovery Rates
821#         Default: 1
822#
823#    Rate.Drop.Item.Poor
824#    Rate.Drop.Item.Normal
825#    Rate.Drop.Item.Uncommon
826#    Rate.Drop.Item.Rare
827#    Rate.Drop.Item.Epic
828#    Rate.Drop.Item.Legendary
829#    Rate.Drop.Item.Artifact
830#    Rate.Drop.Item.Referenced
831#    Rate.Drop.Money
832#         Drop rates (items by qualify and money)
833#         Default: 1
834#
835#    Rate.Drop.Money
836#         Drop rates
837#         Default: 1
838#
839#    Rate.XP.Kill
840#    Rate.XP.Quest
841#    Rate.XP.Explore
842#        XP rates
843#        Default: 1
844#
845#    Rate.XP.PastLevel70
846#        XP needed per level past 70 (Rates below 1 not recommended)
847#        Default: 1
848#
849#    Rate.Rest.InGame
850#    Rate.Rest.Offline.InTavernOrCity
851#    Rate.Rest.Offline.InWilderness
852#        Resting points grow rates (1 - normal, 2 - double rate, 0.5 - half rate, etc) from standard values
853#
854#    Rate.Damage.Fall
855#        Damage after fall rate. (1 - standard, 2 - double damage, 0.5 - half damage, etc)
856#
857#    Rate.Auction.Time
858#    Rate.Auction.Deposit
859#    Rate.Auction.Cut
860#        Auction rates (auction time, deposit get at auction start, auction cut from price at auction end)
861#
862#    Rate.Honor
863#        Honor gain rate
864#
865#    Rate.Mining.Amount
866#    Rate.Mining.Next
867#        Mining Rates (Mining.Amount changes minimum/maximum usetimes of a deposit,
868#        Mining.Next changes chance to have next use of a deposit)
869#
870#    Rate.Talent
871#        Talent Point rates
872#        Default: 1
873#
874#    Rate.Reputation.Gain
875#         Reputation Gain rate
876#         Default: 1
877#
878#    Rate.InstanceResetTime
879#        Multiplier for the number of days in between global raid/heroic instance resets.
880#        Default: 1
881#
882#    SkillGain.Crafting
883#    SkillGain.Defense
884#    SkillGain.Gathering
885#    SkillGain.Weapon
886#         crafting/defense/gathering/weapon skills gain at skill grow (1,2,...)
887#         Default: 1
888#
889#    SkillChance.Orange
890#    SkillChance.Yellow
891#    SkillChance.Green
892#    SkillChance.Grey
893#        Skill chance values (0..100)
894#        Default: 100-75-25-0
895#
896#    SkillChance.MiningSteps
897#    SkillChance.SkinningSteps
898#         For skinning and Mining chance decrease with skill level.
899#         Default: 0  - no decrease
900#                  75 - in 2 times each 75 skill points
901#
902#    DurabilityLossChance.Damage
903#         Chance lost one from equiped items durability point at damage apply or receive.
904#         Default: 0.5 (100/0.5 = 200) Each 200 damage apply one from 19 possible equipped items
905#
906#    DurabilityLossChance.Absorb
907#         Chance lost one from armor items durability point at damage absorb.
908#         Default: 0.5 (100/0.5 = 200) Each 200 absorbs apply one from 15 possible armor equipped items
909#
910#    DurabilityLossChance.Parry
911#         Chance lost weapon durability point at parry.
912#         Default: 0.05 (100/0.05 = 2000) Each 2000 parry attacks main weapon lost point
913#
914#    DurabilityLossChance.Block
915#         Chance lost sheild durability point at damage block.
916#         Default: 0.05 (100/0.05 = 2000) Each 2000 partly or full blocked attacks shield lost point
917#
918#    Death.SicknessLevel
919#         Starting Character start gain sickness at spirit resurrection (1 min)
920#         Default: 11
921#                  -10 - character will have full time (10min) sickness at 1 level
922#                  maxplayerlevel+1 - chaarcter will not have sickess at any level
923#
924#    Death.CorpseReclaimDelay.PvP
925#    Death.CorpseReclaimDelay.PvE
926#         Enabled/disabled increase corpse reclaim delay at often PvP/PvE deaths
927#         Default: 1 (enabled)
928#                  0 (disabled)
929#
930###################################################################################################################
931
932Rate.Health = 1
933Rate.Mana = 1
934Rate.Rage.Income = 1
935Rate.Rage.Loss = 1
936Rate.Focus = 1
937Rate.Loyalty = 1
938Rate.Skill.Discovery = 1
939Rate.Drop.Item.Poor = 1
940Rate.Drop.Item.Normal = 1
941Rate.Drop.Item.Uncommon = 1
942Rate.Drop.Item.Rare = 1
943Rate.Drop.Item.Epic = 1
944Rate.Drop.Item.Legendary = 1
945Rate.Drop.Item.Artifact = 1
946Rate.Drop.Item.Referenced = 1
947Rate.Drop.Money = 1
948Rate.XP.Kill    = 1
949Rate.XP.Quest   = 1
950Rate.XP.Explore = 1
951Rate.XP.PastLevel70 = 1
952Rate.Rest.InGame = 1
953Rate.Rest.Offline.InTavernOrCity = 1
954Rate.Rest.Offline.InWilderness = 1
955Rate.Damage.Fall = 1
956Rate.Auction.Time = 1
957Rate.Auction.Deposit = 1
958Rate.Auction.Cut = 1
959Rate.Honor = 1
960Rate.Mining.Amount = 1
961Rate.Mining.Next   = 1
962Rate.Talent = 1
963Rate.Reputation.Gain = 1
964Rate.InstanceResetTime = 1
965SkillGain.Crafting = 1
966SkillGain.Defense = 1
967SkillGain.Gathering = 1
968SkillGain.Weapon = 1
969SkillChance.Orange = 100
970SkillChance.Yellow = 75
971SkillChance.Green  = 25
972SkillChance.Grey   = 0
973SkillChance.MiningSteps   = 0
974SkillChance.SkinningSteps = 0
975DurabilityLossChance.Damage = 0.5
976DurabilityLossChance.Absorb = 0.5
977DurabilityLossChance.Parry  = 0.05
978DurabilityLossChance.Block  = 0.05
979Death.SicknessLevel = 11
980Death.CorpseReclaimDelay.PvP = 1
981Death.CorpseReclaimDelay.PvE = 1
982
983###################################################################################################################
984# CONSOLE AND REMOTE ACCESS
985#
986#    Console.Enable
987#        Enable console
988#        Default: 1 - on
989#                 0 - off
990#
991#    Ra.Enable
992#        Enable remote console
993#        Default: 0 - off
994#                 1 - on
995#
996#    Ra.IP
997#        Default remote console ip address, use 0.0.0.0 for every address
998#
999#    Ra.Port
1000#        Default remote console port
1001#
1002#    Ra.MinLevel
1003#        Minimum level that's required to login,3 by default
1004#
1005#    Ra.Secure
1006#        Kick client on wrong pass
1007#
1008###################################################################################################################
1009
1010Console.Enable = 1
1011Ra.Enable = 0
1012Ra.IP = 0.0.0.0
1013Ra.Port = 3443
1014Ra.MinLevel = 3
1015Ra.Secure = 1
1016
1017###################################################################################################################
1018#
1019# Rated arena matches config
1020#
1021# MaxRatingDifference: the maximum rating difference between two groups in rated matches
1022#             Default: 0 (disable, rating difference is discarded) 
1023#
1024# RatingDiscardTimer: after the specified milliseconds has passed,
1025#                     rating information will be discarded when selecting teams for matches
1026#                     also initiates an update by this timer
1027#             Default: 60000
1028#
1029# AutoDistributePoints: set if arena points should be distributed automatically, or by GM command
1030#             Default: 0 (disable) (recommended): use gm command or sql query to distribute the points
1031#                      1 (enable): arena points are distributed automatically
1032#
1033# AutoDistributeInterval: how often should the distribution take place
1034#                         if automatic distribution is enabled
1035#                         in days
1036#             Default: 7 (weekly)
1037#
1038###################################################################################################################
1039
1040Arena.MaxRatingDifference = 0
1041Arena.RatingDiscardTimer = 60000
1042Arena.AutoDistributePoints = 0
1043Arena.AutoDistributeInterval = 7
1044
1045###################################################################################################################
1046#
1047# Battleground config
1048#
1049# PrematureFinishTimer: the time to end the bg if there are less than minplayersperteam on one side
1050#                       in milliseconds, 0 - disabled
1051#              Default: 0
1052#
1053###################################################################################################################
1054
1055BattleGround.PrematureFinishTimer = 0
1056
1057###################################################################################################################
1058#
1059# Network config
1060#
1061# Threads: number of threads for network ,recommend 1 thread per 1000 players.
1062#         Default: 1
1063#
1064# OutKBuff: the output kernel buffer used ( SO_SNDBUF socket option ) , -1 means use system default. Refer to tcp manual for explanation.
1065#         Default: -1
1066#
1067# OutUBuff: userspace buffer for output
1068#         Default: 65536
1069#
1070# TcpNodelay: enable ( 1 ) , disable ( 0 ) ,TCP_NODELAY socket option. Refer to tcp manual for explanation.
1071#         Default: 1
1072#
1073#     
1074#
1075###################################################################################################################
1076
1077Network.Threads = 1
1078Network.OutKBuff = -1
1079Network.OutUBuff = 65536
1080Network.TcpNodelay = 1
1081
1082###################################################################################################################
1083# CUSTOM SERVER OPTIONS
1084#
1085#       PlayerStart.Gold
1086#               Amount of gold that new players will start with.
1087#               If you want to start with silver, use for example 0.1 (for 10s)
1088#               Default: 0
1089#
1090#       PlayerStart.HonorPoints
1091#               Amount of honor that new players will start with
1092#               Default: 0
1093#
1094#       PlayerStart.ArenaPoints
1095#               Amount of arena points that new players will start with
1096#               Default: 0
1097#
1098#       PlayerStart.AllReputation
1099#               Players will start with most of the high level reputations that are needed for items, mounts etc.
1100#               If there are any reputation faction you want to be added, just tell me.
1101#
1102#       PlayerStart.AllSpells
1103#               If enabled, players will start with all their class spells (not talents). Useful for instant 70 servers.
1104#               You must import playercreateinfo_spell_custom.sql, it's included in the SQL folder.
1105#               Default: 0 - off
1106#                                1 - on
1107#
1108#       PlayerStart.MapsExplored
1109#               Players will start with all maps explored if enabled
1110#
1111#       PlayerStart.AllFlightPaths
1112#               Players will start with all flight paths (Note: ALL flight paths, not only player's team)
1113#
1114#       AntiCheat.GMIsland
1115#               If a player enters GM island, he will get teleported away. This will prevent cheaters from buying GM stuff
1116#               on servers with a GM mall. GM's will not get teleported away.
1117#
1118#       GamemasterStartLevel
1119#               GM starting level
1120#               Default: 70 Min,max: 1 - 255
1121#
1122#       PlayerInstantLogout
1123#               Enable or disable instant logout for all players (NOT in combat/while dueling/while falling)
1124#               Default: 0 - off
1125#                               1 - on
1126#
1127#       MusicInBattleground
1128#               If enabled, "L70ETC - Power of the horde" will be played when BG starts ;)
1129#
1130#       EnableQueueForGMs
1131#      NOTE: This option currently does not work due to ACE patch
1132#               GMs will also be added to the login queue (not gmlvl 3+) if enabled. Useful for GM servers.
1133#               Default: 0 - off
1134#                                1 - on
1135#
1136#       HonorPointsAfterDuel
1137#               The amount of honor points the duel winner will get after a duel.
1138#               Default: 0 - disable
1139#
1140#       DisableWaterBreath
1141#               Disable/enable waterbreathing for players
1142#
1143#       DisableResurrectSickness
1144#               Players wont get any resurrect sickness when speaking with a spirit healer if this is enabled+
1145#
1146#       AlwaysMaxWeaponSkill
1147#               Players will automatically gain max weapon/defense skill when logging in, leveling up etc.
1148#
1149#       PvPToken.Enable
1150#               Enable/disable PvP Token System. Players will get a token after slaying another player that gives honor.
1151#
1152#       PvPToken.MapAllowType
1153#               Where players can receive the pvp token
1154#               4 - In all maps
1155#               3 - In battlegrounds only
1156#               2 - In FFA areas only (gurubashi arena etc)
1157#               1 - In battlegrounds AND FFA areas only
1158#
1159#       PvPToken.ItemID
1160#               The item players will get after killing someone if PvP Token system is enabled.
1161#               Default: 29434 - Badge of justice
1162#
1163#       PvPToken.ItemCount
1164#               Modify the item ID count - Default: 1
1165#
1166#       NoResetTalentsCost
1167#               Enable or disable no cost when reseting talents
1168#
1169###################################################################################################################
1170
1171PlayerStart.Gold = 0
1172PlayerStart.HonorPoints = 0
1173PlayerStart.ArenaPoints = 0
1174PlayerStart.AllReputation = 0
1175PlayerStart.AllSpells = 0
1176PlayerStart.MapsExplored = 0
1177PlayerStart.AllFlightPaths = 0
1178AntiCheat.GMIsland = 0
1179GamemasterStartLevel = 70
1180PlayerInstantLogout = 0
1181MusicInBattleground = 0
1182EnableQueueForGMs = 0
1183HonorPointsAfterDuel = 0
1184DisableWaterBreath = 0
1185DisableResurrectSickness = 0
1186AlwaysMaxWeaponSkill = 0
1187PvPToken.Enable = 0
1188PvPToken.MapAllowType = 4
1189PvPToken.ItemID = 29434
1190PvPToken.ItemCount = 1
1191NoResetTalentsCost = 0
1192
1193###################################################################################################################
1194# IRC SYSTEM CONFIG
1195#
1196# irc.active
1197#     Enable IRC bot/system
1198#     Default: 0 - Disable
1199#              0 - Enable
1200# irc.icc
1201#     IRC connect code
1202#     Default: 001 - Welcome To Network msg
1203#              375 - Beginning Of MOTD
1204#              376 - End Of MOTD
1205#
1206# irc.host
1207#     IRC server to connect to
1208#
1209# irc.port
1210#     IRC server port to use
1211#     Default: "6667" - Semi-standard IRC port
1212#
1213# irc.user
1214#     The username/ident to use when connecting to the IRC server
1215#
1216# irc.nick
1217#     IRC nickname to be used by the bot
1218#
1219# irc.pass
1220#     The password to be used to identify to NickServ
1221#
1222# irc.auth
1223#     IRC Authentication Method
1224#     Default: 0 - Disable
1225#              1 - NickServ - Normal Method - PRIVMSG NickServ :IDENTIFY Password
1226#              2 - NickServ - Alternate Method To Identify To A Different Nick - PRIVMSG NickServ :IDENTIFY irc.auth.nick Password
1227#              3 - QuakeNet - Normal Method - PRIVMSG Q@CServe.quakenet.org :AUTH irc.nick Password
1228#              4 - QuakeNet - Alternate Method To Identify To A Different Nick - PRIVMSG Q@CServe.quakenet.org :AUTH irc.auth.nick Password
1229#
1230# irc.auth.nick
1231#     IRC Nickname to use if Auth method 2 or 4 is used
1232#
1233# irc.ldef
1234#     Leave a defined IRC channel on server connect
1235#     Default: 0 - Disable
1236#              1 - Enable
1237# irc.defchan
1238#     IRC channel to leave on server connect if irc.ldef is on
1239#
1240# irc.wct
1241#     Time to wait before (re)attemptimg connection to IRC server
1242#     Default: 30000 - (30 Seconds)
1243#
1244# irc.maxattempt
1245#     Maximum attempts to try IRC server
1246#     Default: 20
1247#
1248# irc.auto.announce
1249#     Time to wait in Minutes to announce random messages from database.
1250#     Default: 30 - (30 Minutes)
1251#
1252# irc.autojoin_kick
1253#     Autojoin IRC channel if kicked
1254#     Default: 1 - Enable
1255#              0 - Disable
1256#
1257# irc.command_prefix
1258#     IRC command prefix
1259#     Example: (.)online all
1260#
1261# irc.joinmsg
1262# irc.rstmsg
1263# irc.kickmsg
1264#     Bot join/restart/kick messages
1265#
1266# irc.chan_#
1267# wow.chan_#
1268#     IRC and WOW channels to link. Leave # out of IRC channel. Both channels _ARE_ case sensitive
1269#     Example: irc.chan_1 = "Trinity"
1270#              irc.chan_2 = "trinity2"
1271#              wow.chan_1 = "world"
1272#              wow.chan_2 = "LookingForGroup"
1273#
1274# irc.StatusChannel
1275#     Channel Number To Display Status Messages In (AuctionHouse, Levels, Deaths, Etc)
1276#     Default: 1 - Channel ID 1
1277#
1278# irc.AnnounceChannel
1279#     Channel Number To Display Announcements In (Announces, Notifies, Event)
1280#     Default: 1 - Channel ID 1
1281#
1282# irc.op_gm_login
1283#     Op The GM In All Channels The Bot Is On When They Log In
1284#     Default: 0 - Disable
1285#              1 - Enable
1286#
1287# irc.op_gm_level
1288#     The Minimum GM Level Required To Have The Bot Op The User
1289#     Default: 5 - GM Level 5
1290#
1291# irc.ajoin (Experimental/Under Development)
1292#     Force players to autojoin an in game channel
1293#     Atleast one player must be in the channel on server start, and atleast one person online for invite to work
1294#     Default: 0 - Disable
1295#              1 - Enable
1296# irc.ajchan
1297#     Channel to join if above is Enabled.
1298#
1299# irc.online.result
1300#     Maximum number of results per line for the online command
1301#
1302# chat.*** (Defineable Strings)
1303#     wow_* - String is displayed in IRC channel
1304#     irc_* - String is displayed in WOW channel
1305#     Options: $Name, $Level, $Msg, $GM (not all options work in every string)
1306#
1307# Botmask
1308#     This defines what the bot announces, if its 0 everything is disabled
1309#     simply add the values of the elements you want to create this mask.
1310#     Example: WoW join/leaves are 1 and IRC join/leaves are 2, if you want both of these active then the BotMask is 3.
1311#       (1)Display WoW Chan Join/Leaves In IRC
1312#       (2)Display IRC Chan Join/Leaves/NickChanges In WoW
1313#       (4)Display Unknown Command Message When Trigger Is Used And No Command Exists
1314#       (8)Announce Security Level > 0 As GM At Login
1315#       (16)Announce GM In GM ON State AS GM At Login
1316#       (32)Return Errors To Notice. (If disabled then default is Private Message)
1317#       (64)Display WoW Status Messages (Levels/Deaths)
1318#       (128)Display Nick Changes From IRC In WOW
1319#       (256)Display WoW Announces/Notifies In IRC
1320#       (512)Do Not Let Players Use Commands On Higher GM Level Players
1321#       (1024)Enable AuctionHouse Announcements
1322#
1323# irc.gmlog
1324#     Minimum GM level to not show login/pass info in IRC logs
1325#
1326# irc.logfile.prefix
1327#     The prefix of the IRC logfile. Directories can be added here.
1328#     Example: "IRC/IRC_" outputs IRC_YYYY-MM-DD.log to the IRC subdirectory in your logs dir
1329#
1330# irc.fun.games (Experimental/Under Development)
1331#     Enable IRC games
1332#     Default: 0 - Disable
1333#              1 - Enable
1334# irc.gm#
1335#     GM tag to append to (GM onjoin / online command) IRC color codes are acceptable
1336#
1337###################################################################################################################
1338
1339irc.active = 0
1340irc.icc = 001
1341irc.host = ""
1342irc.port = "6667"
1343irc.user = "TC"
1344irc.nick = "TrinityCoreBot"
1345irc.pass = ""
1346irc.auth = 0
1347irc.auth.nick = "TrinityCoreBot"
1348irc.ldef = 0
1349irc.defchan = "lobby"
1350irc.wct = 30000
1351irc.maxattempt = 20
1352irc.auto.announce = 30
1353irc.autojoin_kick = 1
1354irc.command_prefix = "."
1355irc.joinmsg = "Trinity Core running. Command trigger is $Trigger."
1356irc.rstmsg  = "Trinity Core is restarting..."
1357irc.kickmsg = "Do not kick me."
1358irc.chan_1 = "mangos"
1359wow.chan_1 = "world"
1360irc.StatusChannel = 1
1361irc.AnnounceChannel = 1
1362irc.op_gm_login = 0
1363irc.op_gm_level = 3
1364irc.ajoin = 1
1365irc.ajchan = "world"
1366irc.online.result = 30
1367chat.wow_irc = "<WoW>$Name [$Level]: $Msg"
1368chat.irc_wow = "<IRC>$Name: $Msg"
1369chat.join_wow = "[$GM] $Name has joined IRC."
1370chat.leave_wow = "[$GM] $Name has left IRC."
1371Botmask = 1023
1372irc.gmlog = 1
1373irc.logfile.prefix = "irc_"
1374irc.fun.games = 0
1375irc.gm1 = "[Moderator]"
1376irc.gm2 = "[Game Master]"
1377irc.gm3 = "[BugTracker]"
1378irc.gm4 = "[DevTeam Admin]"
1379irc.gm5 = "[SysOP]"
Note: See TracBrowser for help on using the browser.