You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At SETO, we'd developed a couple of score formulas, not designed for PUGs specifically:
Formula type 1:
T = Tournament Type
S = Tournament Size
P = Player Position
M = No of matches they played
W = No of wins they had
Score (added on at the end of a tournament) = (S-P) * (W/M) * T
Formula type 2:
T = Tournament Type
O = Average score of Opponent's team
P = Player's Score
F = Leaderboard Placement in match
L = Amount of players in match
Score gained on match win = (O/P) * (L/F) * T
Score lost on match loss = (P/O) * (F/L) * T
This requires further testing on the maths to see if either one is suitable for round robin PUGs. The "tournament type" factor can be ignored for this use case alone, however if we want to ever merge the data back to SETO, it may be useful (although maybe it can be defined as 1 for PUGs and a higher number for other tournament types).
At SETO, we'd developed a couple of score formulas, not designed for PUGs specifically:
Formula type 1:
T = Tournament Type
S = Tournament Size
P = Player Position
M = No of matches they played
W = No of wins they had
Score (added on at the end of a tournament) = (S-P) * (W/M) * T
Formula type 2:
T = Tournament Type
O = Average score of Opponent's team
P = Player's Score
F = Leaderboard Placement in match
L = Amount of players in match
Score gained on match win = (O/P) * (L/F) * T
Score lost on match loss = (P/O) * (F/L) * T
This requires further testing on the maths to see if either one is suitable for round robin PUGs. The "tournament type" factor can be ignored for this use case alone, however if we want to ever merge the data back to SETO, it may be useful (although maybe it can be defined as 1 for PUGs and a higher number for other tournament types).