• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 20:41
CEST 02:41
KST 09:41
  • 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
Serral wins EWC 202524Tournament Spotlight: FEL Cracow 20259Power Rank - Esports World Cup 202580RSL Season 1 - Final Week9[ASL19] Finals Recap: Standing Tall15
Community News
[BSL 2025] H2 - Team Wars, Weeklies & SB Ladder4EWC 2025 - Replay Pack4Google Play ASL (Season 20) Announced38BSL Team Wars - Bonyth, Dewalt, Hawk & Sziky teams10Weekly Cups (July 14-20): Final Check-up0
StarCraft 2
General
Serral wins EWC 2025 The GOAT ranking of GOAT rankings EWC 2025 - Replay Pack #1: Maru - Greatest Players of All Time Greatest Players of All Time: 2025 Update
Tourneys
Sea Duckling Open (Global, Bronze-Diamond) TaeJa vs Creator Bo7 SC Evo Showmatch Sparkling Tuna Cup - Weekly Open Tournament FEL Cracov 2025 (July 27) - $10,000 live event Esports World Cup 2025
Strategy
How did i lose this ZvP, whats the proper response
Custom Maps
External Content
Mutation # 484 Magnetic Pull Mutation #239 Bad Weather Mutation # 483 Kill Bot Wars Mutation # 482 Wheel of Misfortune
Brood War
General
Flash Announces (and Retracts) Hiatus From ASL [BSL 2025] H2 - Team Wars, Weeklies & SB Ladder BW General Discussion Google Play ASL (Season 20) Announced Shield Battery Server New Patch
Tourneys
[Megathread] Daily Proleagues [BSL] Non-Korean Championship - Final weekend [BSL20] Non-Korean Championship 4x BSL + 4x China CSL Xiamen International Invitational
Strategy
Does 1 second matter in StarCraft? Simple Questions, Simple Answers Muta micro map competition [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Beyond All Reason Recover Binance Asset - Lost Recovery Masters Nintendo Switch Thread Total Annihilation Server - TAForever
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
UK Politics Mega-thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Stop Killing Games - European Citizens Initiative
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Anime Discussion Thread [\m/] Heavy Metal Thread Movie Discussion! [Manga] One Piece Korean Music Discussion
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion
World Cup 2022
Tech Support
Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment" Computer Build, Upgrade & Buying Resource Thread
TL Community
TeamLiquid Team Shirt On Sale The Automated Ban List
Blogs
Ping To Win? Pings And Their…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
StarCraft improvement
iopq
Socialism Anyone?
GreenHorizons
Eight Anniversary as a TL…
Mizenhauer
Flash @ Namkraft Laddernet …
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 706 users

TL++ [So much ++ its Meta] - Page 2

Blogs > CecilSunkure
Post a Reply
Prev 1 2 3 Next All
DusTerr
Profile Blog Joined January 2011
2520 Posts
June 28 2013 14:22 GMT
#21
how does TLPRO fit in?
1nfamous
Profile Joined October 2009
107 Posts
June 28 2013 14:37 GMT
#22
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>


its the return statement that makes your loop only run once.
BisuDagger
Profile Blog Joined October 2009
Bisutopia19237 Posts
Last Edited: 2013-06-28 14:44:46
June 28 2013 14:44 GMT
#23
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"); //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once :(
//you return the value of Tl which is 1
}
}
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
micronesia
Profile Blog Joined July 2006
United States24680 Posts
June 28 2013 15:11 GMT
#24
I'm rusty...


i = 5;
return i++;



i = 5;
return ++i;


In which case will it return 5, and in which will it return 6?
ModeratorThere are animal crackers for people and there are people crackers for animals.
Cyx.
Profile Joined November 2010
Canada806 Posts
June 28 2013 15:19 GMT
#25
On June 29 2013 00:11 micronesia wrote:
I'm rusty...


i = 5;
return i++;



i = 5;
return ++i;


In which case will it return 5, and in which will it return 6?


5 for the first, 6 for the second.
3FFA
Profile Blog Joined February 2010
United States3931 Posts
June 28 2013 15:37 GMT
#26
On June 28 2013 23:44 BisuDagger wrote:
Show nested quote +
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"); //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once :(
//you return the value of Tl which is 1
}
}

See... this is why I got a ton of handwritten quizzes wrong in my programming class this past year >.> I overlook things that the compiler warns me about.
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
quirinus
Profile Blog Joined May 2007
Croatia2489 Posts
June 28 2013 15:47 GMT
#27
TL+ gift bait? xD
All candles lit within him, and there was purity. | First auto-promoted BW LP editor.
BisuDagger
Profile Blog Joined October 2009
Bisutopia19237 Posts
June 28 2013 16:21 GMT
#28
On June 29 2013 00:37 3FFA wrote:
Show nested quote +
On June 28 2013 23:44 BisuDagger wrote:
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"); //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once :(
//you return the value of Tl which is 1
}
}

See... this is why I got a ton of handwritten quizzes wrong in my programming class this past year >.> I overlook things that the compiler warns me about.

You and me both. When I went through school I bombed all those quizzes. But after all that schooling and practice and a year or so of industry work and you will have a hawks eye for code.
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
3FFA
Profile Blog Joined February 2010
United States3931 Posts
June 28 2013 16:50 GMT
#29
On June 29 2013 01:21 BisuDagger wrote:
Show nested quote +
On June 29 2013 00:37 3FFA wrote:
On June 28 2013 23:44 BisuDagger wrote:
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"); //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once :(
//you return the value of Tl which is 1
}
}

See... this is why I got a ton of handwritten quizzes wrong in my programming class this past year >.> I overlook things that the compiler warns me about.

You and me both. When I went through school I bombed all those quizzes. But after all that schooling and practice and a year or so of industry work and you will have a hawks eye for code.

Hehe. Trust me, I'm doing tons of practice in the years ahead. In fact, I'm experimenting with making a tile-based game app at this very moment.
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
wherebugsgo
Profile Blog Joined February 2010
Japan10647 Posts
June 28 2013 17:12 GMT
#30
I really prefer +=. In fact I actually had a stylistic guide in a class once that would not allow you to use the ++ operator. The autochecker for assignments would throw an error until you changed it.
DusTerr
Profile Blog Joined January 2011
2520 Posts
June 28 2013 17:27 GMT
#31
On June 29 2013 01:50 3FFA wrote:
Show nested quote +
On June 29 2013 01:21 BisuDagger wrote:
On June 29 2013 00:37 3FFA wrote:
On June 28 2013 23:44 BisuDagger wrote:
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"); //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once
//you return the value of Tl which is 1
}
}

See... this is why I got a ton of handwritten quizzes wrong in my programming class this past year >.> I overlook things that the compiler warns me about.

You and me both. When I went through school I bombed all those quizzes. But after all that schooling and practice and a year or so of industry work and you will have a hawks eye for code.

Hehe. Trust me, I'm doing tons of practice in the years ahead. In fact, I'm experimenting with making a tile-based game app at this very moment.

I think I learned more in this thread than I did in class... (why was there always some gsl/pl/gstl on when I'm in school?)
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-06-28 17:46:11
June 28 2013 17:44 GMT
#32
On June 29 2013 02:12 wherebugsgo wrote:
I really prefer +=. In fact I actually had a stylistic guide in a class once that would not allow you to use the ++ operator. The autochecker for assignments would throw an error until you changed it.

So now instead of

void func(int i) { }
int i = 42;
func(i++);

you always write

void func(int i) { }
int i = 42;
int t;
func((t = i, i += 1, t));

Yes, that's an assignment too, even though there is no = sign in the function call.

Granted, the sequence
vector<int> v(10, 0);
int i = 0;
v[i] = i++;
Can resolve to pretty much anything your compiler wants it to, but is that a reason to avoid ++?

My C++ got really rusty from all that C# lately, geez. Had to look up all of this to make sure I'm not making mistakes...
If you have a good reason to disagree with the above, please tell me. Thank you.
BisuDagger
Profile Blog Joined October 2009
Bisutopia19237 Posts
Last Edited: 2013-06-28 18:10:04
June 28 2013 18:09 GMT
#33
You're doing it wrong if you are using the '+' symbol at all.

#include <iostream>
using namespace std;
int add(int x, int y) {
int a, b;
do {
a = x & y;
b = x ^ y;
x = a << 1;
y = b;
}while(a);
return b;
}

int main()
{
cout << add(2,6);
system("pause");
return 0;
}
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
3FFA
Profile Blog Joined February 2010
United States3931 Posts
June 28 2013 18:25 GMT
#34
wait... what are you trying to do in this code? I got lost at the beginning and then the code just changed into so many different formats that I was like then and finally,
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
BisuDagger
Profile Blog Joined October 2009
Bisutopia19237 Posts
June 28 2013 18:29 GMT
#35
On June 29 2013 03:25 3FFA wrote:
wait... what are you trying to do in this code? I got lost at the beginning and then the code just changed into so many different formats that I was like then and finally,

Write it out on paper. These are bitwise operators. It means you manipulate the bits.Convert 2 and 6 in the binary format from decimal and then follow it along.
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
3FFA
Profile Blog Joined February 2010
United States3931 Posts
June 28 2013 18:31 GMT
#36
On June 29 2013 03:29 BisuDagger wrote:
Show nested quote +
On June 29 2013 03:25 3FFA wrote:
wait... what are you trying to do in this code? I got lost at the beginning and then the code just changed into so many different formats that I was like then and finally,

Write it out on paper. These are bitwise operators. It means you manipulate the bits.Convert 2 and 6 in the binary format from decimal and then follow it along.

Oh binary! I haven't worked with those for a whole year. That explains it. Thanks, I think I understand it now
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
June 28 2013 19:54 GMT
#37
I'm going to have to fix this.

int add(int x, int y) ??<
int a, b;
do <%
a = x bitand y;
b = x ??' y;
x = a << 1;
y = b;
??> while(a);
return b;
%>


And while we're at it, we should create a wrapper class for int, maybe called inT, and only use that instead of the built in type. Then we overload the +, += and ++ operators for great success.
If you have a good reason to disagree with the above, please tell me. Thank you.
Bobbias
Profile Blog Joined March 2008
Canada1373 Posts
June 28 2013 19:56 GMT
#38
On June 29 2013 01:50 3FFA wrote:
Show nested quote +
On June 29 2013 01:21 BisuDagger wrote:
On June 29 2013 00:37 3FFA wrote:
On June 28 2013 23:44 BisuDagger wrote:
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"); //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once
//you return the value of Tl which is 1
}
}

See... this is why I got a ton of handwritten quizzes wrong in my programming class this past year >.> I overlook things that the compiler warns me about.

You and me both. When I went through school I bombed all those quizzes. But after all that schooling and practice and a year or so of industry work and you will have a hawks eye for code.

Hehe. Trust me, I'm doing tons of practice in the years ahead. In fact, I'm experimenting with making a tile-based game app at this very moment.


Incidentally, I'm also working on a tile based game at this very moment. Using LÖVE, which is nice, because Lua is a pretty cool language and I don't have to write all the boilerplate code or all the low level opengl stuff just to do 2d rendering. Just found someone's component based entity system and I'm working on building off that.
3FFA
Profile Blog Joined February 2010
United States3931 Posts
June 28 2013 20:37 GMT
#39
On June 29 2013 04:56 Bobbias wrote:
Show nested quote +
On June 29 2013 01:50 3FFA wrote:
On June 29 2013 01:21 BisuDagger wrote:
On June 29 2013 00:37 3FFA wrote:
On June 28 2013 23:44 BisuDagger wrote:
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"); //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once
//you return the value of Tl which is 1
}
}

See... this is why I got a ton of handwritten quizzes wrong in my programming class this past year >.> I overlook things that the compiler warns me about.

You and me both. When I went through school I bombed all those quizzes. But after all that schooling and practice and a year or so of industry work and you will have a hawks eye for code.

Hehe. Trust me, I'm doing tons of practice in the years ahead. In fact, I'm experimenting with making a tile-based game app at this very moment.


Incidentally, I'm also working on a tile based game at this very moment. Using LÖVE, which is nice, because Lua is a pretty cool language and I don't have to write all the boilerplate code or all the low level opengl stuff just to do 2d rendering. Just found someone's component based entity system and I'm working on building off that.

Huh. I don't believe I've heard of Lua before. I may check it out sometime in the distant future.
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
BisuDagger
Profile Blog Joined October 2009
Bisutopia19237 Posts
June 28 2013 21:07 GMT
#40
On June 29 2013 05:37 3FFA wrote:
Show nested quote +
On June 29 2013 04:56 Bobbias wrote:
On June 29 2013 01:50 3FFA wrote:
On June 29 2013 01:21 BisuDagger wrote:
On June 29 2013 00:37 3FFA wrote:
On June 28 2013 23:44 BisuDagger wrote:
On June 28 2013 22:58 3FFA wrote:
Does it go to the if statement first? I thought it went to the for statement first. >.>

    
BOOL newday = false; //Initialize it to avoid warnings
//YES or NO answers only. I fixed the caps because C++ is character specific

if(newday = YES) //newday has been assigned the value of YES, it will always evaluate to true
{
double TLplus = 9000; //TLPlus is now worth 9000
for (double TL=1; TL < TLplus; TL++) //Make TL a double otherwise you are comparing an int to a double
//loop will attemp to run until TL >= TLplus
{
printf("Sup Oh Great And All Powerful Master Wizard R1CH"; //reads the string
printf("/n you are now %i R1CH in TL",TL); //starts a new line and then reads the string,
//using %d allows for morepercision
TLplus ++; //OVER 9000 TL+! Increments TLPlus by 1
newday = NO; //newday is assigned to the value of no
return TL; //you have just exited your code so your for loop did not run over 9000 times. Only Once
//you return the value of Tl which is 1
}
}

See... this is why I got a ton of handwritten quizzes wrong in my programming class this past year >.> I overlook things that the compiler warns me about.

You and me both. When I went through school I bombed all those quizzes. But after all that schooling and practice and a year or so of industry work and you will have a hawks eye for code.

Hehe. Trust me, I'm doing tons of practice in the years ahead. In fact, I'm experimenting with making a tile-based game app at this very moment.


Incidentally, I'm also working on a tile based game at this very moment. Using LÖVE, which is nice, because Lua is a pretty cool language and I don't have to write all the boilerplate code or all the low level opengl stuff just to do 2d rendering. Just found someone's component based entity system and I'm working on building off that.

Huh. I don't believe I've heard of Lua before. I may check it out sometime in the distant future.


Lua is the scripting language blizzard uses to create the UI in WoW. Its one of the most popular along with python. They are really useful tl know.
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
Prev 1 2 3 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 19m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 207
RuFF_SC2 36
StarCraft: Brood War
Artosis 698
ggaemo 293
NaDa 98
Aegong 42
Dota 2
LuMiX1
League of Legends
Grubby3704
Counter-Strike
Stewie2K1015
taco 440
Foxcn214
Super Smash Bros
hungrybox362
Other Games
summit1g13661
shahzam1168
Day[9].tv850
monkeys_forever224
C9.Mang0198
Maynarde172
ViBE171
Livibee96
Trikslyr69
Sick63
Organizations
Other Games
gamesdonequick1669
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• Berry_CruncH210
• Hupsaiya 74
• sooper7s
• Migwel
• AfreecaTV YouTube
• LaughNgamezSOOP
• intothetv
• IndyKCrew
• Kozan
StarCraft: Brood War
• HerbMon 17
• Azhi_Dahaki16
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota22761
League of Legends
• Doublelift5908
• TFBlade584
Counter-Strike
• Shiphtur620
Other Games
• Day9tv850
Upcoming Events
DaveTesta Events
19m
davetesta57
The PondCast
9h 19m
Online Event
15h 19m
Korean StarCraft League
2 days
CranKy Ducklings
2 days
BSL20 Non-Korean Champi…
2 days
Mihu vs QiaoGege
Zhanhun vs Dewalt
Fengzi vs TBD
Online Event
2 days
Sparkling Tuna Cup
3 days
BSL20 Non-Korean Champi…
3 days
Bonyth vs TBD
OSC
4 days
[ Show More ]
uThermal 2v2 Circuit
6 days
Liquipedia Results

Completed

BSL 20 Non-Korean Championship
FEL Cracow 2025
Underdog Cup #2

Ongoing

Copa Latinoamericana 4
Jiahua Invitational
BSL 20 Team Wars
CC Div. A S7
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025

Upcoming

BSL 21 Qualifiers
ASL Season 20: Qualifier #1
ASL Season 20: Qualifier #2
ASL Season 20
CSLPRO Chat StarLAN 3
BSL Season 21
RSL Revival: Season 2
Maestros of the Game
SEL Season 2 Championship
WardiTV Summer 2025
uThermal 2v2 Main Event
HCC Europe
Yuqilin POB S2
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
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.