Version: en

100 Player Battle Royale Sample

100 player battle royale#

This config file configures the matchmaking logic for a 100 player Battle Royale game with the following criteria:

  • All players will be matched into the default QoS region specified in the config.
  • All players will be matched in a single team.
  • The matchmaking logic will create a match only if there is a minimum of 50 players.
  • The maximum number of players put together in a team will be 100.

Config File#

{
"Matchmaking": {
"Name": "100p-battle-royale",
"TargetFunction": {
"Name": "standard"
},
"Config": {
"Name": "100p-battle-royale",
"QosConfig": {
"DefaultQoSRegion": "00000-000000-00000A",
"GroupByStrategy": 1
},
"TeamRules": {
"Teams": [
{
"Name": "mainTeam",
"TeamCount": {
"Min": 1.0,
"Max": 1.0
},
"PlayerCount": {
"Min": 50.0,
"Max": 100.0
}
}
]
}
}
}
}