• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 03:24
CEST 09:24
KST 16:24
  • 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
Maestros of the Game: Week 1/Play-in Preview9[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy9
Community News
Weekly Cups (August 25-31): Clem's Last Straw?8Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris45Weekly Cups (Aug 11-17): MaxPax triples again!15Weekly Cups (Aug 4-10): MaxPax wins a triple6
StarCraft 2
General
Weekly Cups (August 25-31): Clem's Last Straw? #1: Maru - Greatest Players of All Time Maestros of the Game: Week 1/Play-in Preview Weekly Cups (Aug 11-17): MaxPax triples again! 2024/25 Off-Season Roster Moves
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris Monday Nights Weeklies LiuLi Cup - September 2025 Tournaments 🏆 GTL Season 2 – StarCraft II Team League $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
Custom Maps
External Content
Mutation # 489 Bannable Offense Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies
Brood War
General
ASL20 General Discussion Starcraft at lower levels TvP No Rain in ASL20? Victoria gamers BGH Auto Balance -> http://bghmmr.eu/
Tourneys
Is there English video for group selection for ASL [ASL20] Ro24 Group F [IPSL] CSLAN Review and CSLPRO Reimagined! Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread General RTS Discussion Thread Nintendo Switch Thread Path of Exile Warcraft III: The Frozen Throne
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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Russo-Ukrainian War Thread YouTube Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s) Gtx660 graphics card replacement
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
How Culture and Conflict Imp…
TrAiDoS
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
INDEPENDIENTE LA CTM
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 743 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
Belgium6771 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
Belgium6771 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
2013 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
Belgium6771 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
Next event in 2h 36m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech71
StarCraft: Brood War
ggaemo 170
Zeus 115
sSak 102
ToSsGirL 56
Leta 50
Shine 32
Noble 30
NaDa 29
ajuk12(nOOB) 27
JulyZerg 17
[ Show more ]
Sacsri 15
Hm[arnc] 14
Bale 9
ivOry 5
Dota 2
BananaSlamJamma115
League of Legends
C9.Mang0308
Counter-Strike
Stewie2K763
shoxiejesuss214
Other Games
singsing753
JimRising 427
Mew2King122
NeuroSwarm53
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1492
• Stunt1024
Upcoming Events
Sparkling Tuna Cup
2h 36m
PiGosaur Monday
16h 36m
LiuLi Cup
1d 3h
Replay Cast
1d 16h
The PondCast
2 days
RSL Revival
2 days
Maru vs SHIN
MaNa vs MaxPax
OSC
2 days
MaNa vs SHIN
SKillous vs ShoWTimE
Bunny vs TBD
Cham vs TBD
RSL Revival
3 days
Reynor vs Astrea
Classic vs sOs
BSL Team Wars
3 days
Team Bonyth vs Team Dewalt
CranKy Ducklings
4 days
[ Show More ]
RSL Revival
4 days
GuMiho vs Cham
ByuN vs TriGGeR
Cosmonarchy
4 days
TriGGeR vs YoungYakov
YoungYakov vs HonMonO
HonMonO vs TriGGeR
[BSL 2025] Weekly
4 days
RSL Revival
5 days
Cure vs Bunny
Creator vs Zoun
BSL Team Wars
5 days
Team Hawk vs Team Sziky
Sparkling Tuna Cup
6 days
Liquipedia Results

Completed

CSL Season 18: Qualifier 2
SEL Season 2 Championship
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
CSL 2025 AUTUMN (S18)
Maestros of the Game
Sisters' Call Cup
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

LASL Season 20
2025 Chongqing Offline CUP
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
RSL Revival: Season 2
EC S1
BLAST Rivals Fall 2025
Skyesports Masters 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open 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.