{% import "macros.html" as macros -%} TrueScrub™ Matchmaking

TrueScrub™ Matchmaking

{{ macros.season_menu("/matchmaking", selected_season, seasons) }} {% if latest %}

Proposes evenly matched teams given the players in the last round.

{% else %}

Proposes evenly matched teams for a given set of players.

{% endif %}

Who is playing?

{% if teams %}

Matches

{% for match in teams %}
Quality: {{ (100 * match.quality)|int }}%

Team 1

Win: {{ (100 * match.team1_win_probability)|int }}%
    {% for player in match.team1 %}
  • {{ player.steam_name }}
  • {% endfor %}

Team 2

Win: {{ (100 * match.team2_win_probability)|int }}%
    {% for player in match.team2 %}
  • {{ player.steam_name }}
  • {% endfor %}
{% endfor %}
{% endif %}