diff options
author | megamage <none@none> | 2009-08-27 19:57:35 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-27 19:57:35 -0500 |
commit | 90b55ff7b15bb243fce40ec733630bc605bf04a9 (patch) | |
tree | b0381baf2443edf45173b1fb9e77c6f6b12f05ff /src/trinitycore | |
parent | 82bd15b7beb92d57e3925781581d62425d675398 (diff) |
[8424] Added support for strict chatmessage validation Author: arrai
--HG--
branch : trunk
Diffstat (limited to 'src/trinitycore')
-rw-r--r-- | src/trinitycore/trinitycore.conf.dist | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/trinitycore/trinitycore.conf.dist b/src/trinitycore/trinitycore.conf.dist index fcf34b97b01..a0360f7e00c 100644 --- a/src/trinitycore/trinitycore.conf.dist +++ b/src/trinitycore/trinitycore.conf.dist @@ -988,6 +988,19 @@ ListenRange.Yell = 300 # Default: 0 (disible fake messages preventing) # 1 (enabled fake messages preventing) # +# ChatStrictLinkChecking.Severity +# Check chat messages for ingame links to spells, items, quests, achievements etc. +# Default: 0 (disable link checking) +# 1 (check if only valid pipe commands are used. This prevents posting pictures for example) +# 2 (verifiy that pipe commands are used in a correct order) +# 3 (check if color, entry and name don't contradict each other. For correct work, please assure +# that you have extracted locale DBCs of every language specific client playing on this server.) +# +# ChatStrictLinkChecking.Kick +# Defines, what should be done if a message is considered to contain invalid pipe commands. +# Default: 0 (silently ignore message) +# 1 (kick players who sent invalid formed messages) +# # ChatFlood.MessageCount # Chat anti-flood protection, haste message count to activate protection # Default: 10 @@ -1014,6 +1027,8 @@ ListenRange.Yell = 300 ################################################################################################################### ChatFakeMessagePreventing = 0 +ChatStrictLinkChecking.Severity = 0 +ChatStrictLinkChecking.Kick = 0 ChatFlood.MessageCount = 10 ChatFlood.MessageDelay = 1 ChatFlood.MuteTime = 10 |