• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 22:35
CET 04:35
KST 12:35
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Winners4Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
Starcraft, SC2, HoTS, WC3, returning to Blizzcon!21$5,000+ WardiTV 2025 Championship5[BSL21] RO32 Group Stage3Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win9
StarCraft 2
General
TL.net Map Contest #21: Winners Starcraft, SC2, HoTS, WC3, returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win 5.0.15 Patch Balance Hotfix (2025-10-8)
Tourneys
Constellation Cup - Main Event - Stellar Fest $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond) $3,500 WardiTV Korean Royale S4
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
[BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review Practice Partners (Official) [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[Megathread] Daily Proleagues [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION
Strategy
PvZ map balance Current Meta How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV Nintendo Switch Thread ZeroSpace Megathread General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Russo-Ukrainian War Thread YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Career Paths and Skills for …
TrAiDoS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1639 users

Intro to SC:BW AI development - Page 2

Blogs > mooose
Post a Reply
Prev 1 2 3 4 Next All
mooose
Profile Blog Joined April 2010
Japan200 Posts
Last Edited: 2015-05-19 12:40:06
May 19 2015 02:58 GMT
#21
On May 19 2015 08:47 Lobotomist wrote:
So, generally do these AIs execute certain builds or play adaptively like chess AIs which execute certain moves based on win percentage rather than a "game plan"? if it's builds are they mostly rushes? I'd imagine it gets pretty complex the longer the game goes


Some of the AIs, my one included, are capable of playing adaptively to a certain degree, but I don't think any of them calculate the best possible move like a Chess AI would. The range of possible moves in StarCraft is enormous; there's a much larger number of pieces on the board than Chess, every piece is capable of moving simultaneously, and it's possible to create new pieces. Then you add in the fact that you have up to 55ms to calculate before being disqualified and the Chess style solution isn't really workable.

The focus of my AI last year was to be reactive in terms of unit composition. I based it around David Churchill's StarCraftBuildOrderSearch which was taken from his UAlbertaBot AI. This allows you to input a goal set of units, for example 10 Marines and 1 Siege Tank. It then takes into account the current game state such as your resources, worker count, tech level and current production capacity and calculates a viable build order that would result in the creation of the goal set of units. So if I already have a few barracks and a factory and a healthy worker count, and I put in the previous example goal set of units, the outputted build order would probably just be to train marines and a tank and build enough supply depots to accommodate those units. However if, say, I don't have a factory, then the build order will include the construction of a factory before it attempts to train any tanks.

To determine the build order goals to feed into the build order search, my AI would collect information about it's opponent. It would store the number and type of all enemy units that it had seen, and translate these into a percentage. So if it sees 8 Mutas and 12 lings, the enemy composition would be 40% Muta, 60% Zergling. It then had a table of enemy unit compositions and compositions that were 'counters' to them. It would search through the table for the most similar enemy composition to the current one and then retrieve the 'counter' unit composition and use that as a build order goal to feed into the build order search. The build order that was outputted by the build order search could then be executed by the lower level parts of the AI system that manage building placement and unit training and stuff.

So what I'm saying is that, in a limited way, my AI was capable of scouting it's opponent and reacting to its unit composition. If there were no similar enough unit compositions in the table, it was also capable of slightly adapting a previous one to fit a new situation, and if the new composition was successful in the game, it would store it in the table for future use. I found that last part wasn't particularly effective though, maybe I'll get round to improving it this year.

Since I've switched my AI to zerg this year, I had problems with the build order search module I was using, so I have replaced it with my own one. My one is pretty crude at the moment, but it's sort of working ok.

A major weakness from last year was that reacting in terms of unit compositions is only one of the factors a StarCraft player needs to pay attention to. My AI wasn't capable of comparing its economy to its opponent's, so sometimes it would be sitting on one base trying to concoct the perfect composition while it's opponent would be macroing on 3 bases. It doesn't really matter what type of unit you build if you only have 1/3rd of your opponent's economy. This year I'm trying to make my AI capable of adapting in other meaningful ways.

I think some of the AI systems just follow a scripted build order throughout the game, which can be pretty effective because at least the build order can be optimised by the developer. My AI last year would often come out with the most ridiculous build orders (3 robo observer in reaction to a single lurker).
www.teamyao.com @TeamYAO
Xeofreestyler
Profile Blog Joined June 2005
Belgium6773 Posts
Last Edited: 2015-05-19 12:37:52
May 19 2015 12:26 GMT
#22
On May 18 2015 21:13 sscaitournament wrote:
Show nested quote +
On May 16 2015 08:51 ejac wrote:
Hmmm... hope you guys run this again next year, I'll join. I'm just starting to learn C and am proficient enough in Java.

ejac, SSCAIT tournament (http://sscaitournament.com/) runs 24/7 - you can enter any time and then submit new bot versions when you have them. And it's all streamed live.
If you prefer Java, there's a java tutorial at http://sscaitournament.com/index.php?action=tutorial


I was watching the stream, are those games live? They seemed to be running at 2x speed, is that correct?
I read somewhere that your bot can't take more than 55ms per frame. Wouldn't this then be impacted by the higher framerate?

I think some of the AI systems just follow a scripted build order throughout the game, which can be pretty effective because at least the build order can be optimised by the developer. My AI last year would often come out with the most ridiculous build orders (3 robo observer in reaction to a single lurker).


hahaha brilliant. An obvious solution would be to just simply hard-code 'no multiple buildings of kind x'. You mentioned the table for future use. If your bot would do enough 'training sessions', wouldn't it figure out that this build sucked? It doesn't really teach it conceptually why it sucks but at least it seems like experience/learning is a more elegant solution to me. Actually letting a cpu conceptually understand this game is pretty much the million dollar question I guess.

Has anyone done any research towards using convolutional & recurrent neural nets in regards to tactical decisions (or perhaps even strategy?) I'm by no means an expert on this, I just know they're used for all sorts of computer vision tasks and abstracting patterns. So it doesn't seem too far out to apply the idea to analyzing (enemy) unit formations.
Graphics
Cazimirbzh
Profile Joined February 2014
334 Posts
Last Edited: 2015-05-19 16:54:49
May 19 2015 16:54 GMT
#23
On May 19 2015 21:26 Xeofreestyler wrote:
Show nested quote +
On May 18 2015 21:13 sscaitournament wrote:
On May 16 2015 08:51 ejac wrote:
Hmmm... hope you guys run this again next year, I'll join. I'm just starting to learn C and am proficient enough in Java.

ejac, SSCAIT tournament (http://sscaitournament.com/) runs 24/7 - you can enter any time and then submit new bot versions when you have them. And it's all streamed live.
If you prefer Java, there's a java tutorial at http://sscaitournament.com/index.php?action=tutorial


I was watching the stream, are those games live? They seemed to be running at 2x speed, is that correct?
I read somewhere that your bot can't take more than 55ms per frame. Wouldn't this then be impacted by the higher framerate?

Show nested quote +
I think some of the AI systems just follow a scripted build order throughout the game, which can be pretty effective because at least the build order can be optimised by the developer. My AI last year would often come out with the most ridiculous build orders (3 robo observer in reaction to a single lurker).


hahaha brilliant. An obvious solution would be to just simply hard-code 'no multiple buildings of kind x'. You mentioned the table for future use. If your bot would do enough 'training sessions', wouldn't it figure out that this build sucked? It doesn't really teach it conceptually why it sucks but at least it seems like experience/learning is a more elegant solution to me. Actually letting a cpu conceptually understand this game is pretty much the million dollar question I guess.

Has anyone done any research towards using convolutional & recurrent neural nets in regards to tactical decisions (or perhaps even strategy?) I'm by no means an expert on this, I just know they're used for all sorts of computer vision tasks and abstracting patterns. So it doesn't seem too far out to apply the idea to analyzing (enemy) unit formations.


more than 1 million dollars, my friend, a lot more^^
An "AI" will never know if a build "sucks"^^. It'll required a input in order to provoke a reaction countering the craziness of the AI

In my opinion based on an average maths lvl for a nerd, i think RNN will be useless as the number of bifurcation can be huge in one game. However there is so many type of RNN so..... we need an expert :p

Lobotomist
Profile Joined May 2010
United States1541 Posts
May 19 2015 23:35 GMT
#24
Damn, very interesting. Seems like a lot of rushes would be difficult to stop, in particular anything that requiresa worker pull. Or things that require inference (ie opponent is mining lots of gas but no tech buildings / units are seen). While creating a reactive ai that "plays" is certainly a more interesting challenge, i would think an ai that executes difficult-to-defend rushes would be more successful. Thoughts?
Teching to hive too quickly isn't just a risk: it's an ultrarisk
mooose
Profile Blog Joined April 2010
Japan200 Posts
May 20 2015 01:19 GMT
#25
On May 19 2015 21:26 Xeofreestyler wrote:
hahaha brilliant. An obvious solution would be to just simply hard-code 'no multiple buildings of kind x'. You mentioned the table for future use. If your bot would do enough 'training sessions', wouldn't it figure out that this build sucked? It doesn't really teach it conceptually why it sucks but at least it seems like experience/learning is a more elegant solution to me. Actually letting a cpu conceptually understand this game is pretty much the million dollar question I guess.


My bot's learning abilities were pretty shitty so no it wouldn't have. If it had had success executing a build in the past then it would've tried it again in future. It's possible that it could win a game even with a retarded build (say it's opponent bugs out or something) and then think that this build is ok to use again. Using some kind of learning mechanism would be a really nice feature if done well though (mine was not at all effective so I removed it from the AI for the competitions).

On May 20 2015 08:35 Lobotomist wrote:
Damn, very interesting. Seems like a lot of rushes would be difficult to stop, in particular anything that requiresa worker pull. Or things that require inference (ie opponent is mining lots of gas but no tech buildings / units are seen). While creating a reactive ai that "plays" is certainly a more interesting challenge, i would think an ai that executes difficult-to-defend rushes would be more successful. Thoughts?


I think you're right; in StarCraft it sometimes requires more skill to see a rush coming and stop it than it does to execute it. I think these situations usually require a more sophisticated AI too. It isn't really a 'rush' but UAlbertaBot scouts after it's first pylon, when it finds the enemy base it starts attacking one of their workers with it's scouting probe. If it gets attacked then it runs away from the threat; running round in circles round the enemy base. If it stops being attacked then it comes back and starts attacking enemy workers again.

This is a really strong opening because it basically weeds out an AIs that don't have a system in place to deal with pulling workers. If your AI simply does nothing until it gets its first fighting unit out, you will probably have lost half of your workers by the time you get rid of the probe. If you have a simple response like "If I have no fighting units, pull all my workers and defend", then you end up with all your workers chasing a single probe around in circles. Again you will lose in this situation because you won't be mining. So in order to be able to defend this single probe harassment, you have to program your AI to be able to judge the threat level of the enemy units that are attacking and defend with a proportional force. Another method could be to return workers to mining if they chase too far or for too long. Either way it forces you to put in a bit of effort in development just to defend against 1 probe.

There's lots of possible little annoying things like this you can do in a StarCraft game I think. It's pretty easy for a human player to work out what's going on and not do something stupid like pull all their workers, but it's maybe not so simple for an AI. There's loads of little things you have to worry about, and it would be impractical to try to hard-code a response to every single possibility.
www.teamyao.com @TeamYAO
Xeofreestyler
Profile Blog Joined June 2005
Belgium6773 Posts
May 20 2015 15:03 GMT
#26
I'm assuming the sscait tournament system can be used to let your bot play thousands of sessions, wouldn't this be sufficient to weed out retarded strategies? Of course the opponent needs to be somewhat capable as well, but the other bots are all open-source now, right? So why not simply brute force the approach like this until it has found optimal solutions?

Again, not an expert at all, just thinking out loud here
Graphics
nbaker
Profile Joined July 2009
United States1341 Posts
May 20 2015 18:39 GMT
#27
Thanks! I'd love to take a summer to develop a competitive AI (not that I think I'd be very successful). Maybe I can work a piece of it into a graduate school project someday ha.
LastWish
Profile Blog Joined September 2004
2015 Posts
May 20 2015 22:19 GMT
#28
The problem with algorithms that sort of "learn" is that they need thousands if not hundred thousands of samples to learn a small step.
Well you say that's how we learn too.
However that's not true, as we humans see a problem we take it and make a abstract version of that problem and make thousands calculations within our heads without playing or solving the problem for real.
Until AI's are capable of this there is no way we'll see them to make big learning steps.

So scripted bots for the win.
- It's all just treason - They bring me down with their lies - Don't know the reason - My life is fire and ice -
Cazimirbzh
Profile Joined February 2014
334 Posts
May 21 2015 16:19 GMT
#29
On May 21 2015 07:19 LastWish wrote:
The problem with algorithms that sort of "learn" is that they need thousands if not hundred thousands of samples to learn a small step.
Well you say that's how we learn too.
However that's not true, as we humans see a problem we take it and make a abstract version of that problem and make thousands calculations within our heads without playing or solving the problem for real.
Until AI's are capable of this there is no way we'll see them to make big learning steps.

So scripted bots for the win.


If you're interested on the topic, you should read the last article of Google, Deep Mind on DNQ. The AI "learns" games!! not like chest when it's just basic computing.
Humans dont make thousands of calculations to solve problem. If we could, there would not have been any need for counting frame^^ Basically, we just use memories to extrapolate alternative solutions.

SKYNET!!!!
+ Show Spoiler +
or Battle.net 5.0?
Xeofreestyler
Profile Blog Joined June 2005
Belgium6773 Posts
May 21 2015 21:46 GMT
#30
Could you make a bot that learns in some way, upload it to one of those scai tournament websites and keep the memory synced with your version of the ai? Or does it have to be disconnected from internet?
Graphics
PoP
Profile Blog Joined October 2002
France15446 Posts
May 22 2015 07:05 GMT
#31
Awesome, wanted to give BWAPI a shot for a long time, that should come in super handy.
Administrator
repomaniak
Profile Joined January 2009
Poland324 Posts
May 23 2015 19:49 GMT
#32
there was an AI bw competition like 7 years a go

can someone link that?
nepeta
Profile Blog Joined May 2008
1872 Posts
May 24 2015 16:33 GMT
#33
On May 24 2015 04:49 repomaniak wrote:
there was an AI bw competition like 7 years a go

can someone link that?


2010 AIIDE and CIG started, SSCAIT in 2011, but they are not consistently documented. I gathered the tournament websites a couple of months ago, in the links above.
Broodwar AI :) http://sscaitournament.com http://www.starcraftai.com/wiki/Main_Page
nepeta
Profile Blog Joined May 2008
1872 Posts
May 24 2015 16:38 GMT
#34
On May 22 2015 06:46 Xeofreestyler wrote:
Could you make a bot that learns in some way, upload it to one of those scai tournament websites and keep the memory synced with your version of the ai? Or does it have to be disconnected from internet?


Like Cazimirbzh said, it is a bit of a pain to learn complex behaviour if your learner (bot) is very artificial (hasn't got billions of years of evolution coded into it to learn or evolve). That said, you could play m/b/z/illions of games, the AIIDE tournament software is open source, ideally you'd need to make it faster so it could be played on a super cluster and reintegrate the results of that.

The oldest bots on SSCAIT have been there for years and played only about 4600 matches each. Compared to the number of variables involved that is not very much. Also most of these older bots have undergone major revisions, I doubt any current version has 2000 matches under its belt.
Broodwar AI :) http://sscaitournament.com http://www.starcraftai.com/wiki/Main_Page
IamTheArchitect
Profile Joined June 2011
United States46 Posts
May 25 2015 04:06 GMT
#35
Hey, does anyone who's used this know how to compile an AI from source? I would really prefer not having to get Visual Studio, and it seems like it shouldn't be that hard with only 3 files in the VS project (though there may be a lot of interactions I'm missing from just looking at the files).
Concordantly while your first question may seem the most pertinent, you may or may not realize it is also that most irrelevant.
PoP
Profile Blog Joined October 2002
France15446 Posts
May 26 2015 12:24 GMT
#36
I think it should work with Visual Studio Express, which afaik is free.
Administrator
Cazimirbzh
Profile Joined February 2014
334 Posts
Last Edited: 2015-05-27 17:15:35
May 26 2015 18:55 GMT
#37
On May 25 2015 13:06 IamTheArchitect wrote:
Hey, does anyone who's used this know how to compile an AI from source? I would really prefer not having to get Visual Studio, and it seems like it shouldn't be that hard with only 3 files in the VS project (though there may be a lot of interactions I'm missing from just looking at the files).


On May 26 2015 21:24 PoP wrote:
I think it should work with Visual Studio Express, which afaik is free.


Really?

IamTheArchitect , what's your OS ? Also do you intend to use the software for others things apart from AI compiling ? I start by suggesting SharpDevelop.


User was warned for this post
sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
May 26 2015 19:32 GMT
#38
afaik every solution file is cross compatile.

writing an AI seems a really cool thing to do, maby it I will start someday to get some dust off my c++ skills.
The harder it becomes, the more you should focus on the basics.
FunkyLich
Profile Blog Joined August 2010
United States107 Posts
May 26 2015 23:54 GMT
#39
there wouldn't happen to be golang bindings for this would there?
mooose
Profile Blog Joined April 2010
Japan200 Posts
May 27 2015 12:19 GMT
#40
I'm afraid I've only compiled using VS so I can't really help there.

Afaik there's no golang bindings either, tried googling and didn't find anything anyway :p

On May 25 2015 01:38 nepeta wrote:
+ Show Spoiler +

On May 22 2015 06:46 Xeofreestyler wrote:
Could you make a bot that learns in some way, upload it to one of those scai tournament websites and keep the memory synced with your version of the ai? Or does it have to be disconnected from internet?


Like Cazimirbzh said, it is a bit of a pain to learn complex behaviour if your learner (bot) is very artificial (hasn't got billions of years of evolution coded into it to learn or evolve). That said, you could play m/b/z/illions of games, the AIIDE tournament software is open source, ideally you'd need to make it faster so it could be played on a super cluster and reintegrate the results of that.

The oldest bots on SSCAIT have been there for years and played only about 4600 matches each. Compared to the number of variables involved that is not very much. Also most of these older bots have undergone major revisions, I doubt any current version has 2000 matches under its belt.



I think if you really wanted to, you could run automated games faster than they do at the SSCAIT tournament. Last year the AIIDE tournament went on for like a week (iirc) and all the bots played 1139 games each: results.

I think the main difficulty is creating an effective learning mechanism that will actually benefit from grinding out thousands of games. I know my feeble attempt from last year wouldn't have.
www.teamyao.com @TeamYAO
Prev 1 2 3 4 Next All
Please log in or register to reply.
Live Events Refresh
Replay Cast
23:00
WardiTV Mondays #58
LiquipediaDiscussion
OSC
22:00
Masters Cup 150 Open Qual
Liquipedia
LAN Event
18:00
Day 3: Ursa 2v2, FFA
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 185
NeuroSwarm 144
ProTech125
StarCraft: Brood War
Calm 8081
Shuttle 690
Artosis 639
Sharp 422
actioN 422
Noble 93
Icarus 8
Dota 2
LuMiX1
Other Games
tarik_tv11761
summit1g9994
JimRising 447
WinterStarcraft274
C9.Mang0223
ViBE171
FrodaN126
Organizations
Other Games
gamesdonequick767
Counter-Strike
PGL143
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Sammyuel 12
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21525
League of Legends
• Stunt312
Other Games
• Scarra543
Upcoming Events
OSC
8h 25m
LAN Event
11h 25m
Korean StarCraft League
23h 25m
CranKy Ducklings
1d 6h
LAN Event
1d 11h
IPSL
1d 14h
dxtr13 vs OldBoy
Napoleon vs Doodle
BSL 21
1d 16h
Gosudark vs Kyrie
Gypsy vs Sterling
UltrA vs Radley
Dandy vs Ptak
Replay Cast
1d 19h
Sparkling Tuna Cup
2 days
WardiTV Korean Royale
2 days
[ Show More ]
LAN Event
2 days
IPSL
2 days
JDConan vs WIZARD
WolFix vs Cross
BSL 21
2 days
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
3 days
Wardi Open
3 days
WardiTV Korean Royale
4 days
Replay Cast
5 days
Kung Fu Cup
5 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
5 days
The PondCast
6 days
RSL Revival
6 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
6 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
Stellar Fest: Constellation Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.