Hosting a tournament on BingoMC is free and encouraged. Please get in touch with us if you have any questions. We are happy to help with setup and planning.
Setting Up Games
Use the private game customization panel to create game templates. This lets you create custom cards or item pools and configure the game exactly how you want it.
Amount Of Players
We advise not having more than 16 players per game. We cannot guarantee good performance with more players. You are free to create multiple 16-player games.
Teams
The private game customization panel allows you to turn on teams mode. For tournaments, it can be useful to configure forced teams. This locks teams and automatically puts players in the teams that have been set on the panel.
Getting Stats
Some tournaments aggregate stats to decide on a winner. You can get game stats by tagging your private game through the panel and requesting the stats after the games have completed.
- Tag your game on the private game panel. Choose a unique tag.
- Use the REST API to fetch stats for that tag.
- Multiple games can use the same tag when you want aggregate tournament stats.
GET /api/partner/tags/<tag>
Fetch game stats for a tag. This example response is for the tag jens_tag.
[
{
"id": 90857,
"winner": "117bcad6-abb1-4eb8-8c50-a6c15a713c8c",
"full_card": false,
"game_start": "2024-12-26T10:22:19",
"game_end": "2024-12-26T10:23:02",
"items": [
"RED_WOOL",
"GOLDEN_HELMET",
"APPLE",
"ARROW",
"CHAIN",
"REDSTONE",
"YELLOW_WOOL",
"GREEN_DYE",
"FEATHER"
],
"players": [
{
"uuid": "117bcad6-abb1-4eb8-8c50-a6c15a713c8c",
"items_checked": [
"CHAIN",
"FEATHER",
"RED_WOOL"
],
"item_times": [
{
"item": "CHAIN",
"time": 7636
},
{
"item": "FEATHER",
"time": 12350
},
{
"item": "RED_WOOL",
"time": 42981
}
]
},
{
"uuid": "27aba7e9-8d3f-424e-bc05-013efbe75430",
"items_checked": [
"YELLOW_WOOL",
"APPLE"
],
"item_times": [
{
"item": "YELLOW_WOOL",
"time": 27149
},
{
"item": "APPLE",
"time": 37852
}
]
}
]
}
]Item times are measured in milliseconds from the start of the game. Game timestamps are returned in UTC.