Version: en

6v6 Deathmatch Sample

6v6 Deathmatch#

This config file configures the matchmaking logic for a 6 vs. 6 deathmatch game with the following criteria:

  • All players will be matched into the default QoS region specified in the config.
  • Players will be matched into one of two teams (BlueTeam or RedTeam).
  • The matchmaking logic will create a match only if there is a minimum of 2 players on each team.
  • The maximum number of players on either team is 6 players.

Config File#

{
"Matchmaking": {
"Name": "6v6-deathmatch",
"TargetFunction": {
"Name": "standard"
},
"Config": {
"Name": "6v6-deathmatch",
"QosConfig": {
"DefaultQoSRegion": "00000-000000-00000A",
"GroupByStrategy": 1
},
"TeamRules": {
"Teams": [
{
"Name": "BlueTeam",
"TeamCount": {
"Min": 1.0,
"Max": 1.0
},
"PlayerCount": {
"Min": 2.0,
"Max": 6.0
}
},
{
"Name": "RedTeam",
"TeamCount": {
"Min": 1.0,
"Max": 1.0
},
"PlayerCount": {
"Min": 2.0,
"Max": 6.0
}
}
]
}
}
}
}