profession balance

profession balance

in PvP

Posted by: Coelho Nat.4697

Coelho Nat.4697

Why do I get paired with 1 or other 2 thieves EVERY SINGLE match when I play as a thief? Meanwhile the other team has none. I am not exagerating, I need swap every single time. PS.: most of time it is not daily thief.
Anet profession balance working…

profession balance

in PvP

Posted by: FiveGauge.1357

FiveGauge.1357

Sorry for your bad luck. It’s just random. We’re meant to switch professions as needed. The matchmaker balances the teams based on PIP ranges, even team MMR averages, group sizes, etc – It doesn’t match-make based on professions, players that switch as needed and contribute to a balanced comp do better in PvP!

profession balance

in PvP

Posted by: BlaqueFyre.5678

BlaqueFyre.5678

Anet says they have an algorithm to stop class stacking but it doesn’t work or they said screw and disabled it

score += roster.dishonor * config.dishonor.stack
# adjust score by profession count
for profession in list_of_all_professions:
count = roster.countProfessions(profession)
if count == 0:
continue
count += team.countProfessions(professions)
if count >= config.professions.max:
count -= config.professions.max – 1;
score += count * config.professions.common
else:
count = config.professions.max – count
score += count * config.professions.unique
return score

(edited by BlaqueFyre.5678)