<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rurunsky</title>
    <description>The latest articles on DEV Community by Rurunsky (@rantzy129).</description>
    <link>https://dev.to/rantzy129</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4108495%2Feb7a5e68-92cb-4241-8b5d-96d8b2b1ee16.png</url>
      <title>DEV Community: Rurunsky</title>
      <link>https://dev.to/rantzy129</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rantzy129"/>
    <language>en</language>
    <item>
      <title>I Built a Free Valorant Tournament Bracket and Map Veto Tool</title>
      <dc:creator>Rurunsky</dc:creator>
      <pubDate>Thu, 03 Sep 2026 17:28:58 +0000</pubDate>
      <link>https://dev.to/rantzy129/i-built-a-free-valorant-tournament-bracket-and-map-veto-tool-34hi</link>
      <guid>https://dev.to/rantzy129/i-built-a-free-valorant-tournament-bracket-and-map-veto-tool-34hi</guid>
      <description>&lt;p&gt;I’ve been building a side project called Draftix, a free web toolkit for Valorant teams, scrims, and tournament organizers.&lt;/p&gt;

&lt;p&gt;The goal is simple: give players and organizers one place to manage the competitive flow of a Valorant event without switching between multiple websites.&lt;/p&gt;

&lt;p&gt;You can try it here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://draftix.tech" rel="noopener noreferrer"&gt;https://draftix.tech&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What is Draftix?&lt;/p&gt;

&lt;p&gt;Draftix is a free Valorant tournament toolkit that includes:&lt;/p&gt;

&lt;p&gt;Valorant tournament brackets&lt;br&gt;
Valorant map veto / pick-ban&lt;br&gt;
Agent banning&lt;br&gt;
Team balancing&lt;br&gt;
Match result tracking&lt;br&gt;
Champion / winner pages&lt;br&gt;
Shareable tournament pages&lt;/p&gt;

&lt;p&gt;I built it mainly for small tournaments, school esports events, LAN tournaments, Discord communities, and custom games.&lt;/p&gt;

&lt;p&gt;Why I built a Valorant tournament tool&lt;/p&gt;

&lt;p&gt;A lot of smaller Valorant tournaments use separate tools for different parts of the event.&lt;/p&gt;

&lt;p&gt;One website might be used for the bracket, another for map vetoes, and team balancing might still be done manually.&lt;/p&gt;

&lt;p&gt;I wanted Draftix to handle more of that workflow in one place.&lt;/p&gt;

&lt;p&gt;For example, an organizer should be able to:&lt;/p&gt;

&lt;p&gt;Create tournament → add teams → generate bracket → veto maps → play matches → record results → declare the champion&lt;/p&gt;

&lt;p&gt;without making the process unnecessarily complicated.&lt;/p&gt;

&lt;p&gt;Building the Valorant map veto system&lt;/p&gt;

&lt;p&gt;The map veto feature was one of the more interesting parts to design.&lt;/p&gt;

&lt;p&gt;A Valorant map veto tool sounds simple at first, but there are several things to consider:&lt;/p&gt;

&lt;p&gt;Best-of-1, Best-of-3, or Best-of-5&lt;br&gt;
Which team bans first&lt;br&gt;
Alternating map bans&lt;br&gt;
Map picks&lt;br&gt;
Current competitive map pool&lt;br&gt;
Side selection&lt;br&gt;
Decider maps&lt;br&gt;
Showing the veto history clearly&lt;/p&gt;

&lt;p&gt;The challenge wasn’t just making the logic work.&lt;/p&gt;

&lt;p&gt;It was making the map veto process easy enough that tournament organizers and players could understand what was happening immediately.&lt;/p&gt;

&lt;p&gt;Valorant tournament brackets&lt;/p&gt;

&lt;p&gt;Draftix also includes a Valorant tournament bracket generator.&lt;/p&gt;

&lt;p&gt;The idea is to let organizers create a tournament, add participating teams, generate the bracket, and update match winners as the tournament progresses.&lt;/p&gt;

&lt;p&gt;Once the final match is completed, Draftix can show a champion result page for the winning team.&lt;/p&gt;

&lt;p&gt;I’m also working on improving public tournament pages so organizers can share their tournament directly with players and viewers.&lt;/p&gt;

&lt;p&gt;Agent banning and drafting&lt;/p&gt;

&lt;p&gt;Another feature is a Valorant agent ban / draft tool.&lt;/p&gt;

&lt;p&gt;This can be used for custom formats, community events, or tournaments that want to experiment with agent drafting and banning.&lt;/p&gt;

&lt;p&gt;It isn’t meant to replace Riot’s competitive rules. It’s more of a flexible tool for custom tournaments and community game formats.&lt;/p&gt;

&lt;p&gt;Valorant team balancing&lt;/p&gt;

&lt;p&gt;Draftix also has a Valorant team balancer for custom games.&lt;/p&gt;

&lt;p&gt;Instead of manually dividing players into two teams, users can enter players and create more balanced teams for scrims or custom matches.&lt;/p&gt;

&lt;p&gt;This is especially useful for community games where players have different ranks or skill levels.&lt;/p&gt;

&lt;p&gt;What I learned while building Draftix&lt;/p&gt;

&lt;p&gt;I’m an IT student, and this project gave me a chance to work on something beyond a normal school CRUD application.&lt;/p&gt;

&lt;p&gt;Some of the things I’ve been learning through Draftix include:&lt;/p&gt;

&lt;p&gt;Designing real user workflows&lt;br&gt;
Managing tournament state&lt;br&gt;
Building interactive drafting systems&lt;br&gt;
Responsive UI design&lt;br&gt;
Reusable components&lt;br&gt;
SEO for web applications&lt;br&gt;
Public shareable pages&lt;br&gt;
Building features based on actual user feedback&lt;/p&gt;

&lt;p&gt;One of the biggest lessons has been that creating a feature is only part of the work.&lt;/p&gt;

&lt;p&gt;Making that feature obvious and easy to use is usually the harder part.&lt;/p&gt;

&lt;p&gt;Keeping the interface simple&lt;/p&gt;

&lt;p&gt;I wanted Draftix to feel like a competitive gaming tool without becoming an overwhelming esports dashboard.&lt;/p&gt;

&lt;p&gt;For small tournaments, organizers usually don’t need hundreds of settings.&lt;/p&gt;

&lt;p&gt;They mainly need the important actions to be fast and clear.&lt;/p&gt;

&lt;p&gt;That’s why I’ve been trying to keep the tournament workflow straightforward and make tools like map vetoes accessible with as little setup as possible.&lt;/p&gt;

&lt;p&gt;What’s next for Draftix?&lt;/p&gt;

&lt;p&gt;I’m currently working on:&lt;/p&gt;

&lt;p&gt;Better tournament bracket management&lt;br&gt;
Improved BO3 and BO5 map veto flows&lt;br&gt;
Competitive map pool presets&lt;br&gt;
Public tournament pages&lt;br&gt;
Better match sharing&lt;br&gt;
Tournament champion graphics&lt;br&gt;
Improved mobile support&lt;br&gt;
More customization for organizers&lt;/p&gt;

&lt;p&gt;I’m also looking for Valorant tournament organizers, school esports groups, LAN events, internet cafés, and Discord communities willing to test the platform.&lt;/p&gt;

&lt;p&gt;If you organize Valorant events, I’d especially like feedback on the tournament bracket and map veto workflow.&lt;/p&gt;

&lt;p&gt;You can try Draftix here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://draftix.tech" rel="noopener noreferrer"&gt;https://draftix.tech&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback, criticism, and feature suggestions are welcome.&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>tools</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
