Skip to main content

Team Fight Tactics Zero to Master: My 501-Game Journey to Reach the Highest Static Rank in TFT

Introduction

Hi, I'm ninjahoahong, a casual gamer with a fondness for strategy games. After achieving Queen rank in Autochess three months ago, I sought a new challenge and turned to Team Fight Tactics (TFT). Despite my experience in the auto-battler genre, I soon realized that mastering TFT would entail a significant amount of learning and trial-and-error.

In TFT, players aim for two types of ranks: static and dynamic. Static ranks, like Iron, Bronze, and so on, reflect overall performance and skill level in the game, achieved through consistent play and improvement. As a casual player, my aim is to reach the highest static rank, Master. Additionally, TFT features dynamic ranks that change based on recent performance, such as Grandmaster and Challenger. These ranks are more temporary and competitive, requiring steady performance to achieve and maintain. While they're admirable, I'll likely aim for those dynamic ranks next, but as a casual player, my focus is to start small and achieve Master rank first.

Join me as we explore my 501-game journey from zero to master in TFT. Together, we'll navigate the strategies, victories, and challenges encountered along the way in this exciting auto-battler adventure.

Summary of the Journey

The journey started in set 10 patch 13.24. As a newcomer to TFT, I found myself navigating through the basics of the game. Learning the different champion synergies, understanding the carousel mechanics, and mastering the art of economy management were my primary focus during this phase. It was a period of exploration and experimentation, where every match brought new insights and lessons.

The exploration phase continued into the beginning of patch 13.25. As I grew more comfortable with the game mechanics, I began to delve deeper into refining my strategies and understanding the evolving meta. During this time, I steadily climbed from Iron 2 to Gold 1 by the end of the patch, showcasing my progress and dedication to improving my gameplay.

However, the journey was far from over. With each new patch, fresh challenges emerged, urging me to adapt and elevate my gameplay. In Patch 14.1, I grappled with the intricacies of the game, spending much of the time navigating through the trials of gold rank. It wasn't until the closing moments of the patch that I finally breached into the esteemed Platinum tier.

As Patch 14.3 and its subsequent b variant unfolded, I swiftly ascended to Emerald rank early on, only to find myself ensnared within its grasp for the remainder of the patch. Despite the initial surge, progress seemed to halt, presenting a new set of hurdles to overcome.

Yet, it was in Patches 14.4 and 14.5 that my persistence bore fruit. Through steady determination and strategic refinement, I embarked on a steady climb from Emerald to Diamond, culminating in the realization of my original goal: reaching the Master tier in my 501st game.

That summarizes my journey to Master. Next, I'll be sharing the tools and experiences I've gathered along the way, offering insights for anyone with a similar goal.

Some Experience

Composition Selection: When choosing compositions, I prioritize those that offer a strong 2* carry early in the game, while also having the potential to develop into a reliable 4* secondary carry later on. These compositions should not only be cost-effective but also provide adaptability. Examples include formations like 6 Sentinels complemented by Senna and Caitlyn, Superfan Seraphine alongside Ahri, and True Damage Senna supported by Seraphine, Ahri, or Caitlyn. My preferred playstyle involves committing to compositions I'm most comfortable with, rather than constantly adjusting to the enemy's roster.

Economic Strategy: Economically, my goal is to secure victories in every game and aim for win streaks whenever feasible. I seldom pursue a losing streak strategy, as my compositions generally don't demand significant investment. That way, I can keep my opponents' health low before they stabilize their rosters, thereby increasing my chances of reaching the top 4.

Headliner Selection: When selecting a headliner, I typically opt for any Superfan, Disco, or K/DA hero.

Resources and Tools: For items, augments, and reroll rates, I rely on the Tactics Tools website. In addition, I also analyze previous matches of different top players and review my own match history on that site to learn from both my own mistakes and those of others.

Further Learning: When I reached Platinum, I started watching analysis videos from channels such as FrodanVODs and GM_BLUE.

Thank you for reading. Good luck.

Comments

Popular posts from this blog

The first taste of Rust - A simple you tube downloader

Recently, I just learnt Rust and using it to write a simple youtube downloader with reference from node-ytdl . In this blog, I would like to share the code and how did I make it. You can find the full source code here . Install development environment I am using Windows 10 and scoop package manager. Therefore, I use the following commands. Run scoop install rustup-msvc to install rustup . Run setx "%path%;%USERPROFILE%\\scoop\\persist\\rustup\\.cargo\\bin" to add rustup to the path. Restart termial (git-bash in my case) and check the installation with rustup --version; rustc --version; cargo --version Export custom RUST_HOME : export RUSTUP_HOME=$HOME/scoop/persist/rustup/.cargo/bin/rustup Install a toolchain for rustup : rustup toolchain install stable-x86_64-pc-windows-msvc Setup project Run cargo new simple_rust_youtube_downloader --bin && cd simple_rust_youtube_downloader to create and navigate to the project. Add these dependencies to ...

Blogger Post Template

The easiest way to start using a template is that you visit your own typical blog and change to HTML tag and copy the blog to the Settings --> Post, comments, and sharing --> Post Template. Then remove the real text and replace it with the template text. For example, this blog's template is: Reference: https://support.google.com/blogger/answer/154172?visit_id=1-636349071961278260-2951406294&rd=1 - ninjahoahong

How does virtual reality (VR) work?

Today, I learned a basic of how VR works and want to share you my short summary: VR feel can be achieved by using head mounted displays to show different 2D pictures (different angles, depth) to each of a user' eyes to immerse the feeling of staying in a 3D world to the user. The immersion can be increased by increasing the field of view (typical field of view is 100 to 110 degree).  FPS requires at least 60fps for the user to feel okay. Different trackings such as head tracking, motion tracking, and eye tracking decide when to show which pictures provide more complete VR experience. After learning this basic, I am interested in making some experiments with VR application for Android phones and tablets. I will share those learning experience after the experiments. References: http://www.androidauthority.com/virtual-reality-work-702049/ https://www.wareable.com/vr/how-does-vr-work-explained