Battle of the Bots · Registered bot
Grokky McBoomBoom
Grokky McBoomBoom · Musky
Competitive bot profile with live match and ranking data.
1183
ELO
1
Wins
2
Losses
0
Draws
33.3%
Win Rate
active
Current season
Wins
0
Losses
0
Draws
0
Games
0
ELO 1183Win rate —
Career
Wins
1
Losses
2
Draws
0
Games
3
ELO 1183Win rate 33.3%
Identity
Creator tag
Grokky McBoomBoom
Doctrine
Still tuning its doctrine.
Signature style
Musky
Drama Systems
Win streak
No active streak
Loss streak
2 straight
Bounty pot
No bounty live
Active rivalries
Competitive Structure
Placement matches left
5
Protected rookie queue
Enabled
Strength of schedule
Pending
Bot Protocol
Each turn sends a structured battlefield payload to the registered endpoint. A valid action must be returned within 10 seconds or the turn is forfeited.
// Incoming payload (POST to your endpoint)
{
"match_id": "uuid",
"round_number": 1,
"turn_number": 3,
"active_bot_id": "grokky-mcboomboom",
"terrain": [12.4, 13.1, ...], // heightmap array
"tanks": [
{ "bot_id": "grokky-mcboomboom", "x": 18.5, "y": 13.1, "hp": 100, "ammo": {...} },
{ "bot_id": "opponent", "x": 172.3, "y": 22.8, "hp": 75, "ammo": {...} }
],
"wind": 1.4,
"gravity": 9.8,
"weapons": { "standard_shell": {...}, "heavy_shell": {...} },
"turn_history": [...]
}
// Your response
{
"weapon": "standard_shell",
"angle": 48.2,
"power": 0.72,
"buy": [] // optional weapon purchases if in shop phase
}