aboutsummaryrefslogtreecommitdiff
path: root/src/server/worldserver
diff options
context:
space:
mode:
authorMatan Shukry <matanshukry@gmail.com>2021-12-26 20:14:46 +0200
committerGitHub <noreply@github.com>2021-12-26 19:14:46 +0100
commitb821a729733db0d3742b4aefe05e5a8305724f66 (patch)
tree5950610a9f6e50d906630825457d952c9548f7cd /src/server/worldserver
parente00b1df36ec021bb80659ab9828e0c1a9b55adcf (diff)
Core/Player: Initial War Mode support (#25926)
* Enable PvP talents * War Mode buff aura * Forced PvP flagging Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'src/server/worldserver')
-rw-r--r--src/server/worldserver/worldserver.conf.dist38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist
index ed70b69d01d..505c5cc1306 100644
--- a/src/server/worldserver/worldserver.conf.dist
+++ b/src/server/worldserver/worldserver.conf.dist
@@ -40,6 +40,7 @@
# CURRENCIES SETTINGS
# PACKET SPOOF PROTECTION SETTINGS
# METRIC SETTINGS
+# PVP SETTINGS
#
###################################################################################################
@@ -4286,3 +4287,40 @@ Metric.OverallStatusInterval = 1
#
###################################################################################################
+
+###################################################################################################
+# PVP SETTINGS
+#
+#
+# Pvp.FactionBalance.LevelCheckDiff
+# Description: The amount of levels below the maximum level that accounts people for faction balance.
+# That is, if max level is 60 and this has a value of 5, all players that are level 55 and above (including) will be included in the check
+# Default: 0
+
+Pvp.FactionBalance.LevelCheckDiff = 0
+
+# Pvp.FactionBalance.Pct5
+# Description: The percentage at which a faction will receive an extra % percentage on their enlisted buff. Value range: [0...1]
+# That is, if value is 0.6, and alliance outnumber horde by 60%, horde will get 15% bonus (5% + base 10%)
+# Default: 0.6
+
+Pvp.FactionBalance.Pct5 = 0.6
+
+# Pvp.FactionBalance.Pct10
+# Description: The percentage at which a faction will receive an extra % percentage on their enlisted buff. Value range: [0...1]
+# Does not stack with previous pct. Pct5 will not be checked if faction percentage is higher than this value.
+# That is, if value is 0.7, and alliance outnumber horde by 70%, horde will get 20% bonus (10% + base 10%)
+# Default: 0.7
+
+Pvp.FactionBalance.Pct10 = 0.7
+
+# Pvp.FactionBalance.Pct20
+# Description: The percentage at which a faction will receive an extra % percentage on their enlisted buff. Value range: [0...1]
+# Does not stack with previous pct. Pct10 will not be checked if faction percentage is higher than this value.
+# That is, if value is 0.8, and alliance outnumber horde by 80%, horde will get 30% bonus (20% + base 10%)
+# Default: 0.8
+
+Pvp.FactionBalance.Pct20 = 0.8
+
+#
+###################################################################################################