Guest User

Untitled

a guest
Aug 11th, 2017
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 133.56 KB | None | 0 0
  1. ################################################
  2. # Trinity Core World Server configuration file #
  3. ################################################
  4. [worldserver]
  5.  
  6. ###################################################################################################
  7. # SECTION INDEX
  8. #
  9. # EXAMPLE CONFIG
  10. # CONNECTIONS AND DIRECTORIES
  11. # PERFORMANCE SETTINGS
  12. # SERVER LOGGING
  13. # SERVER SETTINGS
  14. # UPDATE SETTINGS
  15. # HOTSWAP SETTINGS
  16. # WARDEN SETTINGS
  17. # PLAYER INTERACTION
  18. # CREATURE SETTINGS
  19. # SPAWN/RESPAWN SETTINGS
  20. # CHAT SETTINGS
  21. # GAME MASTER SETTINGS
  22. # VISIBILITY AND DISTANCES
  23. # SERVER RATES
  24. # STATS LIMITS
  25. # AUTO BROADCAST
  26. # BATTLEGROUND CONFIG
  27. # BATTLEFIELD CONFIG
  28. # ARENA CONFIG
  29. # NETWORK CONFIG
  30. # CONSOLE AND REMOTE ACCESS
  31. # CHARACTER DELETE OPTIONS
  32. # CUSTOM SERVER OPTIONS
  33. # AUCTION HOUSE BOT SETTINGS
  34. # AUCTION HOUSE BOT ITEM FINE TUNING
  35. # AUCTION HOUSE BOT BUYER CONFIG
  36. # LOGGING SYSTEM SETTINGS
  37. # PACKET SPOOF PROTECTION SETTINGS
  38. # METRIC SETTINGS
  39. #
  40. ###################################################################################################
  41.  
  42. ###################################################################################################
  43. # EXAMPLE CONFIG
  44. #
  45. # Variable
  46. # Description: Brief description what the variable is doing.
  47. # Important: Annotation for important things about this variable.
  48. # Example: "Example, i.e. if the value is a string"
  49. # Default: 10 - (Enabled|Comment|Variable name in case of grouped config options)
  50. # 0 - (Disabled|Comment|Variable name in case of grouped config options)
  51. #
  52. # Note to developers:
  53. # - Copy this example to keep the formatting.
  54. # - Line breaks should be at column 100.
  55. ###################################################################################################
  56.  
  57. ###################################################################################################
  58. # CONNECTIONS AND DIRECTORIES
  59. #
  60. # RealmID
  61. # Description: ID of the Realm using this config.
  62. # Important: RealmID must match the realmlist inside the auth database.
  63. # Default: 1
  64.  
  65. RealmID = 1
  66.  
  67. #
  68. # DataDir
  69. # Description: Data directory setting.
  70. # Important: DataDir needs to be quoted, as the string might contain space characters.
  71. # Example: "@prefix@/share/trinitycore"
  72. # Default: "."
  73.  
  74. DataDir = "."
  75.  
  76. #
  77. # LogsDir
  78. # Description: Logs directory setting.
  79. # Important: LogsDir needs to be quoted, as the string might contain space characters.
  80. # Logs directory must exists, or log file creation will be disabled.
  81. # Default: "" - (Log files will be stored in the current path)
  82.  
  83. LogsDir = ""
  84.  
  85. #
  86. # LoginDatabaseInfo
  87. # WorldDatabaseInfo
  88. # CharacterDatabaseInfo
  89. # Description: Database connection settings for the world server.
  90. # Example: "hostname;port;username;password;database"
  91. # ".;somenumber;username;password;database" - (Use named pipes on Windows
  92. # "enable-named-pipe" to [mysqld]
  93. # section my.ini)
  94. # ".;/path/to/unix_socket;username;password;database" - (use Unix sockets on
  95. # Unix/Linux)
  96. # Default: "127.0.0.1;3306;trinity;trinity;auth" - (LoginDatabaseInfo)
  97. # "127.0.0.1;3306;trinity;trinity;world" - (WorldDatabaseInfo)
  98. # "127.0.0.1;3306;trinity;trinity;characters" - (CharacterDatabaseInfo)
  99. #
  100. # Don't change hostname unless you are hosting mysql on a different machine, if you need help
  101. # with configuration allowing to connect from diferent machine than the one running server
  102. # search for TCE00016 on forum.
  103. # Don't open port on firewall to external connections (it belongs to mysql, not to wow server).
  104. # The username you choose must have permisions to create/alter/rename tables.
  105.  
  106. LoginDatabaseInfo = "127.0.0.1;3306;root;mysqlpw;auth"
  107. WorldDatabaseInfo = "127.0.0.1;3306;root;mysqlpw;world"
  108. CharacterDatabaseInfo = "127.0.0.1;3306;root;mysqlpw;characters"
  109.  
  110. #
  111. # LoginDatabase.WorkerThreads
  112. # WorldDatabase.WorkerThreads
  113. # CharacterDatabase.WorkerThreads
  114. # Description: The amount of worker threads spawned to handle asynchronous (delayed) MySQL
  115. # statements. Each worker thread is mirrored with its own connection to the
  116. # MySQL server and their own thread on the MySQL server.
  117. # Default: 1 - (LoginDatabase.WorkerThreads)
  118. # 1 - (WorldDatabase.WorkerThreads)
  119. # 1 - (CharacterDatabase.WorkerThreads)
  120.  
  121. LoginDatabase.WorkerThreads = 1
  122. WorldDatabase.WorkerThreads = 1
  123. CharacterDatabase.WorkerThreads = 1
  124.  
  125. #
  126. # LoginDatabase.SynchThreads
  127. # WorldDatabase.SynchThreads
  128. # CharacterDatabase.SynchThreads
  129. # Description: The amount of MySQL connections spawned to handle.
  130. # Default: 1 - (LoginDatabase.SynchThreads)
  131. # 1 - (WorldDatabase.SynchThreads)
  132. # 2 - (CharacterDatabase.SynchThreads)
  133.  
  134. LoginDatabase.SynchThreads = 1
  135. WorldDatabase.SynchThreads = 1
  136. CharacterDatabase.SynchThreads = 2
  137.  
  138. #
  139. # MaxPingTime
  140. # Description: Time (in minutes) between database pings.
  141. # Default: 30
  142.  
  143. MaxPingTime = 30
  144.  
  145. #
  146. # WorldServerPort
  147. # Description: TCP port to reach the world server.
  148. # Default: 8085
  149.  
  150. WorldServerPort = 8085
  151.  
  152. #
  153. # BindIP
  154. # Description: Bind world server to IP/hostname.
  155. # Default: "0.0.0.0" - (Bind to all IPs on the system)
  156.  
  157. BindIP = "0.0.0.0"
  158.  
  159. #
  160. # ThreadPool
  161. # Description: Number of threads to be used for the global thread pool
  162. # The thread pool is currently used for:
  163. # - Signal handling
  164. # - Remote access
  165. # - Database keep-alive ping
  166. # - Core freeze check
  167. # - World socket networking
  168. # Default: 2
  169.  
  170. ThreadPool = 2
  171.  
  172. #
  173. # CMakeCommand
  174. # Description: The path to your CMake binary.
  175. # If the path is left empty, the built-in CMAKE_COMMAND is used.
  176. # Example: "C:/Program Files (x86)/CMake/bin/cmake.exe"
  177. # "/usr/bin/cmake"
  178. # Default: ""
  179.  
  180. CMakeCommand = ""
  181.  
  182. #
  183. # BuildDirectory
  184. # Description: The path to your build directory.
  185. # If the path is left empty, the built-in CMAKE_BINARY_DIR is used.
  186. # Example: "../TrinityCore"
  187. # Default: ""
  188.  
  189. BuildDirectory = ""
  190.  
  191. #
  192. # SourceDirectory
  193. # Description: The path to your TrinityCore source directory.
  194. # If the path is left empty, the built-in CMAKE_SOURCE_DIR is used.
  195. # Example: "../TrinityCore"
  196. # Default: ""
  197.  
  198. SourceDirectory = ""
  199.  
  200. #
  201. # MySQLExecutable
  202. # Description: The path to your mysql cli binary.
  203. # If the path is left empty, built-in path from cmake is used.
  204. # Example: "C:/Program Files/MySQL/MySQL Server 5.6/bin/mysql.exe"
  205. # "mysql.exe"
  206. # "/usr/bin/mysql"
  207. # Default: ""
  208.  
  209. MySQLExecutable = ""
  210.  
  211. #
  212. ###################################################################################################
  213.  
  214. ###################################################################################################
  215. # PERFORMANCE SETTINGS
  216. #
  217. # UseProcessors
  218. # Description: Processors mask for Windows and Linux based multi-processor systems.
  219. # Example: A computer with 2 CPUs:
  220. # 1 - 1st CPU only, 2 - 2nd CPU only, 3 - 1st and 2nd CPU, because 1 | 2 is 3
  221. # Default: 0 - (Selected by OS)
  222. # 1+ - (Bit mask value of selected processors)
  223.  
  224. UseProcessors = 0
  225.  
  226. #
  227. # ProcessPriority
  228. # Description: Process priority setting for Windows and Linux based systems.
  229. # Details: On Linux, a nice value of -15 is used. (requires superuser).
  230. # On Windows, process is set to HIGH class.
  231. # Default: 0 - (Normal)
  232. # 1 - (High)
  233.  
  234. ProcessPriority = 0
  235.  
  236. #
  237. # Compression
  238. # Description: Compression level for client update packages.
  239. # Range: 1-9
  240. # Default: 1 - (Speed)
  241. # 9 - (Best compression)
  242.  
  243. Compression = 1
  244.  
  245. #
  246. # PlayerLimit
  247. # Description: Maximum number of players in the world. Excluding Mods, GMs and Admins.
  248. # Important: If you want to block players and only allow Mods, GMs or Admins to join the
  249. # server, use the DB field "auth.realmlist.allowedSecurityLevel".
  250. # Default: 0 - (Disabled, No limit)
  251. # 1+ - (Enabled)
  252.  
  253. PlayerLimit = 0
  254.  
  255. #
  256. # SaveRespawnTimeImmediately
  257. # Description: Save respawn time for creatures at death and gameobjects at use/open.
  258. # Default: 1 - (Enabled, Save respawn time immediately)
  259. # 0 - (Disabled, Save respawn time at grid unloading)
  260.  
  261. SaveRespawnTimeImmediately = 1
  262.  
  263. #
  264. # MaxOverspeedPings
  265. # Description: Maximum overspeed ping count before character is disconnected.
  266. # Default: 2 - (Enabled, Minimum value)
  267. # 3+ - (Enabled, More checks before kick)
  268. # 0 - (Disabled)
  269.  
  270. MaxOverspeedPings = 2
  271.  
  272. #
  273. # GridUnload
  274. # Description: Unload grids to save memory. Can be disabled if enough memory is available
  275. # to speed up moving players to new grids.
  276. # Default: 1 - (enable, Unload grids)
  277. # 0 - (disable, Do not unload grids)
  278.  
  279. GridUnload = 1
  280.  
  281. #
  282. # BaseMapLoadAllGrids
  283. # Description: Load all grids for base maps upon load. Requires GridUnload to be 0.
  284. # This will take around 5GB of ram upon server load, and will take some time
  285. # to initially load the server.
  286. # Default: 0 - (Don't pre-load all base maps, dynamically load as used)
  287. # 1 - (Preload all grids in all base maps upon load)
  288.  
  289. BaseMapLoadAllGrids = 0
  290.  
  291. #
  292. # InstanceMapLoadAllGrids
  293. # Description: Load all grids for instance maps upon load. Requires GridUnload to be 0.
  294. # Upon loading an instance map, all creatures/objects in the map will be pre-loaded
  295. # Default: 0 - (Don't pre-load all base maps, dynamically load as used)
  296. # 1 - (Preload all grids in the instance upon load)
  297.  
  298. InstanceMapLoadAllGrids = 0
  299.  
  300. #
  301. # SocketTimeOutTime
  302. # Description: Time (in milliseconds) after which a connection being idle on the character
  303. # selection screen is disconnected.
  304. # Default: 900000 - (15 minutes)
  305.  
  306. SocketTimeOutTime = 900000
  307.  
  308. #
  309. # SocketTimeOutTimeActive
  310. # Description: Time (in milliseconds) after which an idle connection is dropped while
  311. # logged into the world.
  312. # The client sends keepalive packets every 30 seconds. Values <= 30s are not recommended.
  313. # Default: 60000 - (1 minute)
  314.  
  315. SocketTimeOutTimeActive = 60000
  316.  
  317. #
  318. # SessionAddDelay
  319. # Description: Time (in microseconds) that a network thread will sleep after authentication
  320. # protocol handling before adding a connection to the world session map.
  321. # Default: 10000 - (10 milliseconds, 0.01 second)
  322.  
  323. SessionAddDelay = 10000
  324.  
  325. #
  326. # GridCleanUpDelay
  327. # Description: Time (in milliseconds) grid clean up delay.
  328. # Default: 300000 - (5 minutes)
  329.  
  330. GridCleanUpDelay = 300000
  331.  
  332. #
  333. # MapUpdateInterval
  334. # Description: Time (milliseconds) for map update interval.
  335. # Default: 100 - (0.1 second)
  336.  
  337. MapUpdateInterval = 100
  338.  
  339. #
  340. # ChangeWeatherInterval
  341. # Description: Time (in milliseconds) for weather update interval.
  342. # Default: 600000 - (10 min)
  343.  
  344. ChangeWeatherInterval = 600000
  345.  
  346. #
  347. # PlayerSaveInterval
  348. # Description: Time (in milliseconds) for player save interval.
  349. # Default: 90000 - (90 seconds)
  350.  
  351. PlayerSaveInterval = 90000
  352.  
  353. #
  354. # PlayerSave.Stats.MinLevel
  355. # Description: Minimum level for saving character stats in the database for external usage.
  356. # Default: 0 - (Disabled, Do not save character stats)
  357. # 1+ - (Enabled, Level beyond which character stats are saved)
  358.  
  359. PlayerSave.Stats.MinLevel = 0
  360.  
  361. #
  362. # PlayerSave.Stats.SaveOnlyOnLogout
  363. # Description: Save player stats only on logout.
  364. # Default: 1 - (Enabled, Only save on logout)
  365. # 0 - (Disabled, Save on every player save)
  366.  
  367. PlayerSave.Stats.SaveOnlyOnLogout = 1
  368.  
  369. #
  370. # DisconnectToleranceInterval
  371. # Description: Tolerance (in seconds) for disconnected players before reentering the queue.
  372. # Default: 0 (disabled)
  373.  
  374. DisconnectToleranceInterval = 0
  375.  
  376. #
  377. # mmap.enablePathFinding
  378. # Description: Enable/Disable pathfinding using mmaps - recommended.
  379. # Default: 0 - (Disabled)
  380. # 1 - (Enabled)
  381.  
  382. mmap.enablePathFinding = 0
  383.  
  384. #
  385. # vmap.enableLOS
  386. # vmap.enableHeight
  387. # Description: VMmap support for line of sight and height calculation.
  388. # Default: 1 - (Enabled, vmap.enableLOS)
  389. # 1 - (Enabled, vmap.enableHeight)
  390. # 0 - (Disabled)
  391.  
  392. vmap.enableLOS = 1
  393. vmap.enableHeight = 1
  394.  
  395. #
  396. # vmap.enableIndoorCheck
  397. # Description: VMap based indoor check to remove outdoor-only auras (mounts etc.).
  398. # Default: 1 - (Enabled)
  399. # 0 - (Disabled, somewhat less CPU usage)
  400.  
  401. vmap.enableIndoorCheck = 1
  402.  
  403. #
  404. # DetectPosCollision
  405. # Description: Check final move position, summon position, etc for visible collision with
  406. # other objects or walls (walls only if vmaps are enabled).
  407. # Default: 1 - (Enabled)
  408. # 0 - (Disabled, Less position precision but less CPU usage)
  409.  
  410. DetectPosCollision = 1
  411.  
  412. #
  413. # CheckGameObjectLoS
  414. # Description: Include dynamic game objects (doors, chests etc.) in line of sight checks.
  415. # This increases CPU usage somewhat.
  416. # Default: 1 - (Enabled)
  417. # 0 - (Disabled, may break some boss encounters)
  418.  
  419. CheckGameObjectLoS = 1
  420.  
  421. #
  422. # TargetPosRecalculateRange
  423. # Description: Max distance from movement target point (+moving unit size) and targeted
  424. # object (+size) after that new target movement point calculated.
  425. # Range: 0.5-5.0
  426. # Default: 1.5
  427. # 0.5 - (Minimum, Contact Range, More sensitive reaction to target movement)
  428. # 5.0 - (Maximum, Melee attack range, Less CPU usage)
  429.  
  430. TargetPosRecalculateRange = 1.5
  431.  
  432. #
  433. # UpdateUptimeInterval
  434. # Description: Update realm uptime period (in minutes).
  435. # Default: 10 - (10 minutes)
  436. # 1+
  437.  
  438. UpdateUptimeInterval = 10
  439.  
  440. #
  441. # LogDB.Opt.ClearInterval
  442. # Description: Time (in minutes) for the WUPDATE_CLEANDB timer that clears the `logs` table
  443. # of old entries.
  444. # Default: 10 - (10 minutes)
  445. # 1+
  446.  
  447. LogDB.Opt.ClearInterval = 10
  448.  
  449. #
  450. # LogDB.Opt.ClearTime
  451. # Description: Time (in seconds) for keeping old `logs` table entries.
  452. # Default: 1209600 - (Enabled, 14 days)
  453. # 0 - (Disabled, Do not clear entries)
  454.  
  455. LogDB.Opt.ClearTime = 1209600
  456.  
  457. #
  458. # MaxCoreStuckTime
  459. # Description: Time (in seconds) before the server is forced to crash if it is frozen.
  460. # Default: 0 - (Disabled)
  461. # 10+ - (Enabled, Recommended 10+)
  462.  
  463. MaxCoreStuckTime = 0
  464.  
  465. #
  466. # AddonChannel
  467. # Description: Configure the use of the addon channel through the server (some client side
  468. # addons will not work correctly with disabled addon channel)
  469. # Default: 1 - (Enabled)
  470. # 0 - (Disabled)
  471.  
  472. AddonChannel = 1
  473.  
  474. #
  475. # MapUpdate.Threads
  476. # Description: Number of threads to update maps.
  477. # Default: 1
  478.  
  479. MapUpdate.Threads = 1
  480.  
  481. #
  482. # CleanCharacterDB
  483. # Description: Clean out deprecated achievements, skills, spells and talents from the db.
  484. # Default: 0 - (Disabled)
  485. # 1 - (Enable)
  486.  
  487. CleanCharacterDB = 0
  488.  
  489. #
  490. # PersistentCharacterCleanFlags
  491. # Description: Determines the character clean flags that remain set after cleanups.
  492. # This is a bitmask value, check /doc/CharacterDBCleanup.txt for more
  493. # information.
  494. # Example: 14 - (Cleaning up skills, talents and spells will remain enabled after the
  495. # next cleanup)
  496. # Default: 0 - (All cleanup methods will be disabled after the next cleanup)
  497.  
  498. PersistentCharacterCleanFlags = 0
  499.  
  500. #
  501. # Auction.GetAllScanDelay
  502. # Description: Sets the minimum time in seconds, a single player character can perform a getall scan.
  503. # The value is only held in memory so a server restart will clear it.
  504. # Setting this to zero, will disable GetAll functions completely.
  505. # Default: 900 - (GetAll scan limited to once every 15mins per player character)
  506.  
  507. Auction.GetAllScanDelay = 900
  508.  
  509. #
  510. # Auction.SearchDelay
  511. # Description: Sets the minimum time in milliseconds (seconds x 1000), that the client must wait between
  512. # auction search operations. This can be increased if somehow Auction House activity is causing
  513. # too much load.
  514. # Default: 300 - (Time delay between auction searches set to 0.3secs)
  515.  
  516. Auction.SearchDelay = 300
  517.  
  518. #
  519. ###################################################################################################
  520.  
  521. ###################################################################################################
  522. # SERVER LOGGING
  523. #
  524. # PidFile
  525. # Description: World daemon PID file.
  526. # Example: "./world.pid" - (Enabled)
  527. # Default: "" - (Disabled)
  528.  
  529. PidFile = ""
  530.  
  531. #
  532. # PacketLogFile
  533. # Description: Binary packet logging file for the world server.
  534. # Filename extension must be .pkt to be parsable with WowPacketParser.
  535. # Example: "World.pkt" - (Enabled)
  536. # Default: "" - (Disabled)
  537.  
  538. PacketLogFile = ""
  539.  
  540. # Extended Logging system configuration moved to end of file (on purpose)
  541. #
  542. ###################################################################################################
  543.  
  544. ###################################################################################################
  545. # SERVER SETTINGS
  546. #
  547. # GameType
  548. # Description: Server realm type.
  549. # Default: 0 - (NORMAL)
  550. # 1 - (PVP)
  551. # 4 - (NORMAL)
  552. # 6 - (RP)
  553. # 8 - (RPPVP)
  554. # 16 - (FFA_PVP, Free for all pvp mode like arena PvP in all zones except rest
  555. # activated places and sanctuaries)
  556.  
  557. GameType = 0
  558.  
  559. #
  560. # RealmZone
  561. # Description: Server realm zone. Set allowed alphabet in character, etc. names.
  562. # Default 1 - (Development - any language)
  563. # 2 - (United States - extended-Latin)
  564. # 3 - (Oceanic - extended-Latin)
  565. # 4 - (Latin America - extended-Latin)
  566. # 5 - (Tournament - basic-Latin at create, any at login)
  567. # 6 - (Korea - East-Asian)
  568. # 7 - (Tournament - basic-Latin at create, any at login)
  569. # 8 - (English - extended-Latin)
  570. # 9 - (German - extended-Latin)
  571. # 10 - (French - extended-Latin)
  572. # 11 - (Spanish - extended-Latin)
  573. # 12 - (Russian - Cyrillic)
  574. # 13 - (Tournament - basic-Latin at create, any at login)
  575. # 14 - (Taiwan - East-Asian)
  576. # 15 - (Tournament - basic-Latin at create, any at login)
  577. # 16 - (China - East-Asian)
  578. # 17 - (CN1 - basic-Latin at create, any at login)
  579. # 18 - (CN2 - basic-Latin at create, any at login)
  580. # 19 - (CN3 - basic-Latin at create, any at login)
  581. # 20 - (CN4 - basic-Latin at create, any at login)
  582. # 21 - (CN5 - basic-Latin at create, any at login)
  583. # 22 - (CN6 - basic-Latin at create, any at login)
  584. # 23 - (CN7 - basic-Latin at create, any at login)
  585. # 24 - (CN8 - basic-Latin at create, any at login)
  586. # 25 - (Tournament - basic-Latin at create, any at login)
  587. # 26 - (Test Server - any language)
  588. # 27 - (Tournament - basic-Latin at create, any at login)
  589. # 28 - (QA Server - any language)
  590. # 29 - (CN9 - basic-Latin at create, any at login)
  591.  
  592. RealmZone = 1
  593.  
  594. #
  595. # StrictPlayerNames
  596. # Description: Limit player name to language specific symbol set. Prevents character
  597. # creation and forces rename request if not allowed symbols are used
  598. # Default: 0 - (Disable, Limited server timezone dependent client check)
  599. # 1 - (Enabled, Strictly basic Latin characters)
  600. # 2 - (Enabled, Strictly realm zone specific, See RealmZone setting,
  601. # Note: Client needs to have the appropriate fonts installed which support
  602. # the charset. For non-official localization, custom fonts need to be
  603. # placed in clientdir/Fonts.
  604. # 3 - (Enabled, Basic Latin characters + server timezone specific)
  605.  
  606. StrictPlayerNames = 0
  607.  
  608. #
  609. # StrictCharterNames
  610. # Description: Limit guild/arena team charter names to language specific symbol set.
  611. # Prevents charter creation if not allowed symbols are used.
  612. # Default: 0 - (Disable, Limited server timezone dependent client check)
  613. # 1 - (Enabled, Strictly basic Latin characters)
  614. # 2 - (Enabled, Strictly realm zone specific, See RealmZone setting,
  615. # Note: Client needs to have the appropriate fonts installed which support
  616. # the charset. For non-official localization, custom fonts need to be
  617. # placed in clientdir/Fonts.
  618. # 3 - (Enabled, Basic Latin characters + server timezone specific)
  619.  
  620. StrictCharterNames = 0
  621.  
  622. #
  623. # StrictPetNames
  624. # Description: Limit pet names to language specific symbol set.
  625. # Prevents pet naming if not allowed symbols are used.
  626. # Default: 0 - (Disable, Limited server timezone dependent client check)
  627. # 1 - (Enabled, Strictly basic Latin characters)
  628. # 2 - (Enabled, Strictly realm zone specific, See RealmZone setting,
  629. # Note: Client needs to have the appropriate fonts installed which support
  630. # the charset. For non-official localization, custom fonts need to be
  631. # placed in clientdir/Fonts.
  632. # 3 - (Enabled, Basic Latin characters + server timezone specific)
  633.  
  634. StrictPetNames = 0
  635.  
  636. #
  637. # DBC.Locale
  638. # Description: DBC language settings.
  639. # Default: 255 - (Auto Detect)
  640. # 0 - (English)
  641. # 1 - (Korean)
  642. # 2 - (French)
  643. # 3 - (German)
  644. # 4 - (Chinese)
  645. # 5 - (Taiwanese)
  646. # 6 - (Spanish)
  647. # 7 - (Spanish Mexico)
  648. # 8 - (Russian)
  649.  
  650. DBC.Locale = 255
  651.  
  652. #
  653. # DeclinedNames
  654. # Description: Allow Russian clients to set and use declined names.
  655. # Default: 0 - (Disabled, Except when the Russian RealmZone is set)
  656. # 1 - (Enabled)
  657.  
  658. DeclinedNames = 0
  659.  
  660. #
  661. # Expansion
  662. # Description: Allow server to use content from expansions. Checks for expansion-related
  663. # map files, client compatibility and class/race character creation.
  664. # Default: 2 - (Expansion 2)
  665. # 1 - (Expansion 1)
  666. # 0 - (Disabled, Ignore and disable expansion content (maps, races, classes)
  667.  
  668. Expansion = 2
  669.  
  670. #
  671. # MinPlayerName
  672. # Description: Minimal player name length.
  673. # Range: 1-12
  674. # Default: 2
  675.  
  676. MinPlayerName = 2
  677.  
  678. #
  679. # MinCharterName
  680. # Description: Minimal charter name length.
  681. # Range: 1-24
  682. # Default: 2
  683.  
  684. MinCharterName = 2
  685.  
  686. #
  687. # MinPetName
  688. # Description: Minimal pet name length.
  689. # Range: 1-12
  690. # Default: 2
  691.  
  692. MinPetName = 2
  693.  
  694. #
  695. # Guild.CharterCost
  696. # ArenaTeam.CharterCost.2v2
  697. # ArenaTeam.CharterCost.3v3
  698. # ArenaTeam.CharterCost.5v5
  699. # Description: Amount of money (in Copper) the petitions costs.
  700. # Default: 1000 - (10 Silver)
  701. # 800000 - (80 Gold)
  702. # 1200000 - (120 Gold)
  703. # 2000000 - (200 Gold)
  704.  
  705. Guild.CharterCost = 1000
  706. ArenaTeam.CharterCost.2v2 = 800000
  707. ArenaTeam.CharterCost.3v3 = 1200000
  708. ArenaTeam.CharterCost.5v5 = 2000000
  709.  
  710. #
  711. # MaxWhoListReturns
  712. # Description: Set the max number of players returned in the /who list and interface.
  713. # Default: 49 - (stable)
  714.  
  715. MaxWhoListReturns = 49
  716.  
  717. #
  718. # CharacterCreating.Disabled
  719. # Description: Disable character creation for players based on faction.
  720. # Default: 0 - (Enabled, All factions are allowed)
  721. # 1 - (Disabled, Alliance)
  722. # 2 - (Disabled, Horde)
  723. # 3 - (Disabled, Both factions)
  724.  
  725. CharacterCreating.Disabled = 0
  726.  
  727. #
  728. # CharacterCreating.Disabled.RaceMask
  729. # Description: Mask of races which cannot be created by players.
  730. # Example: 1536 - (1024 + 512, Blood Elf and Draenei races are disabled)
  731. # Default: 0 - (Enabled, All races are allowed)
  732. # 1 - (Disabled, Human)
  733. # 2 - (Disabled, Orc)
  734. # 4 - (Disabled, Dwarf)
  735. # 8 - (Disabled, Night Elf)
  736. # 16 - (Disabled, Undead)
  737. # 32 - (Disabled, Tauren)
  738. # 64 - (Disabled, Gnome)
  739. # 128 - (Disabled, Troll)
  740. # 512 - (Disabled, Blood Elf)
  741. # 1024 - (Disabled, Draenei)
  742.  
  743. CharacterCreating.Disabled.RaceMask = 0
  744.  
  745. #
  746. # CharacterCreating.Disabled.ClassMask
  747. # Description: Mask of classes which cannot be created by players.
  748. # Example: 288 - (32 + 256, Death Knight and Warlock classes are disabled)
  749. # Default: 0 - (Enabled, All classes are allowed)
  750. # 1 - (Disabled, Warrior)
  751. # 2 - (Disabled, Paladin)
  752. # 4 - (Disabled, Hunter)
  753. # 8 - (Disabled, Rogue)
  754. # 16 - (Disabled, Priest)
  755. # 32 - (Disabled, Death Knight)
  756. # 64 - (Disabled, Shaman)
  757. # 128 - (Disabled, Mage)
  758. # 256 - (Disabled, Warlock)
  759. # 1024 - (Disabled, Druid)
  760.  
  761. CharacterCreating.Disabled.ClassMask = 0
  762.  
  763. #
  764. # CharactersPerAccount
  765. # Description: Limit number of characters per account on all realms on this realmlist.
  766. # Important: Number must be >= CharactersPerRealm
  767. # Default: 50
  768.  
  769. CharactersPerAccount = 50
  770.  
  771. #
  772. # CharactersPerRealm
  773. # Description: Limit number of characters per account on this realm.
  774. # Range: 1-10
  775. # Default: 10 - (Client limitation)
  776.  
  777. CharactersPerRealm = 10
  778.  
  779. #
  780. # DeathKnightsPerRealm
  781. # Description: Limit number of death knight characters per account on this realm.
  782. # Range: 1-10
  783. # Default: 1
  784.  
  785. DeathKnightsPerRealm = 1
  786.  
  787. #
  788. # CharacterCreating.MinLevelForDeathKnight
  789. # Description: Limit creating death knights only for account with another
  790. # character of specific level (ignored for GM accounts).
  791. # Default: 55 - (Enabled, Requires at least another level 55 character)
  792. # 0 - (Disabled)
  793. # 1 - (Enabled, Requires at least another level 1 character)
  794.  
  795. CharacterCreating.MinLevelForDeathKnight = 55
  796.  
  797. #
  798. # SkipCinematics
  799. # Description: Disable cinematic intro at first login after character creation.
  800. # Prevents buggy intros in case of custom start location coordinates.
  801. # Default: 0 - (Show intro for each new character)
  802. # 1 - (Show intro only for first character of selected race)
  803. # 2 - (Disable intro for all classes)
  804.  
  805. SkipCinematics = 0
  806.  
  807. #
  808. # MaxPlayerLevel
  809. # Description: Maximum level that can be reached by players.
  810. # Important: Levels beyond 100 are not recommended at all.
  811. # Range: 1-255
  812. # Default: 80
  813.  
  814. MaxPlayerLevel = 80
  815.  
  816. #
  817. # MinDualSpecLevel
  818. # Description: Level requirement for Dual Talent Specialization.
  819. # Default: 40
  820.  
  821. MinDualSpecLevel = 40
  822.  
  823. #
  824. # StartPlayerLevel
  825. # Description: Starting level for characters after creation.
  826. # Range: 1-MaxPlayerLevel
  827. # Default: 1
  828.  
  829. StartPlayerLevel = 1
  830.  
  831. #
  832. # StartDeathKnightPlayerLevel
  833. # Description: Starting level for death knight characters after creation.
  834. # Range: 1-MaxPlayerLevel
  835. # Default: 55
  836.  
  837. StartDeathKnightPlayerLevel = 55
  838.  
  839. #
  840. # StartPlayerMoney
  841. # Description: Amount of money (in Copper) that a character has after creation.
  842. # Default: 0
  843. # 100 - (1 Silver)
  844.  
  845. StartPlayerMoney = 0
  846.  
  847. #
  848. # MaxHonorPoints
  849. # Description: Maximum honor points a character can have.
  850. # Default: 75000
  851.  
  852. MaxHonorPoints = 75000
  853.  
  854. #
  855. # StartHonorPoints
  856. # Description: Amount of honor points that characters have after creation.
  857. # Default: 0
  858.  
  859. StartHonorPoints = 0
  860.  
  861. #
  862. # MaxArenaPoints
  863. # Description: Maximum arena points a character can have.
  864. # Default: 10000
  865.  
  866. MaxArenaPoints = 10000
  867.  
  868. #
  869. # StartArenaPoints
  870. # Description: Amount of arena points that characters has after creation.
  871. # Default: 0
  872.  
  873. StartArenaPoints = 0
  874.  
  875. #
  876. # RecruitAFriend.MaxLevel
  877. # Description: Highest level up to which a character can benefit from the Recruit-A-Friend
  878. # experience multiplier.
  879. # Default: 60
  880.  
  881. RecruitAFriend.MaxLevel = 60
  882.  
  883. #
  884. # RecruitAFriend.MaxDifference
  885. # Description: Highest level difference between linked Recruiter and Friend benefit from
  886. # the Recruit-A-Friend experience multiplier.
  887. # Default: 4
  888.  
  889. RecruitAFriend.MaxDifference = 4
  890.  
  891. #
  892. # DisableWaterBreath
  893. # Description: Required security level for water breathing.
  894. # Default: 4 - (Disabled)
  895. # 0 - (Enabled, Everyone)
  896. # 1 - (Enabled, Mods/GMs/Admins)
  897. # 2 - (Enabled, GMs/Admins)
  898. # 3 - (Enabled, Admins)
  899.  
  900. DisableWaterBreath = 4
  901.  
  902. #
  903. # AllFlightPaths
  904. # Description: Character knows all flight paths (of both factions) after creation.
  905. # Default: 0 - (Disabled)
  906. # 1 - (Enabled)
  907.  
  908. AllFlightPaths = 0
  909.  
  910. #
  911. # InstantFlightPaths
  912. # Description: Flight paths will take players to their destination instantly instead
  913. # of making them wait while flying.
  914. # Default: 0 - (Disabled)
  915. # 1 - (Enabled)
  916.  
  917. InstantFlightPaths = 0
  918.  
  919. #
  920. # AlwaysMaxSkillForLevel
  921. # Description: Players will automatically gain max skill level when logging in or leveling
  922. # up.
  923. # Default: 0 - (Disabled)
  924. # 1 - (Enabled)
  925.  
  926. AlwaysMaxSkillForLevel = 0
  927.  
  928. #
  929. # ActivateWeather
  930. # Description: Activate the weather system.
  931. # Default: 1 - (Enabled)
  932. # 0 - (Disabled)
  933.  
  934. ActivateWeather = 1
  935.  
  936. #
  937. # CastUnstuck
  938. # Description: Allow casting the Unstuck spell using .start or unstuck button in client
  939. # help options.
  940. # Default: 1 - (Enabled)
  941. # 0 - (Disabled)
  942.  
  943. CastUnstuck = 1
  944.  
  945. #
  946. # Instance.IgnoreLevel
  947. # Description: Ignore level requirement when entering instances.
  948. # Default: 0 - (Disabled)
  949. # 1 - (Enabled)
  950.  
  951. Instance.IgnoreLevel = 0
  952.  
  953. #
  954. # Instance.IgnoreRaid
  955. # Description: Ignore raid group requirement when entering instances.
  956. # Default: 0 - (Disabled)
  957. # 1 - (Enabled)
  958.  
  959. Instance.IgnoreRaid = 0
  960.  
  961. #
  962. # Instance.ResetTimeHour
  963. # Description: Hour of the day when the global instance reset occurs.
  964. # Range: 0-23
  965. # Default: 4 - (04:00 AM)
  966.  
  967. Instance.ResetTimeHour = 4
  968.  
  969. #
  970. # Instance.UnloadDelay
  971. # Description: Time (in milliseconds) before instance maps are unloaded from memory if no
  972. # characters are inside.
  973. # Default: 1800000 - (Enabled, 30 minutes)
  974. # 0 - (Disabled, Instance maps are kept in memory until the instance
  975. # resets)
  976.  
  977. Instance.UnloadDelay = 1800000
  978.  
  979. #
  980. # InstancesResetAnnounce
  981. # Description: Announce the reset of one instance to whole party.
  982. # Default: false - (Disabled, don't show, blizzlike)
  983. # true - (Enabled, show)
  984.  
  985. InstancesResetAnnounce = false
  986.  
  987. #
  988. # Quests.EnableQuestTracker
  989. # Description: Store datas in the database about quest completion and abandonment to help finding out bugged quests.
  990. # Default: 0 - (Disabled)
  991. # 1 - (Enabled)
  992.  
  993. Quests.EnableQuestTracker = 0
  994.  
  995. #
  996. # Quests.LowLevelHideDiff
  997. # Description: Level difference between player and quest level at which quests are
  998. # considered low-level and are not shown via exclamation mark (!) at quest
  999. # givers.
  1000. # Default: 4 - (Enabled, Hide quests that have 4 levels less than the character)
  1001. # -1 - (Disabled, Show all available quest marks)
  1002.  
  1003. Quests.LowLevelHideDiff = 4
  1004.  
  1005. #
  1006. # Quests.HighLevelHideDiff
  1007. # Description: Level difference between player and quest level at which quests are
  1008. # considered high-level and are not shown via exclamation mark (!) at quest
  1009. # givers.
  1010. # Default: 7 - (Enabled, Hide quests that have 7 levels more than the character)
  1011. # -1 - (Disabled, Show all available quest marks)
  1012.  
  1013. Quests.HighLevelHideDiff = 7
  1014.  
  1015. #
  1016. # Quests.IgnoreRaid
  1017. # Description: Allow non-raid quests to be completed while in a raid group.
  1018. # Default: 0 - (Disabled)
  1019. # 1 - (Enabled)
  1020.  
  1021. Quests.IgnoreRaid = 0
  1022.  
  1023. #
  1024. # Quests.IgnoreAutoAccept
  1025. # Description: Ignore auto accept flag. Clients will have to manually accept all quests.
  1026. # Default: 0 - (Disabled, DB values determine if quest is marked auto accept or not.)
  1027. # 1 - (Enabled, clients will not be told to automatically accept any quest.)
  1028.  
  1029. Quests.IgnoreAutoAccept = 0
  1030.  
  1031. #
  1032. # Quests.IgnoreAutoComplete
  1033. # Description: Ignore auto complete flag. Clients will have to manually complete all quests.
  1034. # Default: 0 - (Disabled, DB values determine if quest is marked auto complete or not.)
  1035. # 1 - (Enabled, clients will not be told to automatically complete any quest.)
  1036.  
  1037. Quests.IgnoreAutoComplete = 0
  1038.  
  1039. #
  1040. # Quests.DailyResetTime
  1041. # Description: Hour of the day when daily quest reset occurs.
  1042. # Range: 0-23
  1043. # Default: 3 - (3:00 AM, Blizzlike)
  1044. #
  1045.  
  1046. Quests.DailyResetTime = 3
  1047.  
  1048. #
  1049. # Guild.EventLogRecordsCount
  1050. # Description: Number of log entries for guild events that are stored per guild. Old entries
  1051. # will be overwritten if the number of log entries exceed the configured value.
  1052. # High numbers prevent this behavior but may have performance impacts.
  1053. # Default: 100
  1054.  
  1055. Guild.EventLogRecordsCount = 100
  1056.  
  1057. #
  1058. # Guild.ResetHour
  1059. # Description: Hour of the day when the daily cap resets occur.
  1060. # Range: 0-23
  1061. # Default: 6 - (06:00 AM)
  1062.  
  1063. Guild.ResetHour = 6
  1064.  
  1065. #
  1066. # Guild.BankEventLogRecordsCount
  1067. # Description: Number of log entries for guild bank events that are stored per guild. Old
  1068. # entries will be overwritten if the number of log entries exceed the
  1069. # configured value. High numbers prevent this behavior but may have performance
  1070. # impacts.
  1071. # Default: 25 - (Minimum)
  1072.  
  1073. Guild.BankEventLogRecordsCount = 25
  1074.  
  1075. #
  1076. # MaxPrimaryTradeSkill
  1077. # Description: Maximum number of primary professions a character can learn.
  1078. # Range: 0-11
  1079. # Default: 2
  1080.  
  1081. MaxPrimaryTradeSkill = 2
  1082.  
  1083. #
  1084. # MinPetitionSigns
  1085. # Description: Number of required signatures on charters to create a guild.
  1086. # Range: 0-9
  1087. # Default: 9
  1088.  
  1089. MinPetitionSigns = 9
  1090.  
  1091. #
  1092. # MaxGroupXPDistance
  1093. # Description: Max distance to creature for group member to get experience at creature
  1094. # death.
  1095. # Default: 74
  1096.  
  1097. MaxGroupXPDistance = 74
  1098.  
  1099. #
  1100. # MaxRecruitAFriendBonusDistance
  1101. # Description: Max distance between character and and group to gain the Recruit-A-Friend
  1102. # XP multiplier.
  1103. # Default: 100
  1104.  
  1105. MaxRecruitAFriendBonusDistance = 100
  1106.  
  1107. #
  1108. # MailDeliveryDelay
  1109. # Description: Time (in seconds) mail delivery is delayed when sending items.
  1110. # Default: 3600 - (1 hour)
  1111.  
  1112. MailDeliveryDelay = 3600
  1113.  
  1114. #
  1115. # SkillChance.Prospecting
  1116. # Description: Allow skill increase from prospecting.
  1117. # Default: 0 - (Disabled)
  1118. # 1 - (Enabled)
  1119.  
  1120. SkillChance.Prospecting = 0
  1121.  
  1122. #
  1123. # SkillChance.Milling
  1124. # Description: Allow skill increase from milling.
  1125. # Default: 0 - (Disabled)
  1126. # 1 - (Enabled)
  1127.  
  1128. SkillChance.Milling = 0
  1129.  
  1130. #
  1131. # OffhandCheckAtSpellUnlearn
  1132. # Description: Unlearning certain spells can change offhand weapon restrictions
  1133. # for equip slots.
  1134. # Default: 1 - (Recheck offhand slot weapon at unlearning a spell)
  1135. # 0 - (Recheck offhand slot weapon only at zone update)
  1136.  
  1137. OffhandCheckAtSpellUnlearn = 1
  1138.  
  1139. #
  1140. # ClientCacheVersion
  1141. # Description: Client cache version for client cache data reset. Use any value different
  1142. # from DB and not recently been used to trigger client side cache reset.
  1143. # Default: 0 - (Use DB value from world DB version.cache_id field)
  1144.  
  1145. ClientCacheVersion = 0
  1146.  
  1147. #
  1148. # Event.Announce
  1149. # Description: Announce events.
  1150. # Default: 0 - (Disabled)
  1151. # 1 - (Enabled)
  1152.  
  1153. Event.Announce = 0
  1154.  
  1155. #
  1156. # BeepAtStart
  1157. # Description: Beep when the world server finished starting.
  1158. # Default: 1 - (Enabled)
  1159. # 0 - (Disabled)
  1160.  
  1161. BeepAtStart = 1
  1162.  
  1163. #
  1164. # Motd
  1165. # Description: Message of the Day, displayed at login. Use '@' for a newline.
  1166. # Example: "Welcome to John's Server!@This server is proud to be powered by Trinity Core."
  1167. # Default: "Welcome to a Trinity Core server."
  1168.  
  1169. Motd = "Welcome to a Trinity Core server."
  1170.  
  1171. #
  1172. # Server.LoginInfo
  1173. # Description: Display core version (.server info) on login.
  1174. # Default: 0 - (Disabled)
  1175. # 1 - (Enabled)
  1176.  
  1177. Server.LoginInfo = 0
  1178.  
  1179. #
  1180. # Command.LookupMaxResults
  1181. # Description: Number of results being displayed using a .lookup command.
  1182. # Default: 0 - (Unlimited)
  1183.  
  1184. Command.LookupMaxResults = 0
  1185.  
  1186. #
  1187. # AllowTickets
  1188. # Description: Allow/disallow sending new tickets.
  1189. # Default: 1 - (Enabled)
  1190. # 0 - (Disabled)
  1191.  
  1192. AllowTickets = 1
  1193.  
  1194. #
  1195. # DeletedCharacterTicketTrace
  1196. # Description: Keep trace of tickets opened by deleted characters
  1197. # gm_ticket.playerGuid will be 0, old GUID and character name
  1198. # will be included in gm_ticket.comment
  1199. # Default: 0 - (Disabled)
  1200. # 1 - (Enabled)
  1201.  
  1202. DeletedCharacterTicketTrace = 0
  1203.  
  1204. #
  1205. # DungeonFinder.OptionsMask
  1206. # Description: Dungeon and raid finder system.
  1207. # Value is a bitmask consisting of:
  1208. # LFG_OPTION_ENABLE_DUNGEON_FINDER = 1, Enable the dungeon finder browser
  1209. # LFG_OPTION_ENABLE_RAID_BROWSER = 2, Enable the raid browser
  1210. # Default: 1
  1211.  
  1212. DungeonFinder.OptionsMask = 1
  1213.  
  1214. #
  1215. # DBC.EnforceItemAttributes
  1216. # Description: Disallow overriding item attributes stored in DBC files with values from the
  1217. # database.
  1218. # Default: 1 - (Enabled, Enforce DBC values)
  1219. # 0 - (Disabled, Use database values)
  1220.  
  1221. DBC.EnforceItemAttributes = 1
  1222.  
  1223. #
  1224. # AccountInstancesPerHour
  1225. # Description: Controls the max amount of different instances player can enter within hour.
  1226. # Default: 5
  1227.  
  1228. AccountInstancesPerHour = 5
  1229.  
  1230. #
  1231. # Account.PasswordChangeSecurity
  1232. # Description: Controls how secure the password changes are.
  1233. # Default: 0 - None (Old and new password)
  1234. # 1 - Email (Email confirmation necessary)
  1235. # 2 - RBAC (RBAC enable or disables email confirmation per group)
  1236.  
  1237. Account.PasswordChangeSecurity = 0
  1238.  
  1239. #
  1240. # BirthdayTime
  1241. # Description: Set to date of project's birth in UNIX time. By default the date when
  1242. # TrinityCore was started (Thu Oct 2, 2008)
  1243. # Default: 1222964635
  1244. #
  1245. #
  1246.  
  1247. BirthdayTime = 1222964635
  1248.  
  1249. #
  1250. # CacheDataQueries
  1251. # Description: Server caches data queries at startup.
  1252. # Can be disabled if not enough memory is available.
  1253. # Default: 1 - (Enabled)
  1254. # 0 - (Disabled)
  1255. #
  1256. #
  1257.  
  1258. CacheDataQueries = 1
  1259.  
  1260. #
  1261. ###################################################################################################
  1262.  
  1263. ###################################################################################################
  1264. # UPDATE SETTINGS
  1265. #
  1266. # Updates.EnableDatabases
  1267. # Description: A mask that describes which databases shall be updated.
  1268. #
  1269. # Following flags are available
  1270. # DATABASE_LOGIN = 1, // Auth database
  1271. # DATABASE_CHARACTER = 2, // Character database
  1272. # DATABASE_WORLD = 4, // World database
  1273. #
  1274. # Default: 7 - (All enabled)
  1275. # 4 - (Enable world only)
  1276. # 0 - (All disabled)
  1277.  
  1278. Updates.EnableDatabases = 7
  1279.  
  1280. #
  1281. # Updates.AutoSetup
  1282. # Description: Auto populate empty databases.
  1283. # Default: 1 - (Enabled)
  1284. # 0 - (Disabled)
  1285.  
  1286. Updates.AutoSetup = 1
  1287.  
  1288. #
  1289. # Updates.Redundancy
  1290. # Description: Perform data redundancy checks through hashing
  1291. # to detect changes on sql updates and reapply it.
  1292. # Default: 1 - (Enabled)
  1293. # 0 - (Disabled)
  1294.  
  1295. Updates.Redundancy = 1
  1296.  
  1297. #
  1298. # Updates.ArchivedRedundancy
  1299. # Description: Check hashes of archived updates (slows down startup).
  1300. # Default: 0 - (Disabled)
  1301. # 1 - (Enabled)
  1302.  
  1303. Updates.ArchivedRedundancy = 0
  1304.  
  1305. #
  1306. # Updates.AllowRehash
  1307. # Description: Inserts the current file hash in the database if it is left empty.
  1308. # Useful if you want to mark a file as applied but you don't know its hash.
  1309. # Default: 1 - (Enabled)
  1310. # 0 - (Disabled)
  1311.  
  1312. Updates.AllowRehash = 1
  1313.  
  1314. #
  1315. # Updates.CleanDeadRefMaxCount
  1316. # Description: Cleans dead/ orphaned references that occur if an update was removed or renamed and edited in one step.
  1317. # It only starts the clean up if the count of the missing updates is below or equal the Updates.CleanDeadRefMaxCount value.
  1318. # This way prevents erasing of the update history due to wrong source directory state (maybe wrong branch or bad revision).
  1319. # Disable this if you want to know if the database is in a possible "dirty state".
  1320. # Default: 3 - (Enabled)
  1321. # 0 - (Disabled)
  1322. # -1 - (Enabled - unlimited)
  1323.  
  1324. Updates.CleanDeadRefMaxCount = 3
  1325.  
  1326. #
  1327. ###################################################################################################
  1328.  
  1329. ###################################################################################################
  1330. # HOTSWAP SETTINGS
  1331. #
  1332. # HotSwap.Enabled (Requires compilation with DYNAMIC_LINKING=1)
  1333. # Description: Enables dynamic script hotswapping.
  1334. # Reloads scripts on changes.
  1335. # Default: 1 - (Enabled)
  1336. # 0 - (Disabled)
  1337.  
  1338. HotSwap.Enabled = 1
  1339.  
  1340. #
  1341. # HotSwap.ScriptDir
  1342. # Description: Directory containing the script shared libraries (.dll/.so).
  1343. # Example: "/usr/local/scripts"
  1344. # Default: "scripts"
  1345.  
  1346. HotSwap.ScriptDir = "scripts"
  1347.  
  1348. # HotSwap.EnableReCompiler
  1349. # Description: Enables the dynamic script recompiler.
  1350. # Watches your script source directories and recompiles the
  1351. # script modules on changes.
  1352. # Default: 1 - (Enabled)
  1353. # 0 - (Disabled)
  1354.  
  1355. HotSwap.EnableReCompiler = 1
  1356.  
  1357. # HotSwap.EnableEarlyTermination
  1358. # Description: Terminate the build of a module when an associated
  1359. # source file was changed meanwhile.
  1360. # Default: 1 - (Enabled)
  1361. # 0 - (Disabled)
  1362.  
  1363. HotSwap.EnableEarlyTermination = 1
  1364.  
  1365. # HotSwap.EnableBuildFileRecreation
  1366. # Description: Recreate build files when sources to a module
  1367. # were added or removed.
  1368. # Default: 1 - (Enabled)
  1369. # 0 - (Disabled)
  1370.  
  1371. HotSwap.EnableBuildFileRecreation = 1
  1372.  
  1373. #
  1374. # HotSwap.EnableInstall
  1375. # Description: Enables cmake install after automatic builds have finished
  1376. # Default: 1 - (Enabled)
  1377. # 0 - (Disabled)
  1378.  
  1379. HotSwap.EnableInstall = 1
  1380.  
  1381. #
  1382. # HotSwap.EnablePrefixCorrection
  1383. # Description: Allows the core to automatic set the CMAKE_INSTALL_PREFIX
  1384. # to it's current location in the filesystem.
  1385. # Default: 1 - (Enabled)
  1386. # 0 - (Disabled)
  1387.  
  1388. HotSwap.EnablePrefixCorrection = 1
  1389.  
  1390. # HotSwap.ReCompilerBuildType
  1391. # Description: Defines the build type of the builds invoked by the recompiler.
  1392. # Default: "" - Built-in build type of the module is used.
  1393. # "Release" - Release builds only
  1394. # "Debug" - Debug builds only
  1395.  
  1396. HotSwap.ReCompilerBuildType = ""
  1397.  
  1398. #
  1399. ###################################################################################################
  1400.  
  1401. ###################################################################################################
  1402. # WARDEN SETTINGS
  1403. #
  1404. # Warden.Enabled
  1405. # Description: Enable Warden anticheat system.
  1406. # Default: 0 - (Disabled)
  1407. # 1 - (Enabled)
  1408.  
  1409. Warden.Enabled = 0
  1410.  
  1411. #
  1412. # Warden.NumMemChecks
  1413. # Description: Number of Warden memory checks that are sent to the client each cycle.
  1414. # Default: 3 - (Enabled)
  1415. # 0 - (Disabled)
  1416.  
  1417. Warden.NumMemChecks = 3
  1418.  
  1419. #
  1420. # Warden.NumOtherChecks
  1421. # Description: Number of Warden checks other than memory checks that are added to request
  1422. # each checking cycle.
  1423. # Default: 7 - (Enabled)
  1424. # 0 - (Disabled)
  1425.  
  1426. Warden.NumOtherChecks = 7
  1427.  
  1428. #
  1429. # Warden.ClientResponseDelay
  1430. # Description: Time (in seconds) before client is getting disconnecting for not responding.
  1431. # Default: 600 - (10 Minutes)
  1432. # 0 - (Disabled, client won't be kicked)
  1433.  
  1434. Warden.ClientResponseDelay = 600
  1435.  
  1436. #
  1437. # Warden.ClientCheckHoldOff
  1438. # Description: Time (in seconds) to wait before sending the next check request to the client.
  1439. # A low number increases traffic and load on client and server side.
  1440. # Default: 30 - (30 Seconds)
  1441. # 0 - (Send check as soon as possible)
  1442.  
  1443. Warden.ClientCheckHoldOff = 30
  1444.  
  1445. #
  1446. # Warden.ClientCheckFailAction
  1447. # Description: Default action being taken if a client check failed. Actions can be
  1448. # overwritten for each single check via warden_action table in characters
  1449. # database.
  1450. # Default: 0 - (Disabled, Logging only)
  1451. # 1 - (Kick)
  1452. # 2 - (Ban)
  1453.  
  1454. Warden.ClientCheckFailAction = 0
  1455.  
  1456. #
  1457. # Warden.BanDuration
  1458. # Description: Time (in seconds) an account will be banned if ClientCheckFailAction is set
  1459. # to ban.
  1460. # Default: 86400 - (24 hours)
  1461. # 0 - (Permanent ban)
  1462.  
  1463. Warden.BanDuration = 86400
  1464.  
  1465. #
  1466. ###################################################################################################
  1467.  
  1468. ###################################################################################################
  1469. # PLAYER INTERACTION
  1470. #
  1471. # AllowTwoSide.Interaction.Calendar
  1472. # Description: Allow calendar invites between factions.
  1473. # Default: 0 - (Disabled)
  1474. # 1 - (Enabled)
  1475.  
  1476. AllowTwoSide.Interaction.Calendar = 0
  1477.  
  1478. #
  1479. # AllowTwoSide.Interaction.Channel
  1480. # Description: Allow channel chat between factions.
  1481. # Default: 0 - (Disabled)
  1482. # 1 - (Enabled)
  1483.  
  1484. AllowTwoSide.Interaction.Channel = 0
  1485.  
  1486. #
  1487. # AllowTwoSide.Interaction.Group
  1488. # Description: Allow group joining between factions.
  1489. # Default: 0 - (Disabled)
  1490. # 1 - (Enabled)
  1491.  
  1492. AllowTwoSide.Interaction.Group = 0
  1493.  
  1494. #
  1495. # AllowTwoSide.Interaction.Guild
  1496. # Description: Allow guild joining between factions.
  1497. # Default: 0 - (Disabled)
  1498. # 1 - (Enabled)
  1499.  
  1500. AllowTwoSide.Interaction.Guild = 0
  1501.  
  1502. #
  1503. # AllowTwoSide.Interaction.Auction
  1504. # Description: Allow auctions between factions.
  1505. # Default: 0 - (Disabled)
  1506. # 1 - (Enabled)
  1507.  
  1508. AllowTwoSide.Interaction.Auction = 0
  1509.  
  1510. #
  1511. # AllowTwoSide.Trade
  1512. # Description: Allow trading between factions.
  1513. # Default: 0 - (Disabled)
  1514. # 1 - (Enabled)
  1515.  
  1516. AllowTwoSide.Trade = 0
  1517.  
  1518. #
  1519. # TalentsInspecting
  1520. # Description: Allow/disallow inspecting other characters' talents.
  1521. # Doesn't affect game master accounts.
  1522. # 2 - (Enabled for all characters)
  1523. # Default: 1 - (Enabled for characters of the same faction)
  1524. # 0 - (Talent inspecting is disabled)
  1525.  
  1526. TalentsInspecting = 1
  1527.  
  1528. #
  1529. ###################################################################################################
  1530.  
  1531. ###################################################################################################
  1532. # CREATURE SETTINGS
  1533. #
  1534. # ThreatRadius
  1535. # Description: Distance for creatures to evade after being pulled away from the combat
  1536. # starting point. If ThreatRadius is less than creature aggro radius then aggro
  1537. # radius will be used.
  1538. # Default: 60
  1539.  
  1540. ThreatRadius = 60
  1541.  
  1542. #
  1543. # Rate.Creature.Aggro
  1544. # Description: Aggro radius percentage.
  1545. # Default: 1 - (Enabled, 100%)
  1546. # 1.5 - (Enabled, 150%)
  1547. # 0 - (Disabled, 0%)
  1548.  
  1549. Rate.Creature.Aggro = 1
  1550.  
  1551. #
  1552. # CreatureFamilyFleeAssistanceRadius
  1553. # Description: Distance for fleeing creatures seeking assistance from other creatures.
  1554. # Default: 30 - (Enabled)
  1555. # 0 - (Disabled)
  1556.  
  1557. CreatureFamilyFleeAssistanceRadius = 30
  1558.  
  1559. #
  1560. # CreatureFamilyAssistanceRadius
  1561. # Description: Distance for creatures calling for assistance from other creatures without
  1562. # moving.
  1563. # Default: 10 - (Enabled)
  1564. # 0 - (Disabled)
  1565.  
  1566. CreatureFamilyAssistanceRadius = 10
  1567.  
  1568. #
  1569. # CreatureFamilyAssistanceDelay
  1570. # Description: Time (in milliseconds) before creature assistance call.
  1571. # Default: 1500 - (1.5 Seconds)
  1572.  
  1573. CreatureFamilyAssistanceDelay = 1500
  1574.  
  1575. #
  1576. # CreatureFamilyFleeDelay
  1577. # Description: Time (in milliseconds) during which creature can flee if no assistance was
  1578. # found.
  1579. # Default: 7000 (7 Seconds)
  1580.  
  1581. CreatureFamilyFleeDelay = 7000
  1582.  
  1583. #
  1584. # WorldBossLevelDiff
  1585. # Description: World boss level difference.
  1586. # Default: 3
  1587.  
  1588. WorldBossLevelDiff = 3
  1589.  
  1590. #
  1591. # Corpse.Decay.NORMAL
  1592. # Corpse.Decay.RARE
  1593. # Corpse.Decay.ELITE
  1594. # Corpse.Decay.RAREELITE
  1595. # Corpse.Decay.WORLDBOSS
  1596. # Description: Time (in seconds) until creature corpse will decay if not looted or skinned.
  1597. # Default: 60 - (1 Minute, Corpse.Decay.NORMAL)
  1598. # 300 - (5 Minutes, Corpse.Decay.RARE)
  1599. # 300 - (5 Minutes, Corpse.Decay.ELITE)
  1600. # 300 - (5 Minutes, Corpse.Decay.RAREELITE)
  1601. # 3600 - (1 Hour, Corpse.Decay.WORLDBOSS)
  1602.  
  1603. Corpse.Decay.NORMAL = 60
  1604. Corpse.Decay.RARE = 300
  1605. Corpse.Decay.ELITE = 300
  1606. Corpse.Decay.RAREELITE = 300
  1607. Corpse.Decay.WORLDBOSS = 3600
  1608.  
  1609. #
  1610. # Rate.Corpse.Decay.Looted
  1611. # Description: Multiplier for Corpse.Decay.* to configure how long creature corpses stay
  1612. # after they have been looted.
  1613. # Default: 0.5
  1614.  
  1615. Rate.Corpse.Decay.Looted = 0.5
  1616.  
  1617. #
  1618. # Rate.Creature.Normal.Damage
  1619. # Rate.Creature.Elite.Elite.Damage
  1620. # Rate.Creature.Elite.RARE.Damage
  1621. # Rate.Creature.Elite.RAREELITE.Damage
  1622. # Rate.Creature.Elite.WORLDBOSS.Damage
  1623. # Description: Mulitplier for creature melee damage.
  1624. # Default: 1 - (Rate.Creature.Normal.Damage)
  1625. # 1 - (Rate.Creature.Elite.Elite.Damage)
  1626. # 1 - (Rate.Creature.Elite.RARE.Damage)
  1627. # 1 - (Rate.Creature.Elite.RAREELITE.Damage)
  1628. # 1 - (Rate.Creature.Elite.WORLDBOSS.Damage)
  1629. #
  1630.  
  1631. Rate.Creature.Normal.Damage = 1
  1632. Rate.Creature.Elite.Elite.Damage = 1
  1633. Rate.Creature.Elite.RARE.Damage = 1
  1634. Rate.Creature.Elite.RAREELITE.Damage = 1
  1635. Rate.Creature.Elite.WORLDBOSS.Damage = 1
  1636.  
  1637. #
  1638. # Rate.Creature.Normal.SpellDamage
  1639. # Rate.Creature.Elite.Elite.SpellDamage
  1640. # Rate.Creature.Elite.RARE.SpellDamage
  1641. # Rate.Creature.Elite.RAREELITE.SpellDamage
  1642. # Rate.Creature.Elite.WORLDBOSS.SpellDamage
  1643. # Description: Mulitplier for creature spell damage.
  1644. # Default: 1 - (Rate.Creature.Normal.SpellDamage)
  1645. # 1 - (Rate.Creature.Elite.Elite.SpellDamage)
  1646. # 1 - (Rate.Creature.Elite.RARE.SpellDamage)
  1647. # 1 - (Rate.Creature.Elite.RAREELITE.SpellDamage)
  1648. # 1 - (Rate.Creature.Elite.WORLDBOSS.SpellDamage)
  1649.  
  1650. Rate.Creature.Normal.SpellDamage = 1
  1651. Rate.Creature.Elite.Elite.SpellDamage = 1
  1652. Rate.Creature.Elite.RARE.SpellDamage = 1
  1653. Rate.Creature.Elite.RAREELITE.SpellDamage = 1
  1654. Rate.Creature.Elite.WORLDBOSS.SpellDamage = 1
  1655.  
  1656. #
  1657. # Rate.Creature.Normal.HP
  1658. # Rate.Creature.Elite.Elite.HP
  1659. # Rate.Creature.Elite.RARE.HP
  1660. # Rate.Creature.Elite.RAREELITE.HP
  1661. # Rate.Creature.Elite.WORLDBOSS.HP
  1662. # Description: Mulitplier for creature health.
  1663. # Default: 1 - (Rate.Creature.Normal.HP)
  1664. # 1 - (Rate.Creature.Elite.Elite.HP)
  1665. # 1 - (Rate.Creature.Elite.RARE.HP)
  1666. # 1 - (Rate.Creature.Elite.RAREELITE.HP)
  1667. # 1 - (Rate.Creature.Elite.WORLDBOSS.HP)
  1668.  
  1669. Rate.Creature.Normal.HP = 1
  1670. Rate.Creature.Elite.Elite.HP = 1
  1671. Rate.Creature.Elite.RARE.HP = 1
  1672. Rate.Creature.Elite.RAREELITE.HP = 1
  1673. Rate.Creature.Elite.WORLDBOSS.HP = 1
  1674.  
  1675. #
  1676. # Creature.PickPocketRefillDelay
  1677. # Description: Time in seconds that the server will wait before refilling the pickpocket loot
  1678. # for a creature
  1679. # Default: 600
  1680.  
  1681. Creature.PickPocketRefillDelay = 600
  1682.  
  1683. #
  1684. # ListenRange.Say
  1685. # Description: Distance in which players can read say messages from creatures or
  1686. # gameobjects.
  1687. # Default: 40
  1688.  
  1689. ListenRange.Say = 40
  1690.  
  1691. #
  1692. # ListenRange.TextEmote
  1693. # Description: Distance in which players can read emotes from creatures or gameobjects.
  1694. # Default: 40
  1695.  
  1696. ListenRange.TextEmote = 40
  1697.  
  1698. #
  1699. # ListenRange.Yell
  1700. # Description: Distance in which players can read yell messages from creatures or
  1701. # gameobjects.
  1702. # Default: 300
  1703.  
  1704. ListenRange.Yell = 300
  1705.  
  1706. #
  1707. # Creature.MovingStopTimeForPlayer
  1708. # Description: Time (in milliseconds) during which creature will not move after
  1709. # interaction with player.
  1710. # Default: 180000
  1711.  
  1712. Creature.MovingStopTimeForPlayer = 180000
  1713.  
  1714. #
  1715. ###################################################################################################
  1716.  
  1717. ###################################################################################################
  1718. # SPAWN/RESPAWN SETTINGS
  1719. #
  1720. # Respawn.MinCheckIntervalMS
  1721. # Description: Minimum time that needs to pass between respawn checks for any given map.
  1722. # Default: 5000 - 5 seconds
  1723.  
  1724. Respawn.MinCheckIntervalMS = 5000
  1725.  
  1726. #
  1727. # Respawn.GuidWarnLevel
  1728. # Description: The point at which the highest guid for creatures or gameobjects in any map must reach
  1729. # before the warning logic is enabled. A restart will then be queued at the next quiet time
  1730. # The maximum guid per map is 16,777,216. So, it must be less than this value.
  1731. # Default: 12000000 - 12 million
  1732.  
  1733. Respawn.GuidWarnLevel = 12000000
  1734.  
  1735. #
  1736. # Respawn.WarningMessage
  1737. # Description: This message will be periodically shown (Frequency specified by Respawn.WarningFrequency) to
  1738. # all users of the server, once the Respawn.GuidWarnLevel has been passed, and a restart scheduled.
  1739. # It's used to warn users that there will be an out of schedule server restart soon.
  1740. # Default: "There will be an unscheduled server restart at 03:00 server time. The server will be available again shortly after."
  1741.  
  1742. Respawn.WarningMessage = "There will be an unscheduled server restart at 03:00. The server will be available again shortly after."
  1743.  
  1744. #
  1745. # Respawn.WarningFrequency
  1746. # Description: The frequency (in seconds) that the warning message will be sent to users after a quiet time restart is triggered.
  1747. # The message will repeat each time this many seconds passed until the server is restarted.
  1748. # If set to 0, no warnings will be sent.
  1749. # Default: 1800 - (30 minutes)
  1750.  
  1751. Respawn.WarningFrequency = 1800
  1752.  
  1753. #
  1754. # Respawn.GuidAlertLevel
  1755. # Description: The point at which the highest guid for creatures or gameobjects in any map must reach
  1756. # before the alert logic is enabled. A restart will then be triggered for 30 mins from that
  1757. # point. The maximum guid per map is 16,777,216. So, it must be less than this value.
  1758. # Default: 16000000 - 16 million
  1759.  
  1760. Respawn.GuidAlertLevel = 16000000
  1761.  
  1762. #
  1763. # Respawn.AlertRestartReason
  1764. # Description: The shutdown reason given when the alert level is reached. The server will use a fixed time of
  1765. # 5 minutes and the reason for shutdown will be this message
  1766. # Default: "Urgent Maintenance"
  1767.  
  1768. Respawn.AlertRestartReason = "Urgent Maintenance"
  1769.  
  1770. #
  1771. # Respawn.RestartQuietTime
  1772. # Description: The hour at which the server will be restarted after the Respawn.GuidWarnLevel
  1773. # threshold has been reached. This can be between 0 and 23. 20 will be 8pm server time
  1774. # Default: 3 - 3am
  1775.  
  1776. Respawn.RestartQuietTime = 3
  1777.  
  1778. #
  1779. # Respawn.DynamicMode
  1780. # Description: Select which mode (if any) should be used to adjust respawn of creatures.
  1781. # This will only affect creatures that have dynamic spawn rate scaling enabled in
  1782. # the spawn group table (by default, gathering nodes and quest targets with respawn time <30min
  1783. # 1 - Use number of players in zone
  1784. # Default: 0 - No dynamic respawn function
  1785.  
  1786. Respawn.DynamicMode = 0
  1787.  
  1788. #
  1789. # Respawn.DynamicEscortNPC
  1790. # Description: This switch controls the dynamic respawn system for escort NPCs not in instancable maps (base maps only).
  1791. # This will cause the respawn timer to begin when an escort event begins, and potentially
  1792. # allow multiple instances of the NPC to be alive at the same time (when combined with Respawn.DynamicMode > 0)
  1793. # 1 - Enabled
  1794. # Default: 0 - Disabled
  1795.  
  1796. Respawn.DynamicEscortNPC = 0
  1797.  
  1798. #
  1799. # Respawn.DynamicRateCreature
  1800. # Description: The rate at which the respawn time is adjusted for high player counts in a zone (for creatures).
  1801. # Up to this number of players, the respawn rate is unchanged.
  1802. # At double this number in players, you get twice as many respawns, at three times this number, three times the respawns, and so forth.
  1803. # Default: 10
  1804.  
  1805. Respawn.DynamicRateCreature = 10
  1806.  
  1807. #
  1808. # Respawn.DynamicMinimumCreature
  1809. # Description: The minimum respawn time for a creature under dynamic scaling.
  1810. # Default: 10 - (10 seconds)
  1811.  
  1812. Respawn.DynamicMinimumCreature = 10
  1813.  
  1814. #
  1815. # Respawn.DynamicRateGameObject
  1816. # Description: The rate at which the respawn time is adjusted for high player counts in a zone (for gameobjects).
  1817. # Up to this number of players, the respawn rate is unchanged.
  1818. # At double this number in players, you get twice as many respawns, at three times this number, three times the respawns, and so forth.
  1819. # Default: 10
  1820.  
  1821. Respawn.DynamicRateGameObject = 10
  1822.  
  1823. #
  1824. # Respawn.DynamicMinimumGameObject
  1825. # Description: The minimum respawn time for a gameobject under dynamic scaling.
  1826. # Default: 10 - (10 seconds)
  1827.  
  1828. Respawn.DynamicMinimumGameObject = 10
  1829.  
  1830. #
  1831. ###################################################################################################
  1832.  
  1833. ###################################################################################################
  1834. # CHAT SETTINGS
  1835. #
  1836. # ChatFakeMessagePreventing
  1837. # Description: Chat protection from creating fake messages using a lot spaces or other
  1838. # invisible symbols. Not applied to the addon language, but may break old
  1839. # addons that use normal languages for sending data to other clients.
  1840. # Default: 1 - (Enabled, Blizzlike)
  1841. # 0 - (Disabled)
  1842.  
  1843. ChatFakeMessagePreventing = 1
  1844.  
  1845. #
  1846. # ChatStrictLinkChecking.Severity
  1847. # Description: Check chat messages for ingame links to spells, items, quests, etc.
  1848. # Default: 0 - (Disabled)
  1849. # 1 - (Enabled, Check if only valid pipe commands are used, Prevents posting
  1850. # pictures.)
  1851. # 2 - (Enabled, Verify that pipe commands are used in a correct order)
  1852. # 3 - (Check if color, entry and name don't contradict each other. For this to
  1853. # work correctly, please assure that you have extracted locale DBCs of
  1854. # every language specific client playing on this server)
  1855.  
  1856. ChatStrictLinkChecking.Severity = 0
  1857.  
  1858. #
  1859. # ChatStrictLinkChecking.Kick
  1860. # Description: Defines what should be done if a message is considered to contain invalid
  1861. # pipe commands.
  1862. # Default: 0 - (Silently ignore message)
  1863. # 1 - (Disconnect players who sent malformed messages)
  1864.  
  1865. ChatStrictLinkChecking.Kick = 0
  1866.  
  1867. #
  1868. # ChatFlood.MessageCount
  1869. # Description: Chat flood protection, number of messages before player gets muted.
  1870. # Default: 10 - (Enabled)
  1871. # 0 - (Disabled)
  1872.  
  1873. ChatFlood.MessageCount = 10
  1874.  
  1875. #
  1876. # ChatFlood.MessageDelay
  1877. # Description: Time (in seconds) between messages to be counted into ChatFlood.MessageCount.
  1878. # Default: 1
  1879.  
  1880. ChatFlood.MessageDelay = 1
  1881.  
  1882. #
  1883. # ChatFlood.MuteTime
  1884. # Description: Time (in seconds) characters get muted for violating ChatFlood.MessageCount.
  1885. # Default: 10
  1886.  
  1887. ChatFlood.MuteTime = 10
  1888.  
  1889. #
  1890. # Channel.RestrictedLfg
  1891. # Description: Restrict LookupForGroup channel to characters registered in the LFG tool.
  1892. # Default: 1 - (Enabled, Allow join to channel only if registered in LFG)
  1893. # 0 - (Disabled, Allow join to channel in any time)
  1894.  
  1895. Channel.RestrictedLfg = 1
  1896.  
  1897. #
  1898. # ChatLevelReq.Channel
  1899. # ChatLevelReq.Whisper
  1900. # ChatLevelReq.Emote
  1901. # ChatLevelReq.Say
  1902. # ChatLevelReq.Yell
  1903. # Description: Level requirement for characters to be able to use chats.
  1904. # Default: 1
  1905.  
  1906. ChatLevelReq.Channel = 1
  1907. ChatLevelReq.Whisper = 1
  1908. ChatLevelReq.Emote = 1
  1909. ChatLevelReq.Say = 1
  1910. ChatLevelReq.Yell = 1
  1911.  
  1912. #
  1913. # PartyLevelReq
  1914. # Description: Minimum level at which players can invite to group, even if they aren't on
  1915. # the invitee friends list. (Players who are on that friend list can always
  1916. # invite despite having lower level)
  1917. # Default: 1
  1918.  
  1919. PartyLevelReq = 1
  1920.  
  1921. #
  1922. # PreserveCustomChannels
  1923. # Description: Store custom chat channel settings like password, automatic ownership handout
  1924. # or ban list in the database. Needs to be enabled to save custom
  1925. # world/trade/etc. channels that have automatic ownership handout disabled.
  1926. # (.channel set ownership $channel off)
  1927. # Default: 0 - (Disabled, Blizzlike, Channel settings are lost if last person left)
  1928. # 1 - (Enabled)
  1929.  
  1930. PreserveCustomChannels = 1
  1931.  
  1932. #
  1933. # PreserveCustomChannelDuration
  1934. # Description: Time (in days) that needs to pass before the customs chat channels get
  1935. # cleaned up from the database. Only channels with ownership handout enabled
  1936. # (default behavior) will be cleaned.
  1937. # Default: 14 - (Enabled, Clean channels that haven't been used for 14 days)
  1938. # 0 - (Disabled, Infinite channel storage)
  1939.  
  1940. PreserveCustomChannelDuration = 14
  1941.  
  1942. #
  1943. # PartyRaidWarnings
  1944. # Description: Allow any user to use raid warnings when in a 5-man party.
  1945. # Default: 0 - (Disabled, Blizzlike)
  1946. # 1 - (Enabled)
  1947.  
  1948. PartyRaidWarnings = 0
  1949.  
  1950. #
  1951. ###################################################################################################
  1952.  
  1953. ###################################################################################################
  1954. # GAME MASTER SETTINGS
  1955. #
  1956. # GM.LoginState
  1957. # Description: GM mode at login.
  1958. # Default: 2 - (Last save state)
  1959. # 0 - (Disable)
  1960. # 1 - (Enable)
  1961.  
  1962. GM.LoginState = 2
  1963.  
  1964. #
  1965. # GM.Visible
  1966. # Description: GM visibility at login.
  1967. # Default: 2 - (Last save state)
  1968. # 0 - (Invisible)
  1969. # 1 - (Visible)
  1970.  
  1971. GM.Visible = 2
  1972.  
  1973. #
  1974. # GM.Chat
  1975. # Description: GM chat mode at login.
  1976. # Default: 2 - (Last save state)
  1977. # 0 - (Disable)
  1978. # 1 - (Enable)
  1979.  
  1980. GM.Chat = 2
  1981.  
  1982. #
  1983. # GM.WhisperingTo
  1984. # Description: Is GM accepting whispers from player by default or not.
  1985. # Default: 2 - (Last save state)
  1986. # 0 - (Disable)
  1987. # 1 - (Enable)
  1988.  
  1989. GM.WhisperingTo = 2
  1990.  
  1991. #
  1992. # GM.FreezeAuraDuration
  1993. # Description: Allows to set a default duration to the Freeze Aura
  1994. # applied on players when using the .freeze command
  1995. # Default: 0 - (Original aura duration. Lasts until the .unfreeze command is used)
  1996. # N - (Aura duration if unspecified in .freeze command, in seconds)
  1997.  
  1998. GM.FreezeAuraDuration = 0
  1999.  
  2000. #
  2001. # GM.InGMList.Level
  2002. # Description: Maximum GM level shown in GM list (if enabled) in non-GM state (.gm off).
  2003. # Default: 3 - (Anyone)
  2004. # 0 - (Only players)
  2005. # 1 - (Only moderators)
  2006. # 2 - (Only gamemasters)
  2007.  
  2008. GM.InGMList.Level = 3
  2009.  
  2010. #
  2011. # GM.InWhoList.Level
  2012. # Description: Max GM level showed in who list (if visible).
  2013. # Default: 3 - (Anyone)
  2014. # 0 - (Only players)
  2015. # 1 - (Only moderators)
  2016. # 2 - (Only gamemasters)
  2017.  
  2018. GM.InWhoList.Level = 3
  2019.  
  2020. #
  2021. # GM.StartLevel
  2022. # Description: GM character starting level.
  2023. # Default: 1
  2024.  
  2025. GM.StartLevel = 1
  2026.  
  2027. #
  2028. # GM.AllowInvite
  2029. # Description: Allow players to invite GM characters.
  2030. # Default: 0 - (Disabled)
  2031. # 1 - (Enabled)
  2032.  
  2033. GM.AllowInvite = 0
  2034.  
  2035. #
  2036. # GM.LowerSecurity
  2037. # Description: Allow lower security levels to use commands on higher security level
  2038. # characters.
  2039. # Default: 0 - (Disabled)
  2040. # 1 - (Enabled)
  2041.  
  2042. GM.LowerSecurity = 0
  2043.  
  2044. #
  2045. # GM.TicketSystem.ChanceOfGMSurvey
  2046. # Description: Chance of sending a GM survey after ticket completion.
  2047. # Default: 50 - (Enabled)
  2048. # 0 - (Disabled)
  2049.  
  2050. GM.TicketSystem.ChanceOfGMSurvey = 50
  2051.  
  2052. #
  2053. # GM.ForceShutdownThreshold
  2054. # Description: Minimum shutdown time in seconds before 'force' is required if other players are connected.
  2055. # Default: 30
  2056.  
  2057. GM.ForceShutdownThreshold = 30
  2058.  
  2059. #
  2060. ###################################################################################################
  2061.  
  2062. ###################################################################################################
  2063. # VISIBILITY AND DISTANCES
  2064. #
  2065. # Visibility.GroupMode
  2066. # Description: Group visibility modes. Defines which groups can aways detect invisible
  2067. # characters of the same raid, group or faction.
  2068. # Default: 1 - (Raid)
  2069. # 0 - (Party)
  2070. # 2 - (Faction)
  2071. # 3 - (None)
  2072.  
  2073. Visibility.GroupMode = 1
  2074.  
  2075. #
  2076. # Visibility.Distance.Continents
  2077. # Visibility.Distance.Instances
  2078. # Visibility.Distance.BGArenas
  2079. # Description: Visibility distance to see other players or gameobjects.
  2080. # Visibility on continents on retail ~90 yards. In BG/Arenas ~533.
  2081. # For instances default ~170.
  2082. # Max limited by grid size: 533.33333
  2083. # Min limit is max aggro radius (45) * Rate.Creature.Aggro
  2084. # Default: 90 - (Visibility.Distance.Continents)
  2085. # 170 - (Visibility.Distance.Instances)
  2086. # 533 - (Visibility.Distance.BGArenas)
  2087.  
  2088. Visibility.Distance.Continents = 90
  2089. Visibility.Distance.Instances = 170
  2090. Visibility.Distance.BGArenas = 533
  2091.  
  2092. #
  2093. # Visibility.Notify.Period.OnContinents
  2094. # Visibility.Notify.Period.InInstances
  2095. # Visibility.Notify.Period.InBGArenas
  2096. # Description: Time (in milliseconds) for visibility update period. Lower values may have
  2097. # performance impact.
  2098. # Default: 1000 - (Visibility.Notify.Period.OnContinents)
  2099. # 1000 - (Visibility.Notify.Period.InInstances)
  2100. # 1000 - (Visibility.Notify.Period.InBGArenas)
  2101.  
  2102. Visibility.Notify.Period.OnContinents = 1000
  2103. Visibility.Notify.Period.InInstances = 1000
  2104. Visibility.Notify.Period.InBGArenas = 1000
  2105.  
  2106. #
  2107. ###################################################################################################
  2108.  
  2109. ###################################################################################################
  2110. # SERVER RATES
  2111. #
  2112. # Rate.Health
  2113. # Rate.Mana
  2114. # Rate.Rage.Income
  2115. # Rate.Rage.Loss
  2116. # Rate.RunicPower.Income
  2117. # Rate.RunicPower.Loss
  2118. # Rate.Focus
  2119. # Rate.Energy
  2120. # Rate.Loyalty
  2121. # Description: Multiplier to configure health, mana, incoming rage, loss of rage, focus
  2122. # energy and loyalty increase or decrease.
  2123. # Default: 1 - (Rate.Health)
  2124. # 1 - (Rate.Mana)
  2125. # 1 - (Rate.Rage.Income)
  2126. # 1 - (Rate.Rage.Loss)
  2127. # 1 - (Rate.RunicPower.Income)
  2128. # 1 - (Rate.RunicPower.Loss)
  2129. # 1 - (Rate.Focus)
  2130. # 1 - (Rate.Energy)
  2131. # 1 - (Rate.Loyalty)
  2132.  
  2133. Rate.Health = 1
  2134. Rate.Mana = 1
  2135. Rate.Rage.Income = 1
  2136. Rate.Rage.Loss = 1
  2137. Rate.RunicPower.Income = 1
  2138. Rate.RunicPower.Loss = 1
  2139. Rate.Focus = 1
  2140. Rate.Energy = 1
  2141. Rate.Loyalty = 1
  2142.  
  2143. #
  2144. # Rate.Skill.Discovery
  2145. # Description: Multiplier for skill discovery.
  2146. # Default: 1
  2147.  
  2148. Rate.Skill.Discovery = 1
  2149.  
  2150. #
  2151. # Rate.Drop.Item.Poor
  2152. # Rate.Drop.Item.Normal
  2153. # Rate.Drop.Item.Uncommon
  2154. # Rate.Drop.Item.Rare
  2155. # Rate.Drop.Item.Epic
  2156. # Rate.Drop.Item.Legendary
  2157. # Rate.Drop.Item.Artifact
  2158. # Rate.Drop.Item.Referenced
  2159. # Rate.Drop.Money
  2160. # Description: Drop rates for money and items based on quality.
  2161. # Default: 1 - (Rate.Drop.Item.Poor)
  2162. # 1 - (Rate.Drop.Item.Normal)
  2163. # 1 - (Rate.Drop.Item.Uncommon)
  2164. # 1 - (Rate.Drop.Item.Rare)
  2165. # 1 - (Rate.Drop.Item.Epic)
  2166. # 1 - (Rate.Drop.Item.Legendary)
  2167. # 1 - (Rate.Drop.Item.Artifact)
  2168. # 1 - (Rate.Drop.Item.Referenced)
  2169. # 1 - (Rate.Drop.Money)
  2170.  
  2171. Rate.Drop.Item.Poor = 1
  2172. Rate.Drop.Item.Normal = 1
  2173. Rate.Drop.Item.Uncommon = 1
  2174. Rate.Drop.Item.Rare = 1
  2175. Rate.Drop.Item.Epic = 1
  2176. Rate.Drop.Item.Legendary = 1
  2177. Rate.Drop.Item.Artifact = 1
  2178. Rate.Drop.Item.Referenced = 1
  2179. Rate.Drop.Money = 1
  2180.  
  2181. #
  2182. # Rate.Drop.Item.ReferencedAmount
  2183. # Description: Multiplier for referenced loot amount.
  2184. # Default: 1
  2185.  
  2186. Rate.Drop.Item.ReferencedAmount = 1
  2187.  
  2188. #
  2189. # Rate.XP.Kill
  2190. # Rate.XP.Quest
  2191. # Rate.XP.Explore
  2192. # Description: Experience rates.
  2193. # Default: 1 - (Rate.XP.Kill, affects only kills outside of Battlegrounds)
  2194. # 1 - (Rate.XP.Quest)
  2195. # 1 - (Rate.XP.Explore)
  2196.  
  2197. Rate.XP.Kill = 1
  2198. Rate.XP.Quest = 1
  2199. Rate.XP.Explore = 1
  2200.  
  2201. #
  2202. # Rate.XP.BattlegroundKill
  2203. # Description: Experience rate for honorable kills in battlegrounds,
  2204. # it works when Battleground.GiveXPForKills = 1
  2205. # Default: 1
  2206.  
  2207. Rate.XP.BattlegroundKill = 1
  2208.  
  2209. #
  2210. # Rate.Quest.Money.Reward
  2211. # Rate.Quest.Money.Max.Level.Reward
  2212. # Description: Multiplier for money quest rewards. Can not be below 0.
  2213. # Default: 1
  2214.  
  2215. Rate.Quest.Money.Reward = 1
  2216. Rate.Quest.Money.Max.Level.Reward = 1
  2217.  
  2218. #
  2219. # Rate.RepairCost
  2220. # Description: Repair cost rate.
  2221. # Default: 1
  2222.  
  2223. Rate.RepairCost = 1
  2224.  
  2225. #
  2226. # Rate.Rest.InGame
  2227. # Rate.Rest.Offline.InTavernOrCity
  2228. # Rate.Rest.Offline.InWilderness
  2229. # Description: Resting points grow rates.
  2230. # Default: 1 - (Rate.Rest.InGame)
  2231. # 1 - (Rate.Rest.Offline.InTavernOrCity)
  2232. # 1 - (Rate.Rest.Offline.InWilderness)
  2233.  
  2234. Rate.Rest.InGame = 1
  2235. Rate.Rest.Offline.InTavernOrCity = 1
  2236. Rate.Rest.Offline.InWilderness = 1
  2237.  
  2238. #
  2239. # Rate.Damage.Fall
  2240. # Description: Damage after fall rate.
  2241. # Default: 1
  2242.  
  2243. Rate.Damage.Fall = 1
  2244.  
  2245. #
  2246. # Rate.Auction.Time
  2247. # Rate.Auction.Deposit
  2248. # Rate.Auction.Cut
  2249. # Description: Auction rates (auction time, deposit get at auction start,
  2250. # auction cut from price at auction end).
  2251. # Default: 1 - (Rate.Auction.Time)
  2252. # 1 - (Rate.Auction.Deposit)
  2253. # 1 - (Rate.Auction.Cut)
  2254.  
  2255. Rate.Auction.Time = 1
  2256. Rate.Auction.Deposit = 1
  2257. Rate.Auction.Cut = 1
  2258.  
  2259. #
  2260. # Rate.Honor
  2261. # Description: Honor gain rate.
  2262. # Default: 1
  2263.  
  2264. Rate.Honor = 1
  2265.  
  2266. #
  2267. # Rate.ArenaPoints
  2268. # Description: Arena points gain rate.
  2269. # Default: 1
  2270.  
  2271. Rate.ArenaPoints = 1
  2272.  
  2273. #
  2274. # Rate.Talent
  2275. # Description: Talent point rate.
  2276. # Default: 1
  2277.  
  2278. Rate.Talent = 1
  2279.  
  2280. #
  2281. # Rate.Reputation.Gain
  2282. # Description: Reputation gain rate.
  2283. # Default: 1
  2284.  
  2285. Rate.Reputation.Gain = 1
  2286.  
  2287. #
  2288. # Rate.Reputation.LowLevel.Kill
  2289. # Description: Reputation gain from killing low level (grey) creatures.
  2290. # Default: 1
  2291.  
  2292. Rate.Reputation.LowLevel.Kill = 1
  2293.  
  2294. #
  2295. # Rate.Reputation.LowLevel.Quest
  2296. # Description: Reputation gain rate.
  2297. # Default: 1
  2298.  
  2299. Rate.Reputation.LowLevel.Quest = 1
  2300.  
  2301. #
  2302. # Rate.Reputation.RecruitAFriendBonus
  2303. # Description: Reputation bonus rate for recruit-a-friend.
  2304. # Default: 0.1
  2305.  
  2306. Rate.Reputation.RecruitAFriendBonus = 0.1
  2307.  
  2308. #
  2309. # Rate.MoveSpeed
  2310. # Description: Movement speed rate.
  2311. # Default: 1
  2312.  
  2313. Rate.MoveSpeed = 1
  2314.  
  2315. #
  2316. # Rate.InstanceResetTime
  2317. # Description: Multiplier for the rate between global raid/heroic instance resets
  2318. # (dbc value). Higher value increases the time between resets,
  2319. # lower value lowers the time, you need clean instance_reset in
  2320. # characters db in order to let new values work.
  2321. # Default: 1
  2322.  
  2323. Rate.InstanceResetTime = 1
  2324.  
  2325. #
  2326. # SkillGain.Crafting
  2327. # SkillGain.Defense
  2328. # SkillGain.Gathering
  2329. # SkillGain.Weapon
  2330. # Description: Crafting/defense/gathering/weapon skills gain rate.
  2331. # Default: 1 - (SkillGain.Crafting)
  2332. # 1 - (SkillGain.Defense)
  2333. # 1 - (SkillGain.Gathering)
  2334. # 1 - (SkillGain.Weapon)
  2335.  
  2336. SkillGain.Crafting = 1
  2337. SkillGain.Defense = 1
  2338. SkillGain.Gathering = 1
  2339. SkillGain.Weapon = 1
  2340.  
  2341. #
  2342. # SkillChance.Orange
  2343. # SkillChance.Yellow
  2344. # SkillChance.Green
  2345. # SkillChance.Grey
  2346. # Description: Chance to increase skill based on recipe color.
  2347. # Default: 100 - (SkillChance.Orange)
  2348. # 75 - (SkillChance.Yellow)
  2349. # 25 - (SkillChance.Green)
  2350. # 0 - (SkillChance.Grey)
  2351.  
  2352. SkillChance.Orange = 100
  2353. SkillChance.Yellow = 75
  2354. SkillChance.Green = 25
  2355. SkillChance.Grey = 0
  2356.  
  2357. #
  2358. # SkillChance.MiningSteps
  2359. # SkillChance.SkinningSteps
  2360. # Description: Skinning and Mining chance decreases with skill level.
  2361. # Default: 0 - (Disabled)
  2362. # 75 - (In 2 times each 75 skill points)
  2363.  
  2364. SkillChance.MiningSteps = 0
  2365. SkillChance.SkinningSteps = 0
  2366.  
  2367. #
  2368. # DurabilityLoss.InPvP
  2369. # Description: Durability loss on death during PvP.
  2370. # Default: 0 - (Disabled)
  2371. # 1 - (Enabled)
  2372.  
  2373. DurabilityLoss.InPvP = 0
  2374.  
  2375. #
  2376. # DurabilityLoss.OnDeath
  2377. # Description: Durability loss percentage on death.
  2378. # Default: 10
  2379.  
  2380. DurabilityLoss.OnDeath = 10
  2381.  
  2382. #
  2383. # DurabilityLossChance.Damage
  2384. # Description: Chance to lose durability on one equipped item from damage.
  2385. # Default: 0.5 - (100/0.5 = 200, Each 200 damage one equipped item will use durability)
  2386.  
  2387. DurabilityLossChance.Damage = 0.5
  2388.  
  2389. #
  2390. # DurabilityLossChance.Absorb
  2391. # Description: Chance to lose durability on one equipped armor item when absorbing damage.
  2392. # Default: 0.5 - (100/0.5 = 200, Each 200 absorbed damage one equipped item will lose
  2393. # durability)
  2394.  
  2395. DurabilityLossChance.Absorb = 0.5
  2396.  
  2397. #
  2398. # DurabilityLossChance.Parry
  2399. # Description: Chance to lose durability on main weapon when parrying attacks.
  2400. # Default: 0.05 - (100/0.05 = 2000, Each 2000 parried damage the main weapon will lose
  2401. # durability)
  2402.  
  2403. DurabilityLossChance.Parry = 0.05
  2404.  
  2405. #
  2406. # DurabilityLossChance.Block
  2407. # Description: Chance to lose durability on shield when blocking attacks.
  2408. # Default: 0.05 - (100/0.05 = 2000, Each 2000 blocked damage the shield will lose
  2409. # durability)
  2410.  
  2411. DurabilityLossChance.Block = 0.05
  2412.  
  2413. #
  2414. # Death.SicknessLevel
  2415. # Description: Starting level for resurrection sickness.
  2416. # Example: 11 - (Level 1-10 characters will not be affected,
  2417. # Level 11-19 characters will be affected for 1 minute,
  2418. # Level 20-MaxPlayerLevel characters will be affected for 10 minutes)
  2419. # Default: 11 - (Enabled, See Example)
  2420. # MaxPlayerLevel+1 - (Disabled)
  2421. # -10 - (Enabled, Level 1+ characters have 10 minute duration)
  2422.  
  2423. Death.SicknessLevel = 11
  2424.  
  2425. #
  2426. # Death.CorpseReclaimDelay.PvP
  2427. # Death.CorpseReclaimDelay.PvE
  2428. # Description: Increase corpse reclaim delay at PvP/PvE deaths.
  2429. # Default: 1 - (Enabled)
  2430. # 0 - (Disabled)
  2431.  
  2432. Death.CorpseReclaimDelay.PvP = 1
  2433. Death.CorpseReclaimDelay.PvE = 0
  2434.  
  2435. #
  2436. # Death.Bones.World
  2437. # Death.Bones.BattlegroundOrArena
  2438. # Description: Create bones instead of corpses at resurrection in normal zones, instances,
  2439. # battleground or arenas.
  2440. # Default: 1 - (Enabled, Death.Bones.World)
  2441. # 1 - (Enabled, Death.Bones.BattlegroundOrArena)
  2442. # 0 - (Disabled)
  2443.  
  2444. Death.Bones.World = 1
  2445. Death.Bones.BattlegroundOrArena = 1
  2446.  
  2447. #
  2448. # Die.Command.Mode
  2449. # Description: Do not trigger things like loot from .die command.
  2450. # Default: 1 - (Enabled)
  2451. # 0 - (Disabled)
  2452.  
  2453. Die.Command.Mode = 1
  2454.  
  2455. #
  2456. ###################################################################################################
  2457.  
  2458. ###################################################################################################
  2459. # STATS LIMITS
  2460. #
  2461. # Stats.Limits.Enable
  2462. # Description: Enable or disable stats system.
  2463. # Default: 0 - Disabled
  2464.  
  2465. Stats.Limits.Enable = 0
  2466.  
  2467. #
  2468. # Stats.Limit.[STAT]
  2469. # Description: Set percentage limit for dodge, parry, block and crit rating.
  2470. # Default: 95.0 (95%)
  2471.  
  2472. Stats.Limits.Dodge = 95.0
  2473. Stats.Limits.Parry = 95.0
  2474. Stats.Limits.Block = 95.0
  2475. Stats.Limits.Crit = 95.0
  2476.  
  2477. #
  2478. ###################################################################################################
  2479.  
  2480. ###################################################################################################
  2481. # AUTO BROADCAST
  2482. #
  2483. # AutoBroadcast.On
  2484. # Description: Enable auto broadcast.
  2485. # Default: 0 - (Disabled)
  2486. # 1 - (Enabled)
  2487.  
  2488. AutoBroadcast.On = 0
  2489.  
  2490. #
  2491. # AutoBroadcast.Center
  2492. # Description: Auto broadcasting display method.
  2493. # Default: 0 - (Announce)
  2494. # 1 - (Notify)
  2495. # 2 - (Both)
  2496.  
  2497. AutoBroadcast.Center = 0
  2498.  
  2499. #
  2500. # AutoBroadcast.Timer
  2501. # Description: Timer (in milliseconds) for auto broadcasts.
  2502. # Default: 600000 - (10 minutes)
  2503.  
  2504. AutoBroadcast.Timer = 600000
  2505.  
  2506. #
  2507. ###################################################################################################
  2508.  
  2509. ###################################################################################################
  2510. # BATTLEGROUND CONFIG
  2511. #
  2512. # Battleground.CastDeserter
  2513. # Description: Cast Deserter spell at players who leave battlegrounds in progress.
  2514. # Default: 1 - (Enabled)
  2515. # 0 - (Disabled)
  2516.  
  2517. Battleground.CastDeserter = 1
  2518.  
  2519. #
  2520. # Battleground.QueueAnnouncer.Enable
  2521. # Description: Announce battleground queue status to chat.
  2522. # Default: 0 - (Disabled)
  2523. # 1 - (Enabled)
  2524.  
  2525. Battleground.QueueAnnouncer.Enable = 0
  2526.  
  2527. #
  2528. # Battleground.QueueAnnouncer.PlayerOnly
  2529. # Description: Battleground queue announcement type.
  2530. # Default: 0 - (System message, Anyone can see it)
  2531. # 1 - (Private, Only queued players can see it)
  2532.  
  2533. Battleground.QueueAnnouncer.PlayerOnly = 0
  2534.  
  2535. #
  2536. # Battleground.StoreStatistics.Enable
  2537. # Description: Store Battleground scores in the database.
  2538. # Default: 0 - (Disabled)
  2539. # 1 - (Enabled)
  2540.  
  2541. Battleground.StoreStatistics.Enable = 0
  2542.  
  2543. #
  2544. # Battleground.TrackDeserters.Enable
  2545. # Description: Track deserters of Battlegrounds.
  2546. # Default: 0 - (Disabled)
  2547. # 1 - (Enabled)
  2548.  
  2549. Battleground.TrackDeserters.Enable = 0
  2550.  
  2551. #
  2552. # Battleground.InvitationType
  2553. # Description: Set Battleground invitation type.
  2554. # Default: 0 - (Normal, Invite as much players to battlegrounds as queued,
  2555. # Don't bother with balance)
  2556. # 1 - (Experimental, Don't allow to invite much more players
  2557. # of one faction)
  2558. # 2 - (Experimental, Try to have even teams)
  2559.  
  2560. Battleground.InvitationType = 0
  2561.  
  2562. #
  2563. # Battleground.PrematureFinishTimer
  2564. # Description: Time (in milliseconds) before battleground will end prematurely if there are
  2565. # not enough players on one team. (Values defined in battleground template)
  2566. # Default: 300000 - (Enabled, 5 minutes)
  2567. # 0 - (Disabled, Not recommended)
  2568.  
  2569. Battleground.PrematureFinishTimer = 300000
  2570.  
  2571. #
  2572. # Battleground.PremadeGroupWaitForMatch
  2573. # Description: Time (in milliseconds) a pre-made group has to wait for matching group of the
  2574. # other faction.
  2575. # Default: 1800000 - (Enabled, 30 minutes)
  2576. # 0 - (Disabled, Not recommended)
  2577.  
  2578. Battleground.PremadeGroupWaitForMatch = 1800000
  2579.  
  2580. #
  2581. # Battleground.GiveXPForKills
  2582. # Description: Give experience for honorable kills in battlegrounds,
  2583. # the rate can be changed in the Rate.XP.BattlegroundKill setting.
  2584. # Default: 0 - (Disabled)
  2585. # 1 - (Enabled)
  2586.  
  2587. Battleground.GiveXPForKills = 0
  2588.  
  2589. #
  2590. # Battleground.Random.ResetHour
  2591. # Description: Hour of the day when the global instance resets occur.
  2592. # Range: 0-23
  2593. # Default: 6 - (06:00 AM)
  2594.  
  2595. Battleground.Random.ResetHour = 6
  2596.  
  2597. #
  2598. # Battleground.RewardWinnerHonorFirst
  2599. # Battleground.RewardWinnerArenaFirst
  2600. # Battleground.RewardWinnerHonorLast
  2601. # Battleground.RewardWinnerArenaLast
  2602. # Battleground.RewardLoserHonorFirst
  2603. # Battleground.RewardLoserHonorLast
  2604. # Description: Random Battlegrounds / call to the arms rewards.
  2605. # Default: 30 - Battleground.RewardWinnerHonorFirst
  2606. # 25 - Battleground.RewardWinnerArenaFirst
  2607. # 15 - Battleground.RewardWinnerHonorLast
  2608. # 0 - Battleground.RewardWinnerArenaLast
  2609. # 5 - Battleground.RewardLoserHonorFirst
  2610. # 5 - Battleground.RewardLoserHonorLast
  2611. #
  2612.  
  2613. Battleground.RewardWinnerHonorFirst = 30
  2614. Battleground.RewardWinnerArenaFirst = 25
  2615. Battleground.RewardWinnerHonorLast = 15
  2616. Battleground.RewardWinnerArenaLast = 0
  2617. Battleground.RewardLoserHonorFirst = 5
  2618. Battleground.RewardLoserHonorLast = 5
  2619.  
  2620. #
  2621. # Battleground.ReportAFK
  2622. # Description: Number of reports needed to kick someone AFK from Battleground.
  2623. # Range: 1-9
  2624. # Default: 3
  2625.  
  2626. Battleground.ReportAFK = 3
  2627.  
  2628. #
  2629. ###################################################################################################
  2630.  
  2631. ###################################################################################################
  2632. # BATTLEFIELD CONFIG
  2633. #
  2634. # Wintergrasp.Enable
  2635. # Description: Enable the Wintergrasp battlefield.
  2636. # Default: 0 - (Disabled)
  2637. # 1 - (Enabled, Experimental as in incomplete, bugged and with crashes)
  2638.  
  2639. Wintergrasp.Enable = 0
  2640.  
  2641. #
  2642. # Wintergrasp.PlayerMax
  2643. # Description: Maximum number of players allowed in Wintergrasp.
  2644. # Default: 100
  2645.  
  2646. Wintergrasp.PlayerMax = 100
  2647.  
  2648. #
  2649. # Wintergrasp.PlayerMin
  2650. # Description: Minimum number of players required for Wintergrasp.
  2651. # Default: 0
  2652.  
  2653. Wintergrasp.PlayerMin = 0
  2654.  
  2655. #
  2656. # Wintergrasp.PlayerMinLvl
  2657. # Description: Required character level for the Wintergrasp battle.
  2658. # Default: 77
  2659.  
  2660. Wintergrasp.PlayerMinLvl = 77
  2661.  
  2662. #
  2663. # Wintergrasp.BattleTimer
  2664. # Description: Time (in minutes) for the Wintergrasp battle to last.
  2665. # Default: 30
  2666.  
  2667. Wintergrasp.BattleTimer = 30
  2668.  
  2669. #
  2670. # Wintergrasp.NoBattleTimer
  2671. # Description: Time (in minutes) between Wintergrasp battles.
  2672. # Default: 150
  2673.  
  2674. Wintergrasp.NoBattleTimer = 150
  2675.  
  2676. #
  2677. # Wintergrasp.CrashRestartTimer
  2678. # Description: Time (in minutes) to delay the restart of Wintergrasp if the world server
  2679. # crashed during a running battle.
  2680. # Default: 10
  2681.  
  2682. Wintergrasp.CrashRestartTimer = 10
  2683.  
  2684. #
  2685. ###################################################################################################
  2686.  
  2687. ###################################################################################################
  2688. # ARENA CONFIG
  2689. #
  2690. # Arena.MaxRatingDifference
  2691. # Description: Maximum rating difference between two teams in rated matches.
  2692. # Default: 150 - (Enabled)
  2693. # 0 - (Disabled)
  2694.  
  2695. Arena.MaxRatingDifference = 150
  2696.  
  2697. #
  2698. # Arena.RatingDiscardTimer
  2699. # Description: Time (in milliseconds) after which rating differences are ignored when
  2700. # setting up matches.
  2701. # Default: 600000 - (Enabled, 10 minutes)
  2702. # 0 - (Disabled)
  2703.  
  2704. Arena.RatingDiscardTimer = 600000
  2705.  
  2706. #
  2707. # Arena.RatedUpdateTimer
  2708. # Description: Time (in milliseconds) between checks for matchups in rated arena.
  2709. # Default: 5000 - (5 seconds)
  2710.  
  2711. Arena.RatedUpdateTimer = 5000
  2712.  
  2713. #
  2714. # Arena.AutoDistributePoints
  2715. # Description: Automatically distribute arena points.
  2716. # Default: 0 - (Disabled)
  2717. # 1 - (Enabled)
  2718.  
  2719. Arena.AutoDistributePoints = 0
  2720.  
  2721. #
  2722. # Arena.AutoDistributeInterval
  2723. # Description: Time (in days) how often arena points should be distributed if automatic
  2724. # distribution is enabled.
  2725. # Default: 7 - (Weekly)
  2726.  
  2727. Arena.AutoDistributeInterval = 7
  2728.  
  2729. #
  2730. # Arena.QueueAnnouncer.Enable
  2731. # Description: Announce arena queue status to chat.
  2732. # Default: 0 - (Disabled)
  2733. # 1 - (Enabled)
  2734.  
  2735. Arena.QueueAnnouncer.Enable = 0
  2736.  
  2737. #
  2738. # Arena.ArenaSeason.ID
  2739. # Description: Current arena season id shown in clients.
  2740. # Default: 8
  2741.  
  2742. Arena.ArenaSeason.ID = 8
  2743.  
  2744. #
  2745. # Arena.ArenaSeason.InProgress
  2746. # Description: State of current arena season.
  2747. # Default: 1 - (Active)
  2748. # 0 - (Finished)
  2749.  
  2750. Arena.ArenaSeason.InProgress = 1
  2751.  
  2752. #
  2753. # Arena.ArenaStartRating
  2754. # Description: Start rating for new arena teams.
  2755. # Default: 0
  2756.  
  2757. Arena.ArenaStartRating = 0
  2758.  
  2759. #
  2760. # Arena.ArenaStartPersonalRating
  2761. # Description: Start personal rating when joining a team.
  2762. # Default: 0
  2763.  
  2764. Arena.ArenaStartPersonalRating = 0
  2765.  
  2766. #
  2767. # Arena.ArenaStartMatchmakerRating
  2768. # Description: Start matchmaker rating for players.
  2769. # Default: 1500
  2770.  
  2771. Arena.ArenaStartMatchmakerRating = 1500
  2772.  
  2773. #
  2774. # Arena.ArenaWinRatingModifier1
  2775. # Description: Modifier of rating addition when winner team rating is less than 1300
  2776. # be aware that from 1000 to 1300 it gradually decreases automatically down to the half of it
  2777. # (increasing this value will give more rating)
  2778. # Default: 48
  2779.  
  2780. Arena.ArenaWinRatingModifier1 = 48
  2781.  
  2782. #
  2783. # Arena.ArenaWinRatingModifier2
  2784. # Description: Modifier of rating addition when winner team rating is equal or more than 1300
  2785. # (increasing this value will give more rating)
  2786. # Default: 24
  2787.  
  2788. Arena.ArenaWinRatingModifier2 = 24
  2789.  
  2790.  
  2791. #
  2792. # Arena.ArenaLoseRatingModifier
  2793. # Description: Modifier of rating subtraction for loser team
  2794. # (increasing this value will subtract more rating)
  2795. # Default: 24
  2796.  
  2797. Arena.ArenaLoseRatingModifier = 24
  2798.  
  2799. #
  2800. # Arena.ArenaMatchmakerRatingModifier
  2801. # Description: Modifier of matchmaker rating
  2802. # Default: 24
  2803.  
  2804. Arena.ArenaMatchmakerRatingModifier = 24
  2805.  
  2806. #
  2807. # ArenaLog.ExtendedInfo
  2808. # Description: Include extended info to ArenaLogFile for each player after rated arena
  2809. # matches (guid, name, team, IP, healing/damage done, killing blows).
  2810. # Default: 0 - (Disabled)
  2811. # 1 - (Enabled)
  2812.  
  2813. ArenaLog.ExtendedInfo = 0
  2814.  
  2815. #
  2816. ###################################################################################################
  2817.  
  2818. ###################################################################################################
  2819. # NETWORK CONFIG
  2820. #
  2821. # Network.Threads
  2822. # Description: Number of threads for network.
  2823. # Default: 1 - (Recommended 1 thread per 1000 connections)
  2824.  
  2825. Network.Threads = 1
  2826.  
  2827. #
  2828. # Network.OutKBuff
  2829. # Description: Amount of memory (in bytes) used for the output kernel buffer (see SO_SNDBUF
  2830. # socket option, TCP manual).
  2831. # Default: -1 - (Use system default setting)
  2832.  
  2833. Network.OutKBuff = -1
  2834.  
  2835. #
  2836. # Network.OutUBuff
  2837. # Description: Amount of memory (in bytes) reserved in the user space per connection for
  2838. # output buffering.
  2839. # Default: 65536
  2840.  
  2841. Network.OutUBuff = 65536
  2842.  
  2843. #
  2844. # Network.TcpNoDelay:
  2845. # Description: TCP Nagle algorithm setting.
  2846. # Default: 0 - (Enabled, Less traffic, More latency)
  2847. # 1 - (Disabled, More traffic, Less latency, TCP_NO_DELAY)
  2848.  
  2849. Network.TcpNodelay = 1
  2850.  
  2851. #
  2852. ###################################################################################################
  2853.  
  2854. ###################################################################################################
  2855. # CONSOLE AND REMOTE ACCESS
  2856. #
  2857. # Console.Enable
  2858. # Description: Enable console.
  2859. # Default: 1 - (Enabled)
  2860. # 0 - (Disabled)
  2861.  
  2862. Console.Enable = 1
  2863.  
  2864. #
  2865. # Ra.Enable
  2866. # Description: Enable remote console (telnet).
  2867. # Default: 0 - (Disabled)
  2868. # 1 - (Enabled)
  2869.  
  2870. Ra.Enable = 0
  2871.  
  2872. #
  2873. # Ra.IP
  2874. # Description: Bind remote access to IP/hostname.
  2875. # Default: "0.0.0.0" - (Bind to all IPs on the system)
  2876.  
  2877. Ra.IP = "0.0.0.0"
  2878.  
  2879. #
  2880. # Ra.Port
  2881. # Description: TCP port to reach the remote console.
  2882. # Default: 3443
  2883.  
  2884. Ra.Port = 3443
  2885.  
  2886. #
  2887. # Ra.MinLevel
  2888. # Description: Required security level to use the remote console.
  2889. # Default: 3
  2890.  
  2891. Ra.MinLevel = 3
  2892.  
  2893. #
  2894. # SOAP.Enable
  2895. # Description: Enable soap service.
  2896. # Default: 0 - (Disabled)
  2897. # 1 - (Enabled)
  2898.  
  2899. SOAP.Enabled = 0
  2900.  
  2901. #
  2902. # SOAP.IP
  2903. # Description: Bind SOAP service to IP/hostname.
  2904. # Default: "127.0.0.1" - (Bind to localhost)
  2905.  
  2906. SOAP.IP = "127.0.0.1"
  2907.  
  2908. #
  2909. # SOAP.Port
  2910. # Description: TCP port to reach the SOAP service.
  2911. # Default: 7878
  2912.  
  2913. SOAP.Port = 7878
  2914.  
  2915. #
  2916. ###################################################################################################
  2917.  
  2918. ###################################################################################################
  2919. # CHARACTER DELETE OPTIONS
  2920. #
  2921. # CharDelete.Method
  2922. # Description: Character deletion behavior.
  2923. # Default: 0 - (Completely remove character from the database)
  2924. # 1 - (Unlink the character from account and free up the name, Appears as
  2925. # deleted ingame)
  2926.  
  2927. CharDelete.Method = 0
  2928.  
  2929. #
  2930. # CharDelete.MinLevel
  2931. # Description: Required level to use the unlinking method if enabled for non-heroic classes.
  2932. # Default: 0 - (Same method for every level)
  2933. # 1+ - (Only characters with the specified level will use the unlinking method)
  2934.  
  2935. CharDelete.MinLevel = 0
  2936.  
  2937. #
  2938. # CharDelete.DeathKnight.MinLevel
  2939. # Description: Required level to use the unlinking method if enabled for death knights.
  2940. # Default: 0 - (Same method for every level)
  2941. # 1+ - (Only characters with the specified level will use the unlinking method)
  2942.  
  2943. CharDelete.DeathKnight.MinLevel = 0
  2944.  
  2945. #
  2946. # CharDelete.KeepDays
  2947. # Description: Time (in days) before unlinked characters will be removed from the database.
  2948. # Default: 30 - (Enabled)
  2949. # 0 - (Disabled, Don't delete any characters)
  2950.  
  2951. CharDelete.KeepDays = 30
  2952.  
  2953. #
  2954. ###################################################################################################
  2955.  
  2956. ###################################################################################################
  2957. # CUSTOM SERVER OPTIONS
  2958. #
  2959. # AllowTrackBothResources
  2960. # Description: Allows players to track herbs and minerals at the same time (if they have the skills)
  2961. # Default: 0 - (Do not allow)
  2962. # 1 - (Allow)
  2963. #
  2964. # Note: The following are client limitations and cannot be coded for:
  2965. # * The minimap tracking icon will display whichever skill is activated second.
  2966. # * The minimap tracking list will only show a check mark next to the last skill activated (sometimes this
  2967. # bugs out and doesn't switch the check mark. It has no effect on the actual tracking though).
  2968. # * The minimap dots are yellow for both resources.
  2969.  
  2970. AllowTrackBothResources = 0
  2971.  
  2972. #
  2973. # PlayerStart.AllReputation
  2974. # Description: Players will start with most of the high level reputations that are needed
  2975. # for items, mounts etc.
  2976. # Default: 0 - (Disabled)
  2977. # 1 - (Enabled)
  2978.  
  2979. PlayerStart.AllReputation = 0
  2980.  
  2981. #
  2982. # PlayerStart.AllSpells
  2983. # Description: If enabled, players will start with all their class spells (not talents).
  2984. # You must populate playercreateinfo_spell_custom table with the spells you
  2985. # want, or this will not work! The table has data for all classes / races up
  2986. # to WoTLK expansion.
  2987. # Default: 0 - (Disabled)
  2988. # 1 - (Enabled)
  2989.  
  2990. PlayerStart.AllSpells = 0
  2991.  
  2992. #
  2993. # PlayerStart.MapsExplored
  2994. # Description: Characters start with all maps explored.
  2995. # Default: 0 - (Disabled)
  2996. # 1 - (Enabled)
  2997.  
  2998. PlayerStart.MapsExplored = 0
  2999.  
  3000. #
  3001. # HonorPointsAfterDuel
  3002. # Description: Amount of honor points the duel winner will get after a duel.
  3003. # Default: 0 - (Disabled)
  3004. # 1+ - (Enabled)
  3005.  
  3006. HonorPointsAfterDuel = 0
  3007.  
  3008. #
  3009. # ResetDuelCooldowns
  3010. # Description: Reset all cooldowns before duel starts and restore them when duel ends.
  3011. # Default: 0 - (Disabled)
  3012. # 1 - (Enabled)
  3013.  
  3014. ResetDuelCooldowns = 0
  3015.  
  3016. # ResetDuelHealthMana
  3017. # Description: Reset health and mana before duel starts and restore them when duel ends.
  3018. # Default: 0 - (Disabled)
  3019. # 1 - (Enabled)
  3020.  
  3021. ResetDuelHealthMana = 0
  3022.  
  3023. #
  3024. # AlwaysMaxWeaponSkill
  3025. # Description: Players will automatically gain max weapon/defense skill when logging in,
  3026. # or leveling.
  3027. # Default: 0 - (Disabled)
  3028. # 1 - (Enabled)
  3029.  
  3030. AlwaysMaxWeaponSkill = 0
  3031.  
  3032. #
  3033. # PvPToken.Enable
  3034. # Description: Character will receive a token after defeating another character that yields
  3035. # honor.
  3036. # Default: 0 - (Disabled)
  3037. # 1 - (Enabled)
  3038.  
  3039. PvPToken.Enable = 0
  3040.  
  3041. #
  3042. # PvPToken.MapAllowType
  3043. # Description: Define where characters can receive tokens.
  3044. # Default: 4 - (All maps)
  3045. # 3 - (Battlegrounds)
  3046. # 2 - (FFA areas only like Gurubashi arena)
  3047. # 1 - (Battlegrounds and FFA areas)
  3048.  
  3049. PvPToken.MapAllowType = 4
  3050.  
  3051. #
  3052. # PvPToken.ItemID
  3053. # Description: Item characters will receive after defeating another character if PvP Token
  3054. # system is enabled.
  3055. # Default: 29434 - (Badge of justice)
  3056.  
  3057. PvPToken.ItemID = 29434
  3058.  
  3059. #
  3060. # PvPToken.ItemCount
  3061. # Description: Number of tokens a character will receive.
  3062. # Default: 1
  3063.  
  3064. PvPToken.ItemCount = 1
  3065.  
  3066. #
  3067. # NoResetTalentsCost
  3068. # Description: Resetting talents doesn't cost anything.
  3069. # Default: 0 - (Disabled)
  3070. # 1 - (Enabled)
  3071.  
  3072. NoResetTalentsCost = 0
  3073.  
  3074. #
  3075. # Guild.AllowMultipleGuildMaster
  3076. # Description: Allow more than one guild master. Additional Guild Masters must be set using
  3077. # the ".guild rank" command.
  3078. # Default: 0 - (Disabled)
  3079. # 1 - (Enabled)
  3080.  
  3081. Guild.AllowMultipleGuildMaster = 0
  3082.  
  3083. #
  3084. # ShowKickInWorld
  3085. # Description: Determines whether a message is broadcasted to the entire server when a
  3086. # player gets kicked.
  3087. # Default: 0 - (Disabled)
  3088. # 1 - (Enabled)
  3089.  
  3090. ShowKickInWorld = 0
  3091.  
  3092. # ShowMuteInWorld
  3093. # Description: Determines whether a message is broadcasted to the entire server when a
  3094. # player gets muted.
  3095. # Default: 0 - (Disabled)
  3096. # 1 - (Enabled)
  3097.  
  3098. ShowMuteInWorld = 0
  3099.  
  3100. #
  3101. # ShowBanInWorld
  3102. # Description: Determines whether a message is broadcasted to the entire server when a
  3103. # player gets banned.
  3104. # Default: 0 - (Disabled)
  3105. # 1 - (Enabled)
  3106.  
  3107. ShowBanInWorld = 0
  3108.  
  3109. #
  3110. # RecordUpdateTimeDiffInterval
  3111. # Description: Time (in milliseconds) update time diff is written to the log file.
  3112. # Update diff can be used as a performance indicator. Diff < 300: good
  3113. # performance. Diff > 600 bad performance, may be caused by high CPU usage.
  3114. # Default: 60000 - (Enabled, 1 minute)
  3115. # 0 - (Disabled)
  3116.  
  3117. RecordUpdateTimeDiffInterval = 60000
  3118.  
  3119. #
  3120. # MinRecordUpdateTimeDiff
  3121. # Description: Only record update time diff which is greater than this value.
  3122. # Default: 100
  3123.  
  3124. MinRecordUpdateTimeDiff = 100
  3125.  
  3126. #
  3127. # PlayerStart.String
  3128. # Description: String to be displayed at first login of newly created characters.
  3129. # Default: "" - (Disabled)
  3130.  
  3131. PlayerStart.String = ""
  3132.  
  3133. #
  3134. # LevelReq.Trade
  3135. # Description: Level requirement for characters to be able to trade.
  3136. # Default: 1
  3137.  
  3138. LevelReq.Trade = 1
  3139.  
  3140. #
  3141. # LevelReq.Ticket
  3142. # Description: Level requirement for characters to be able to write tickets.
  3143. # Default: 1
  3144.  
  3145. LevelReq.Ticket = 1
  3146.  
  3147. #
  3148. # LevelReq.Auction
  3149. # Description: Level requirement for characters to be able to use the auction house.
  3150. # Default: 1
  3151.  
  3152. LevelReq.Auction = 1
  3153.  
  3154. #
  3155. # LevelReq.Mail
  3156. # Description: Level requirement for characters to be able to send and receive mails.
  3157. # Default: 1
  3158.  
  3159. LevelReq.Mail = 1
  3160.  
  3161. #
  3162. # PlayerDump.DisallowPaths
  3163. # Description: Disallow using paths in PlayerDump output files
  3164. # Default: 1
  3165.  
  3166. PlayerDump.DisallowPaths = 1
  3167.  
  3168. #
  3169. # PlayerDump.DisallowOverwrite
  3170. # Description: Disallow overwriting existing files with PlayerDump
  3171. # Default: 1
  3172.  
  3173. PlayerDump.DisallowOverwrite = 1
  3174.  
  3175. #
  3176. # UI.ShowQuestLevelsInDialogs
  3177. # Description: Show quest levels next to quest titles in UI dialogs
  3178. # Example: [13] Westfall Stew
  3179. # Default: 0 - (Do not show)
  3180.  
  3181. UI.ShowQuestLevelsInDialogs = 0
  3182.  
  3183. #
  3184. # Calculate.Creature.Zone.Area.Data
  3185. # Description: Calculate at loading creature zoneId / areaId and save in creature table (WARNING: SLOW WORLD SERVER STARTUP)
  3186. # Default: 0 - (Do not show)
  3187.  
  3188. Calculate.Creature.Zone.Area.Data = 0
  3189.  
  3190. #
  3191. # Calculate.Gameoject.Zone.Area.Data
  3192. # Description: Calculate at loading gameobject zoneId / areaId and save in gameobject table (WARNING: SLOW WORLD SERVER STARTUP)
  3193. # Default: 0 - (Do not show)
  3194.  
  3195. Calculate.Gameoject.Zone.Area.Data = 0
  3196.  
  3197. #
  3198. # NoGrayAggro
  3199. # Description: Gray mobs will not aggro players above/below some levels
  3200. # NoGrayAggro.Above: If player is at this level or above, gray mobs will not attack
  3201. # NoGrayAggro.Below: If player is at this level or below, gray mobs will not attack
  3202. # Example: You can for example make players free from gray until they reach level 30.
  3203. # Then gray will start to attack them, until they reach max level (80 for example):
  3204. # NoGrayAggro.Above = 80
  3205. # NoGrayAggro.Below = 29
  3206. # Default: 0 - (Blizzlike)
  3207. #
  3208.  
  3209. NoGrayAggro.Above = 0
  3210. NoGrayAggro.Below = 0
  3211.  
  3212. #
  3213. # PreventRenameCharacterOnCustomization
  3214. # Description: If option is set to 1, player can not rename the character in character customization.
  3215. # Applies to all character customization commands.
  3216. # Default: 0 - (Disabled, character can be renamed in Character Customization)
  3217. # 1 - (Enabled, character can not be renamed in Character Customization)
  3218. #
  3219.  
  3220. PreventRenameCharacterOnCustomization = 0
  3221.  
  3222. #
  3223. ###################################################################################################
  3224.  
  3225. ###################################################################################################
  3226. # AUCTION HOUSE BOT SETTINGS
  3227. #
  3228. # AuctionHouseBot.Account
  3229. # Description: Account ID for AHBot characters. If non-zero, all auctions and bids associated
  3230. # with the AHBot will randomly be assigned one of this account's characters.
  3231. # Default: 0
  3232. #
  3233.  
  3234. AuctionHouseBot.Account = 0
  3235.  
  3236. #
  3237. # AuctionHouseBot.Update.Interval
  3238. # Description: Interval in seconds for AHBot to get updated
  3239. # Default: 20
  3240. #
  3241.  
  3242. AuctionHouseBot.Update.Interval = 20
  3243.  
  3244. #
  3245. # AuctionHouseBot.Seller.Enabled
  3246. # Description: General enable or disable AuctionHouseBot Seller functionality
  3247. # Default: 0 - (Disabled)
  3248. # 1 - (Enabled)
  3249.  
  3250. AuctionHouseBot.Seller.Enabled = 0
  3251.  
  3252. #
  3253. # AuctionHouseBot.Alliance.Items.Amount.Ratio
  3254. # Description: Enable/Disable (disabled if 0) the part of AHBot that puts items up for auction on Alliance AH
  3255. # Default: 100 - (Enabled with 100% of items specified in AuctionHouse.Items.Amount.color section)
  3256.  
  3257. AuctionHouseBot.Alliance.Items.Amount.Ratio = 100
  3258.  
  3259. #
  3260. # AuctionHouseBot.Horde.Items.Amount.Ratio
  3261. # Enable/Disable (disabled if 0) the part of AHBot that puts items up for auction on Horde AH
  3262. # Default: 100 (Enabled with 100% of items specified in AuctionHouse.Items.Amount.color section)
  3263.  
  3264. AuctionHouseBot.Horde.Items.Amount.Ratio = 100
  3265.  
  3266. #
  3267. # AuctionHouseBot.Neutral.Items.Amount.Ratio
  3268. # Description: Enable/Disable (disabled if 0) the part of AHBot that puts items up for auction on Neutral AH
  3269. # Default: 100 - (Enabled with 100% of items specified in AuctionHouse.Items.Amount.color section)
  3270.  
  3271. AuctionHouseBot.Neutral.Items.Amount.Ratio = 100
  3272.  
  3273. #
  3274. # AuctionHouseBot.MinTime
  3275. # Description: Minimum time for the new auction in hours
  3276. # Default: 1 - (Hour)
  3277.  
  3278. AuctionHouseBot.MinTime = 1
  3279.  
  3280. #
  3281. # AuctionHouseBot.MaxTime
  3282. # Description: Maximum time for the new auction in hours
  3283. # Default: 72 - (Hours)
  3284.  
  3285. AuctionHouseBot.MaxTime = 72
  3286.  
  3287. #
  3288. # AuctionHouseBot.Class.CLASS.Allow.Zero = 0
  3289. # Description: Include items without a sell or buy price.
  3290. # Default: 0 - (Disabled)
  3291. # 1 - (Enabled)
  3292.  
  3293. AuctionHouseBot.Class.Consumable.Allow.Zero = 0
  3294. AuctionHouseBot.Class.Container.Allow.Zero = 0
  3295. AuctionHouseBot.Class.Weapon.Allow.Zero = 0
  3296. AuctionHouseBot.Class.Gem.Allow.Zero = 0
  3297. AuctionHouseBot.Class.Armor.Allow.Zero = 0
  3298. AuctionHouseBot.Class.Reagent.Allow.Zero = 0
  3299. AuctionHouseBot.Class.Projectile.Allow.Zero = 0
  3300. AuctionHouseBot.Class.TradeGood.Allow.Zero = 0
  3301. AuctionHouseBot.Class.Recipe.Allow.Zero = 0
  3302. AuctionHouseBot.Class.Quiver.Allow.Zero = 0
  3303. AuctionHouseBot.Class.Quest.Allow.Zero = 0
  3304. AuctionHouseBot.Class.Key.Allow.Zero = 0
  3305. AuctionHouseBot.Class.Misc.Allow.Zero = 0
  3306. AuctionHouseBot.Class.Glyph.Allow.Zero = 0
  3307.  
  3308. #
  3309. # AuctionHouseBot.Items.Vendor
  3310. # Description: Include items that can be bought from vendors.
  3311. # Default: 0 - (Disabled)
  3312. # 1 - (Enabled)
  3313.  
  3314. AuctionHouseBot.Items.Vendor = 0
  3315.  
  3316. #
  3317. # AuctionHouseBot.Items.Loot
  3318. # Description: Include items that can be looted or fished for.
  3319. # Default: 1 - (Enabled)
  3320. # 0 - (Disabled)
  3321.  
  3322. AuctionHouseBot.Items.Loot = 1
  3323.  
  3324. #
  3325. # AuctionHouseBot.Items.Misc
  3326. # Description: Include misc. items.
  3327. # Default: 0 - (Disabled)
  3328. # 1 - (Enabled)
  3329.  
  3330. AuctionHouseBot.Items.Misc = 0
  3331.  
  3332. #
  3333. # AuctionHouseBot.Bind.*
  3334. # Description: Indicates which bonding types to allow the bot to put up for auction
  3335. # No - Items that don't bind Default 1 (Allowed)
  3336. # Pickup - Items that bind on pickup Default 0 (Not Allowed)
  3337. # Equip - Items that bind on equip Default 1 (Allowed)
  3338. # Use - Items that bind on use Default 1 (Allowed)
  3339. # Quest - Quest Items Default 0 (Not Allowed)
  3340. # Values: 0 - (Disabled)
  3341. # 1 - (Enabled)
  3342.  
  3343. AuctionHouseBot.Bind.No = 1
  3344. AuctionHouseBot.Bind.Pickup = 0
  3345. AuctionHouseBot.Bind.Equip = 1
  3346. AuctionHouseBot.Bind.Use = 1
  3347. AuctionHouseBot.Bind.Quest = 0
  3348.  
  3349. #
  3350. # AuctionHouseBot.LockBox.Enabled
  3351. # Description: Enable or not lockbox in auctionhouse
  3352. # Default 0 - (Disabled)
  3353. # 1 - (Enabled)
  3354.  
  3355. AuctionHouseBot.LockBox.Enabled = 0
  3356.  
  3357. #
  3358. # AuctionHouseBot.ItemsPerCycle.Boost
  3359. # Description: This value is used to fill AH faster than normal when there is more than this value on missed items (not auctioned items).
  3360. # Usually this value is only used once on server start with empty auction table.
  3361. # Default: 1000
  3362.  
  3363. AuctionHouseBot.ItemsPerCycle.Boost = 1000
  3364.  
  3365. #
  3366. # AuctionHouseBot.ItemsPerCycle.Normal
  3367. # Description: This value is used to fill AH for sold and expired items. A high value will be more resource intensive
  3368. # Usually this value is used always when auction table is already initialised.
  3369. # Default: 20
  3370.  
  3371. AuctionHouseBot.ItemsPerCycle.Normal = 20
  3372.  
  3373. #
  3374. # AuctionHouseBot.BuyPrice.Seller
  3375. # Description: Should the Seller use BuyPrice or SellPrice to determine Bid Prices
  3376. # Default: 1 - (use SellPrice)
  3377. # 0 - (use BuyPrice)
  3378.  
  3379. AuctionHouseBot.BuyPrice.Seller = 1
  3380.  
  3381. #
  3382. # AuctionHouseBot.BidPrice.*
  3383. # Description: These values determine the range that the Bid Price will fall into, as a percentage of the Buy Price
  3384. # Default: 0.6 - (Min)
  3385. # 0.9 - (Max)
  3386.  
  3387. AuctionHouseBot.BidPrice.Min = 0.6
  3388. AuctionHouseBot.BidPrice.Max = 0.9
  3389.  
  3390. #
  3391. # AuctionHouseBot.Alliance.Price.Ratio
  3392. # Description: Percentage by which the price of items selled on Alliance Auction House is incremented / decreased
  3393. # Default: 100 - (Not modify)
  3394.  
  3395. AuctionHouseBot.Alliance.Price.Ratio = 100
  3396.  
  3397. #
  3398. # AuctionHouseBot.Horde.Price.Ratio
  3399. # Description: Percentage by which the price of items selled on Horde Auction House is incremented / decreased
  3400. # Default: 100 - (Not modify)
  3401.  
  3402. AuctionHouseBot.Horde.Price.Ratio = 100
  3403.  
  3404. #
  3405. # AuctionHouseBot.Neutral.Price.Ratio
  3406. # Description: Percentage by which the price of items selled on Neutral Auction House is incremented / decreased
  3407. # Default: 100 - (Not modify)
  3408.  
  3409. AuctionHouseBot.Neutral.Price.Ratio = 100
  3410.  
  3411. #
  3412. # AuctionHouseBot.Items.QUALITY.Price.Ratio
  3413. # Description: Percentage by which the price of items sold of each quality is incremented / decreased (for all houses)
  3414. # Default: 100 - (No change)
  3415.  
  3416. AuctionHouseBot.Items.Gray.Price.Ratio = 100
  3417. AuctionHouseBot.Items.White.Price.Ratio = 100
  3418. AuctionHouseBot.Items.Green.Price.Ratio = 100
  3419. AuctionHouseBot.Items.Blue.Price.Ratio = 100
  3420. AuctionHouseBot.Items.Purple.Price.Ratio = 100
  3421. AuctionHouseBot.Items.Orange.Price.Ratio = 100
  3422. AuctionHouseBot.Items.Yellow.Price.Ratio = 100
  3423.  
  3424. #
  3425. # AuctionHouseBot.Class.CLASS.Price.Ratio
  3426. # Description: Percentage by which the price of items sold of each class is incremented / decreased (for all houses)
  3427. # Default: 100 - (No change)
  3428.  
  3429. AuctionHouseBot.Class.Consumable.Price.Ratio = 100
  3430. AuctionHouseBot.Class.Container.Price.Ratio = 100
  3431. AuctionHouseBot.Class.Weapon.Price.Ratio = 100
  3432. AuctionHouseBot.Class.Gem.Price.Ratio = 100
  3433. AuctionHouseBot.Class.Armor.Price.Ratio = 100
  3434. AuctionHouseBot.Class.Reagent.Price.Ratio = 100
  3435. AuctionHouseBot.Class.Projectile.Price.Ratio = 100
  3436. AuctionHouseBot.Class.TradeGood.Price.Ratio = 100
  3437. AuctionHouseBot.Class.Generic.Price.Ratio = 100
  3438. AuctionHouseBot.Class.Recipe.Price.Ratio = 100
  3439. AuctionHouseBot.Class.Quiver.Price.Ratio = 100
  3440. AuctionHouseBot.Class.Quest.Price.Ratio = 100
  3441. AuctionHouseBot.Class.Key.Price.Ratio = 100
  3442. AuctionHouseBot.Class.Misc.Price.Ratio = 100
  3443. AuctionHouseBot.Class.Glyph.Price.Ratio = 100
  3444.  
  3445. #
  3446. # AuctionHouseBot.Items.ItemLevel.*
  3447. # Description: Prevent seller from listing items below/above this item level
  3448. # Default: 0 - (Disabled)
  3449.  
  3450. AuctionHouseBot.Items.ItemLevel.Min = 0
  3451. AuctionHouseBot.Items.ItemLevel.Max = 0
  3452.  
  3453. #
  3454. # AuctionHouseBot.Items.ReqLevel.*
  3455. # Description: Prevent seller from listing items below/above this required level
  3456. # Default: 0 - (Disabled)
  3457.  
  3458. AuctionHouseBot.Items.ReqLevel.Min = 0
  3459. AuctionHouseBot.Items.ReqLevel.Max = 0
  3460.  
  3461. #
  3462. # AuctionHouseBot.Items.ReqSkill.*
  3463. # Description: Prevent seller from listing items below/above this skill level
  3464. # Default: 0 - (Disabled)
  3465. # 1 - (Enabled)
  3466.  
  3467. AuctionHouseBot.Items.ReqSkill.Min = 0
  3468. AuctionHouseBot.Items.ReqSkill.Max = 0
  3469.  
  3470. #
  3471. # AuctionHouseBot.Items.Amount.*
  3472. # Description: Define here for every item qualities how many items you want to be shown in Auction House
  3473. # This value will be adjusted by AuctionHouseBot.FACTION.Items.Amount.Ratio to define the exact amount of
  3474. # items that will finally be shown on Auction House
  3475. # Default: 0, 2000, 2500, 1500, 1000, 0, 0 (Gray, white, green, blue, purple, orange, yellow)
  3476.  
  3477. AuctionHouseBot.Items.Amount.Gray = 0
  3478. AuctionHouseBot.Items.Amount.White = 2000
  3479. AuctionHouseBot.Items.Amount.Green = 2500
  3480. AuctionHouseBot.Items.Amount.Blue = 1500
  3481. AuctionHouseBot.Items.Amount.Purple = 1000
  3482. AuctionHouseBot.Items.Amount.Orange = 0
  3483. AuctionHouseBot.Items.Amount.Yellow = 0
  3484.  
  3485. #
  3486. # AuctionHouseBot.Class.*
  3487. # Description: Here you can set the class of items you prefer to be show on AH
  3488. # These value are sorted by preference, from 0 (disabled) to 10 (max. preference)
  3489. # Default: Consumable: 6
  3490. # Container: 4
  3491. # Weapon: 8
  3492. # Gem: 3
  3493. # Armor: 8
  3494. # Reagent: 1
  3495. # Projectile: 2
  3496. # TradeGood: 10
  3497. # Generic: 1
  3498. # Recipe: 6
  3499. # Quiver: 1
  3500. # Quest: 1
  3501. # Key: 1
  3502. # Misc: 5
  3503. # Glyph: 3
  3504.  
  3505. AuctionHouseBot.Class.Consumable = 6
  3506. AuctionHouseBot.Class.Container = 4
  3507. AuctionHouseBot.Class.Weapon = 8
  3508. AuctionHouseBot.Class.Gem = 3
  3509. AuctionHouseBot.Class.Armor = 8
  3510. AuctionHouseBot.Class.Reagent = 1
  3511. AuctionHouseBot.Class.Projectile = 2
  3512. AuctionHouseBot.Class.TradeGood = 10
  3513. AuctionHouseBot.Class.Generic = 1
  3514. AuctionHouseBot.Class.Recipe = 6
  3515. AuctionHouseBot.Class.Quiver = 1
  3516. AuctionHouseBot.Class.Quest = 1
  3517. AuctionHouseBot.Class.Key = 1
  3518. AuctionHouseBot.Class.Misc = 5
  3519. AuctionHouseBot.Class.Glyph = 3
  3520.  
  3521. #
  3522. ###################################################################################################
  3523.  
  3524. ###################################################################################################
  3525. # AUCTION HOUSE BOT ITEM FINE TUNING
  3526. #
  3527. # The following are usefull for limiting what character levels can
  3528. # benefit from the auction house
  3529. #
  3530. # AuctionHouseBot.Class.Misc.Mount.ReqLevel.*
  3531. # Description: Prevent seller from listing mounts below/above this required level
  3532. # Default: 0
  3533.  
  3534. AuctionHouseBot.Class.Misc.Mount.ReqLevel.Min = 0
  3535. AuctionHouseBot.Class.Misc.Mount.ReqLevel.Max = 0
  3536.  
  3537. #
  3538. # AuctionHouseBot.Class.Misc.Mount.ReqSkill.*
  3539. # Description: Prevent seller from listing mounts below/above this skill level
  3540. # Default: 0
  3541.  
  3542. AuctionHouseBot.Class.Misc.Mount.ReqSkill.Min = 0
  3543. AuctionHouseBot.Class.Misc.Mount.ReqSkill.Max = 0
  3544.  
  3545. #
  3546. # AuctionHouseBot.Class.Glyph.ReqLevel.*
  3547. # Description: Prevent seller from listing glyphs below/above this required level
  3548. # Default: 0
  3549.  
  3550. AuctionHouseBot.Class.Glyph.ReqLevel.Min = 0
  3551. AuctionHouseBot.Class.Glyph.ReqLevel.Max = 0
  3552.  
  3553. #
  3554. # AuctionHouseBot.Class.Glyph.ItemLevel.*
  3555. # Description: Prevent seller from listing glyphs below/above this item level
  3556. # Default: 0
  3557.  
  3558. AuctionHouseBot.Class.Glyph.ItemLevel.Min = 0
  3559. AuctionHouseBot.Class.Glyph.ItemLevel.Max = 0
  3560.  
  3561. #
  3562. # AuctionHouseBot.Class.TradeGood.ItemLevel.*
  3563. # Description: Prevent seller from listing trade good items below/above this item level
  3564. # Default: 0
  3565.  
  3566. AuctionHouseBot.Class.TradeGood.ItemLevel.Min = 0
  3567. AuctionHouseBot.Class.TradeGood.ItemLevel.Max = 0
  3568.  
  3569. #
  3570. # AuctionHouseBot.Class.Container.ItemLevel.*
  3571. # Description: Prevent seller from listing contianers below/above this item level
  3572. # Default: 0
  3573.  
  3574. AuctionHouseBot.Class.Container.ItemLevel.Min = 0
  3575. AuctionHouseBot.Class.Container.ItemLevel.Max = 0
  3576.  
  3577. #
  3578. # AuctionHouseBot.forceIncludeItems
  3579. # Description: Include these items and ignore ALL filters
  3580. # List of ids with delimiter ','
  3581. # Default: ""
  3582.  
  3583. AuctionHouseBot.forceIncludeItems = ""
  3584.  
  3585. #
  3586. # AuctionHouseBot.forceExcludeItems
  3587. # Description: Exclude these items even if they would pass the filters
  3588. # List of ids with delimiter ','
  3589. # Example: "21878,27774,27811,28117,28122,43949" (this removes old items)
  3590. # Default: ""
  3591. #
  3592.  
  3593. AuctionHouseBot.forceExcludeItems = "6343,6345,6376"
  3594.  
  3595. #
  3596. # AuctionHouseBot.Class.RandomStackRatio.*
  3597. # Description: Used to determine how often a stack of the class will be single or randomly-size stacked when posted
  3598. # Value needs to be between 0 and 100, no decimal. Anything higher than 100 will be treated as 100
  3599. # Examples: 100 = stacks will always be random in size
  3600. # 50 = half the time the stacks are random, the other half being single stack
  3601. # 0 = stacks will always single size
  3602. # Default: Consumable: 20 (20% random stack size, 80% single stack size)
  3603. # Container: 0 (100% single stack size)
  3604. # Weapon: 0 (100% single stack size)
  3605. # Gem: 20 (20% random stack size, 80% single stack size)
  3606. # Armor: 0 (100% single stack size)
  3607. # Reagent: 100 (100% random stack size)
  3608. # Projectile: 100 (100% random stack size)
  3609. # TradeGood: 50 (50% random stack size, 50% single stack size)
  3610. # Generic: 100 (100% random stack size)
  3611. # Recipe: 0 (100% single stack size)
  3612. # Quiver: 0 (100% single stack size)
  3613. # Quest: 100 (100% random stack size)
  3614. # Key: 100 (100% random stack size)
  3615. # Misc: 100 (100% random stack size)
  3616. # Glyph: 0 (100% single stack size)
  3617. #
  3618.  
  3619. AuctionHouseBot.Class.RandomStackRatio.Consumable = 20
  3620. AuctionHouseBot.Class.RandomStackRatio.Container = 0
  3621. AuctionHouseBot.Class.RandomStackRatio.Weapon = 0
  3622. AuctionHouseBot.Class.RandomStackRatio.Gem = 20
  3623. AuctionHouseBot.Class.RandomStackRatio.Armor = 0
  3624. AuctionHouseBot.Class.RandomStackRatio.Reagent = 100
  3625. AuctionHouseBot.Class.RandomStackRatio.Projectile = 100
  3626. AuctionHouseBot.Class.RandomStackRatio.TradeGood = 50
  3627. AuctionHouseBot.Class.RandomStackRatio.Generic = 100
  3628. AuctionHouseBot.Class.RandomStackRatio.Recipe = 0
  3629. AuctionHouseBot.Class.RandomStackRatio.Quiver = 0
  3630. AuctionHouseBot.Class.RandomStackRatio.Quest = 100
  3631. AuctionHouseBot.Class.RandomStackRatio.Key = 100
  3632. AuctionHouseBot.Class.RandomStackRatio.Misc = 100
  3633. AuctionHouseBot.Class.RandomStackRatio.Glyph = 0
  3634.  
  3635. #
  3636. ###################################################################################################
  3637.  
  3638. ###################################################################################################
  3639. # AUCTION HOUSE BOT BUYER CONFIG
  3640. #
  3641. # AuctionHouseBot.Buyer.Enabled
  3642. # Description: General enable or disable AuctionHouseBot Buyer functionality
  3643. # Default: 0 - (Disabled)
  3644. # 1 - (Enabled)
  3645.  
  3646. AuctionHouseBot.Buyer.Enabled = 0
  3647.  
  3648. #
  3649. # AuctionHouseBot.Buyer.FACTION.Enabled
  3650. # Description: Enable or disable buyer independently by faction
  3651. # Default: 0 - (Disabled)
  3652. # 1 - (Enabled)
  3653.  
  3654. AuctionHouseBot.Buyer.Alliance.Enabled = 0
  3655. AuctionHouseBot.Buyer.Horde.Enabled = 0
  3656. AuctionHouseBot.Buyer.Neutral.Enabled = 0
  3657.  
  3658. # AuctionHouseBot.Buyer.ChanceFactor
  3659. # Description: k value in the formula used for the chance to buy an item "100^(1 + (1 - (AuctionBid / ItemPrice)) / k)"
  3660. # It must be a decimal number in the range of (0, +infinity). The higher the number the higher chance to buy overpriced auctions
  3661. # Default: 2
  3662.  
  3663. AuctionHouseBot.Buyer.ChanceFactor = 2
  3664.  
  3665. #
  3666. # AuctionHouseBot.Buyer.Baseprice.QUALITY
  3667. # Description: Base sellprices in copper for non priced items for each quality.
  3668. # The default values are based on average item prices of each quality.
  3669. # Defaults: Gray 3504
  3670. # White 5429
  3671. # Green 21752
  3672. # Blue 36463
  3673. # Purple 87124
  3674. # Orange 214347
  3675. # Yellow 407406
  3676.  
  3677. AuctionHouseBot.Buyer.Baseprice.Gray = 3504
  3678. AuctionHouseBot.Buyer.Baseprice.White = 5429
  3679. AuctionHouseBot.Buyer.Baseprice.Green = 21752
  3680. AuctionHouseBot.Buyer.Baseprice.Blue = 36463
  3681. AuctionHouseBot.Buyer.Baseprice.Purple = 87124
  3682. AuctionHouseBot.Buyer.Baseprice.Orange = 214347
  3683. AuctionHouseBot.Buyer.Baseprice.Yellow = 407406
  3684.  
  3685. #
  3686. # AuctionHouseBot.Buyer.ChanceMultiplier.QUALITY
  3687. # Description: Multipliers for the buy/bid chances for each quality. 100 means the chance is 100% of the original,
  3688. # 1 would mean 1 % of the original and 200 would mean 200% of the original chance.
  3689. # Defaults: Gray 100
  3690. # White 100
  3691. # Green 100
  3692. # Blue 100
  3693. # Purple 100
  3694. # Orange 100
  3695. # Yellow 100
  3696.  
  3697. AuctionHouseBot.Buyer.ChanceMultiplier.Gray = 100
  3698. AuctionHouseBot.Buyer.ChanceMultiplier.White = 100
  3699. AuctionHouseBot.Buyer.ChanceMultiplier.Green = 100
  3700. AuctionHouseBot.Buyer.ChanceMultiplier.Blue = 100
  3701. AuctionHouseBot.Buyer.ChanceMultiplier.Purple = 100
  3702. AuctionHouseBot.Buyer.ChanceMultiplier.Orange = 100
  3703. AuctionHouseBot.Buyer.ChanceMultiplier.Yellow = 100
  3704.  
  3705. #
  3706. # AuctionHouseBot.Buyer.Recheck.Interval
  3707. # Description: This specifies the time interval (in minutes) between two evaluations of the same sold item.
  3708. # The smaller this value is, the more chances you give for an item to be bought by ahbot.
  3709. # Default: 20 (20min.)
  3710.  
  3711. AuctionHouseBot.Buyer.Recheck.Interval = 20
  3712.  
  3713. #
  3714. ###################################################################################################
  3715.  
  3716. ###################################################################################################
  3717. # LOGGING SYSTEM SETTINGS
  3718. #
  3719. # Appender config values: Given a appender "name"
  3720. # Appender.name
  3721. # Description: Defines 'where to log'.
  3722. # Format: Type,LogLevel,Flags,optional1,optional2,optional3
  3723. #
  3724. # Type
  3725. # 0 - (None)
  3726. # 1 - (Console)
  3727. # 2 - (File)
  3728. # 3 - (DB)
  3729. #
  3730. # LogLevel
  3731. # 0 - (Disabled)
  3732. # 1 - (Trace)
  3733. # 2 - (Debug)
  3734. # 3 - (Info)
  3735. # 4 - (Warn)
  3736. # 5 - (Error)
  3737. # 6 - (Fatal)
  3738. #
  3739. # Flags:
  3740. # 0 - None
  3741. # 1 - Prefix Timestamp to the text
  3742. # 2 - Prefix Log Level to the text
  3743. # 4 - Prefix Log Filter type to the text
  3744. # 8 - Append timestamp to the log file name. Format: YYYY-MM-DD_HH-MM-SS
  3745. # (Only used with Type = 2)
  3746. # 16 - Make a backup of existing file before overwrite
  3747. # (Only used with Mode = w)
  3748. #
  3749. # Colors (read as optional1 if Type = Console)
  3750. # Format: "fatal error warn info debug trace"
  3751. # 0 - BLACK
  3752. # 1 - RED
  3753. # 2 - GREEN
  3754. # 3 - BROWN
  3755. # 4 - BLUE
  3756. # 5 - MAGENTA
  3757. # 6 - CYAN
  3758. # 7 - GREY
  3759. # 8 - YELLOW
  3760. # 9 - LRED
  3761. # 10 - LGREEN
  3762. # 11 - LBLUE
  3763. # 12 - LMAGENTA
  3764. # 13 - LCYAN
  3765. # 14 - WHITE
  3766. # Example: "13 11 9 5 3 1"
  3767. #
  3768. # File: Name of the file (read as optional1 if Type = File)
  3769. # Allows to use one "%s" to create dynamic files
  3770. #
  3771. # Mode: Mode to open the file (read as optional2 if Type = File)
  3772. # a - (Append)
  3773. # w - (Overwrite)
  3774. #
  3775. # MaxFileSize: Maximum file size of the log file before creating a new log file
  3776. # (read as optional3 if Type = File)
  3777. # Size is measured in bytes expressed in a 64-bit unsigned integer.
  3778. # Maximum value is 4294967295 (4 gb). Leave blank for no limit.
  3779. # NOTE: Does not work with dynamic filenames.
  3780. # Example: 536870912 (512 mb)
  3781. #
  3782.  
  3783. Appender.Console=1,3,0
  3784. Appender.Server=2,2,0,Server.log,w
  3785. Appender.GM=2,2,15,gm/gm_%s.log
  3786. Appender.DBErrors=2,2,0,DBErrors.log
  3787.  
  3788. # Logger config values: Given a logger "name"
  3789. # Logger.name
  3790. # Description: Defines 'What to log'
  3791. # Format: LogLevel,AppenderList
  3792. #
  3793. # LogLevel
  3794. # 0 - (Disabled)
  3795. # 1 - (Trace)
  3796. # 2 - (Debug)
  3797. # 3 - (Info)
  3798. # 4 - (Warn)
  3799. # 5 - (Error)
  3800. # 6 - (Fatal)
  3801. #
  3802. # AppenderList: List of appenders linked to logger
  3803. # (Using spaces as separator).
  3804. #
  3805.  
  3806. Logger.root=5,Console Server
  3807. Logger.server=3,Console Server
  3808. Logger.commands.gm=3,Console GM
  3809. Logger.scripts.hotswap=3,Console Server
  3810. Logger.sql.sql=5,Console DBErrors
  3811. Logger.sql.updates=3,Console Server
  3812. Logger.mmaps=3,Server
  3813.  
  3814. #Logger.achievement=3,Console Server
  3815. #Logger.addon=3,Console Server
  3816. #Logger.ahbot=3,Console Server
  3817. #Logger.auctionHouse=3,Console Server
  3818. #Logger.bg.arena=3,Console Server
  3819. #Logger.bg.battlefield=3,Console Server
  3820. #Logger.bg.battleground=3,Console Server
  3821. #Logger.bg.reportpvpafk=3,Console Server
  3822. #Logger.chat.log=3,Console Server
  3823. #Logger.calendar=3,Console Server
  3824. #Logger.chat.system=3,Console Server
  3825. #Logger.cheat=3,Console Server
  3826. #Logger.commands.ra=3,Console Server
  3827. #Logger.condition=3,Console Server
  3828. #Logger.entities.pet=3,Console Server
  3829. #Logger.entities.player.character=3,Console Server
  3830. #Logger.entities.player.dump=3,Console Server
  3831. #Logger.entities.player=3,Console Server
  3832. #Logger.entities.player.items=3,Console Server
  3833. #Logger.entities.player.loading=3,Console Server
  3834. #Logger.entities.player.skills=3,Console Server
  3835. #Logger.entities.transport=3,Console Server
  3836. #Logger.entities.unit=3,Console Server
  3837. #Logger.entities.vehicle=3,Console Server
  3838. #Logger.gameevent=3,Console Server
  3839. #Logger.guild=3,Console Server
  3840. #Logger.lfg=3,Console Server
  3841. #Logger.loot=3,Console Server
  3842. #Logger.maps.script=3,Console Server
  3843. #Logger.maps=3,Console Server
  3844. #Logger.misc=3,Console Server
  3845. #Logger.network=3,Console Server
  3846. #Logger.network.opcode=3,Console Server
  3847. #Logger.network.soap=3,Console Server
  3848. #Logger.outdoorpvp=3,Console Server
  3849. #Logger.pool=3,Console Server
  3850. #Logger.rbac=3,Console Server
  3851. #Logger.scripts=3,Console Server
  3852. #Logger.scripts.ai=3,Console Server
  3853. #Logger.server.authserver=3,Console Server
  3854. #Logger.spells=3,Console Server
  3855. #Logger.spells.periodic=3,Console Server
  3856. #Logger.sql.dev=3,Console Server
  3857. #Logger.sql.driver=3,Console Server
  3858. #Logger.warden=3,Console Server
  3859.  
  3860. #
  3861. # Log.Async.Enable
  3862. # Description: Enables asyncronous message logging.
  3863. # Default: 0 - (Disabled)
  3864. # 1 - (Enabled)
  3865.  
  3866. Log.Async.Enable = 0
  3867.  
  3868. #
  3869. # Allow.IP.Based.Action.Logging
  3870. # Description: Logs actions, e.g. account login and logout to name a few, based on IP of
  3871. # current session.
  3872. # Default: 0 - (Disabled)
  3873. # 1 - (Enabled)
  3874.  
  3875. Allow.IP.Based.Action.Logging = 0
  3876.  
  3877. #
  3878. ###################################################################################################
  3879.  
  3880. ###################################################################################################
  3881. # PACKET SPOOF PROTECTION SETTINGS
  3882. #
  3883. # These settings determine which action to take when harmful packet spoofing is detected.
  3884. #
  3885. # PacketSpoof.Policy
  3886. # Description: Determines the course of action when packet spoofing is detected.
  3887. # Default: 1 - (Log + kick)
  3888. # 0 - (Log only 'network')
  3889. # 2 - (Log + kick + ban)
  3890.  
  3891. PacketSpoof.Policy = 1
  3892.  
  3893. #
  3894. # PacketSpoof.BanMode
  3895. # Description: If PacketSpoof.Policy equals 2, this will determine the ban mode.
  3896. # Note: Banning by character not supported for logical reasons.
  3897. # Default: 0 - Ban Account
  3898. # 2 - Ban IP
  3899. #
  3900.  
  3901. PacketSpoof.BanMode = 0
  3902.  
  3903. #
  3904. # PacketSpoof.BanDuration
  3905. # Description: Duration of the ban in seconds. Only valid if PacketSpoof.Policy is set to 2.
  3906. # Set to 0 for permanent ban.
  3907. # Default: 86400 seconds (1 day)
  3908. #
  3909.  
  3910. PacketSpoof.BanDuration = 86400
  3911.  
  3912. #
  3913. ###################################################################################################
  3914.  
  3915. ###################################################################################################
  3916. # METRIC SETTINGS
  3917. #
  3918. # These settings control the statistics sent to the metric database (currently InfluxDB)
  3919. #
  3920. # Metric.Enable
  3921. # Description: Enables statistics sent to the metric database.
  3922. # Default: 0 - (Disabled)
  3923. # 1 - (Enabled)
  3924.  
  3925. Metric.Enable = 0
  3926.  
  3927. #
  3928. # Metric.Interval
  3929. # Description: Interval between every batch of data sent in seconds
  3930. # Default: 10 seconds
  3931. #
  3932.  
  3933. Metric.Interval = 10
  3934.  
  3935. #
  3936. # Metric.ConnectionInfo
  3937. # Description: Connection settings for metric database (currently InfluxDB).
  3938. # Example: "hostname;port;database"
  3939. # Default: "127.0.0.1;8086;worldserver"
  3940.  
  3941. Metric.ConnectionInfo = "127.0.0.1;8086;worldserver"
  3942.  
  3943. #
  3944. # Metric.OverallStatusInterval
  3945. # Description: Interval between every gathering of overall worldserver status data in seconds
  3946. # Default: 1 second
  3947. #
  3948.  
  3949. Metric.OverallStatusInterval = 1
  3950.  
  3951. #
  3952. ###################################################################################################
Add Comment
Please, Sign In to add comment