• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 19:11
CET 01:11
KST 09:11
  • 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
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
[BSL21] Ro.16 Group Stage (C->B->A->D)1Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win2RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2[TLMC] Fall/Winter 2025 Ladder Map Rotation14
StarCraft 2
General
When will we find out if there are more tournament Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win SC: Evo Complete - Ranked Ladder OPEN ALPHA Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge RSL Season 3: RO16 results & RO8 bracket
Tourneys
Tenacious Turtle Tussle RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly) Constellation Cup - Main Event - Stellar Fest
Strategy
Ride the Waves in Surf City: Why Surfing Lessons H
Custom Maps
Map Editor closed ?
External Content
Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle soO on: FanTaSy's Potential Return to StarCraft Data analysis on 70 million replays 2v2 maps which are SC2 style with teams together? [BSL21] Ro.16 Group Stage (C->B->A->D)
Tourneys
[BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET [BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET [Megathread] Daily Proleagues [BSL21] RO16 Tie Breaker - Group A - Sat 21:00 CET
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Should offensive tower rushing be viable in RTS games? Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Clair Obscur - Expedition 33
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
Mafia Game Mode Feedback/Ideas
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine YouTube Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
The Health Impact of Joining…
TrAiDoS
Dyadica Evangelium — Chapt…
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2312 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
Bisutopia19299 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 States24741 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
Bisutopia19299 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
Bisutopia19299 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
Bisutopia19299 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
Bisutopia19299 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 49m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
elazer 267
Nathanias 80
CosmosSc2 51
StarCraft: Brood War
Bisu 1429
Artosis 591
Hyun 149
ZZZero.O 101
ggaemo 24
NaDa 14
Dota 2
syndereN310
Counter-Strike
Foxcn148
Fnx 70
minikerr25
Super Smash Bros
PPMD29
Other Games
Grubby3249
summit1g2821
Day[9].tv176
ViBE151
Maynarde110
Trikslyr53
C9.Mang037
Organizations
Other Games
gamesdonequick233
Dota 2
PGL Dota 2 - Main Stream179
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 21 non-featured ]
StarCraft 2
• Hupsaiya 85
• davetesta39
• musti20045 32
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• blackmanpl 25
• mYiSmile16
• Pr0nogo 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• Doublelift4261
Other Games
• Scarra1248
• imaqtpie1244
• Shiphtur396
• Day9tv176
Upcoming Events
PiGosaur Cup
49m
Replay Cast
8h 49m
Wardi Open
11h 49m
OSC
12h 49m
Tenacious Turtle Tussle
23h 49m
The PondCast
1d 9h
Replay Cast
1d 22h
OSC
2 days
LAN Event
2 days
Replay Cast
2 days
[ Show More ]
Replay Cast
3 days
WardiTV Korean Royale
3 days
Sparkling Tuna Cup
4 days
WardiTV Korean Royale
4 days
Replay Cast
4 days
Wardi Open
5 days
Monday Night Weeklies
5 days
Replay Cast
5 days
Wardi Open
6 days
Liquipedia Results

Completed

SOOP Univ League 2025
RSL Revival: Season 3
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
META Madness #9
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
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.