Skip to content

Commit a59a702

Browse files
authored
Merge pull request #25 from LannyE/fix-issue-21
fix(cpp/conf) Add Class Balancing
2 parents c899248 + 66a70f3 commit a59a702

File tree

2 files changed

+290
-255
lines changed

2 files changed

+290
-255
lines changed

conf/Solocraft.conf.dist

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Solocraft.Announce = 1
2121

2222

2323
###################################################################################################
24-
# Balancing - Groups (Overloading), Spellpower, and Stats
24+
# Balancing - Groups (Overloading), Global Spellpower and Stats modifier, Global Class Balancing
2525
###################################################################################################
2626

2727
# Enable Debuff of new party members who enter the dungeon to avoid overloading the dungeon?
@@ -38,7 +38,7 @@ SoloCraft.Debuff.Enable = 1
3838

3939
# Spellpower Bonus Multiplier
4040
# Spellcasters spellpower bonus multiplier to offset no spellpower received from stats
41-
# Formula: (player->level * multiplier) * difficulty
41+
# Formula: (player->level * multiplier) * ((classBalance / 100) * difficulty)
4242
# Example Level 24 Mage with default modifier and a dungeon difficulty of 5 will receive a base
4343
# Spellpower increase of 300.
4444

@@ -48,13 +48,33 @@ SoloCraft.Spellpower.Mult = 2.5
4848

4949

5050
# Stats Percentage Bonus Multiplier
51-
# Forumla: player->Stats * (difficulty * multiplier)
51+
# Forumla: player->Stats * (((classBalance / 100) * difficulty) * multiplier)
5252

5353
# Default: 100.0
5454
# 0.0 (Disable)
5555
SoloCraft.Stats.Mult = 100.0
5656

5757

58+
# Class Balancing Modifier
59+
# This settings will only allow the percentage specified of the difficulty for the specified class
60+
# Example Level 24 Mage with default modifier (2.5), a dungeon difficulty of 5, and a 80 percent class
61+
# balance modifier will receive a base Spellpower increase of 240.
62+
# Note: 0 will completely disable the class from receiving difficulty modifiers from any dungeon
63+
64+
#Default: 100 (Full Dungeon Difficulty Modifer will be Applied)
65+
# 0 (Disable) - 100
66+
67+
SoloCraft.DEATH_KNIGHT = 100
68+
SoloCraft.DRUID = 100
69+
SoloCraft.HUNTER = 100
70+
SoloCraft.MAGE = 100
71+
SoloCraft.PALADIN = 100
72+
SoloCraft.PRIEST = 100
73+
SoloCraft.ROGUE = 100
74+
SoloCraft.SHAMAN = 100
75+
SoloCraft.WARLOCK = 100
76+
SoloCraft.WARRIOR = 100
77+
5878
################################################################################################
5979
#Catch all Bucket - Difficulty Offset Defaults
6080
################################################################################################

0 commit comments

Comments
 (0)