Core/Player: Initial War Mode support

Port From (https://github.com/TrinityCore/TrinityCore/commit/b821a729733db0d3742b4aefe05e5a8305724f66)
This commit is contained in:
hondacrx
2022-01-07 21:49:50 -05:00
parent 73b456b5a0
commit 4c922933de
10 changed files with 304 additions and 26 deletions
+37
View File
@@ -3832,5 +3832,42 @@ PacketSpoof.BanMode = 0
PacketSpoof.BanDuration = 86400
#
###################################################################################################
###################################################################################################
# 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
#
###################################################################################################