aboutsummaryrefslogtreecommitdiff
path: root/src/server/worldserver
diff options
context:
space:
mode:
authorMatthew Goff <matt@goff.cc>2012-02-08 20:01:38 -0600
committerMatthew Goff <matt@goff.cc>2012-02-08 20:01:38 -0600
commit89adbc177893ae88a4649c96e04cfeafc75197ba (patch)
treec7c76a2d962874d0a2f1792717c3561c4552f11b /src/server/worldserver
parent1730cee9e139791f3217f2d76ea92d2e7383ba95 (diff)
Add config values to allow ignoring auto accept and auto complete flags on quests.
Diffstat (limited to 'src/server/worldserver')
-rw-r--r--src/server/worldserver/worldserver.conf.dist16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist
index 1e37f50aa63..df46cccb9cf 100644
--- a/src/server/worldserver/worldserver.conf.dist
+++ b/src/server/worldserver/worldserver.conf.dist
@@ -1249,6 +1249,22 @@ Quests.HighLevelHideDiff = 7
Quests.IgnoreRaid = 0
#
+# Quests.IgnoreAutoAccept
+# Description: Ignore auto accept flag. Clients will have to manually accept all quests.
+# Default: 0 - (Disabled, DB values determine if quest is marked auto accept or not.)
+# 1 - (Enabled, clients will not be told to automatically accept any quest.)
+
+Quests.IgnoreAutoAccept = 0
+
+#
+# Quests.IgnoreAutoComplete
+# Description: Ignore auto complete flag. Clients will have to manually complete all quests.
+# Default: 0 - (Disabled, DB values determine if quest is marked auto complete or not.)
+# 1 - (Enabled, clients will not be told to automatically complete any quest.)
+
+Quests.IgnoreAutoComplete = 0
+
+#
# Guild.EventLogRecordsCount
# Description: Number of log entries for guild events that are stored per guild. Old entries
# will be overwritten if the number of log entries exceed the configured value.