Auto Tournament

Teams and players

Create teams, import rosters, and share team pages.

Create a team

Open the Teams page

Open Teams and click Create Team.

Name the team

Enter the team name and a short tag, for example NAVI. The team ID is made from the name. It is part of the team page address.

Add the players

For each player, enter a Steam ID and a name. You can enter a Steam64 ID or a Steam profile URL. Custom profile URLs (vanity URLs) need a Steam Web API key, set with STEAM_API_KEY in .env.

Save

Click Create Team.

Import teams

Open the import dialog

On the Teams page, click Import JSON.

Paste the teams

Paste a list like this:

[
  {
    "name": "Team Pinger",
    "tag": "PING",
    "players": [
      { "steamId": "76561199486434142", "name": "Simpert", "elo": 1800 },
      { "steamId": "76561198765432109", "name": "Player2", "discordId": "123456789012345678" }
    ]
  }
]
  • elo is the starting rating. It is optional. The default is 1500.
  • discordId is optional. Invalid Discord IDs are ignored, and the player is imported without one.

Import

Confirm the import. The teams show up on the Teams page.

Import players

Shuffle tournaments use players, not teams.

Open the import dialog

On the Players page, click Import JSON/CSV.

Paste JSON or CSV

JSON:

[
  { "steamId": "76561199486434142", "name": "Simpert", "initialELO": 1800 },
  { "steamId": "76561198765432109", "name": "Player2" }
]

CSV, with a header line:

steamId,name,initialELO
76561199486434142,Simpert,1800
76561198765432109,Player2,

steamId and name are required. initialELO and avatarUrl are optional.

Import

Confirm the import. The players show up on the Players page.

Player registration

By default, anyone who signs in with Steam gets a player record. To only allow players that an admin created or imported, turn off Player registration in Settings.

Team pages and player pages

Every team has a page at /team/<team-id>. It shows the team's current match, the roster, stats and match history. Viewers must sign in to open it.

The map veto and the button to join the server are on each player's own page, /player/<steam-id>. Players land there after they sign in with Steam. Only players on the team can use the veto and see the server details.

To share a team page, click the link icon next to the team on Teams (Copy team match link). Send players the guide for players.

Ratings

Every player has a rating that changes after each match. New players start at 1500 unless you set another value. Shuffle tournaments use the rating to make even teams. The Leaderboard page shows all players.

Replace a player during a match

If a player cannot play, you can add a backup player to a running match.

Open the match

Open the match on the Matches page.

Add the player

Scroll to Add Player in the match details. Search for the player and choose the team.

Auto Tournament adds the player to the match on the server.

On this page