• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:41
CEST 20:41
KST 03: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
Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5TL.net Map Contest #21 - Finalists4Team TLMC #5: Vote to Decide Ladder Maps!0
Community News
5.0.15 Patch Balance Hotfix (2025-10-8)60Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition275.0.15 Balance Patch Notes (Live version)119$2,500 WardiTV TL Map Contest Tournament 154
StarCraft 2
General
5.0.15 Patch Balance Hotfix (2025-10-8) PartinG joins SteamerZone, returns to SC2 competition Geoff 'iNcontroL' Robinson has passed away Classic Games #3: Rogue vs Serral at BlizzCon Team TLMC #5: Winners Announced!
Tourneys
SC2's Safe House 2 - October 18 & 19 RSL Offline Finals Dates + Ticket Sales! SC4ALL $6,000 Open LAN in Philadelphia Sparkling Tuna Cup - Weekly Open Tournament $2,500 WardiTV TL Map Contest Tournament 15
Strategy
Custom Maps
External Content
Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More Mutation # 491 Night Drive
Brood War
General
BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ I'm making videos again Question regarding recent ASL Bisu vs Larva game Whose hotkey signature is this?
Tourneys
[Megathread] Daily Proleagues [ASL20] Ro8 Day 4 Small VOD Thread 2.0 [ASL20] Ro8 Day 3
Strategy
Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art Current Meta Proposed Glossary of Strategic Uncertainty
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread The Games Industry And ATVI Stop the Construction YouTube Thread Things Aren’t Peaceful in Palestine
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
Formula 1 Discussion 2024 - 2026 Football Thread MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
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
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1289 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
Bisutopia19284 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 States24708 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
Bisutopia19284 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
Bisutopia19284 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
Bisutopia19284 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
Bisutopia19284 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
Safe House 2
18:00
Qualifier #2
ZombieGrub462
LiquipediaDiscussion
[BSL 2025] Weekly
18:00
#17
ZZZero.O74
Terrorterran14
LiquipediaDiscussion
PSISTORM Gaming Misc
15:55
FSL Team League: PTB vs ASH
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ZombieGrub462
ProTech105
BRAT_OK 63
Codebar 43
Vindicta 30
MindelVK 25
Nathanias 24
gerald23 12
StarCraft: Brood War
Mini 1127
Shuttle 926
sSak 258
firebathero 180
Dewaltoss 89
ZZZero.O 74
Backho 44
Rock 36
Mong 33
soO 32
[ Show more ]
ivOry 25
Movie 21
Hm[arnc] 15
Terrorterran 14
Jaeyun 1
Dota 2
Gorgc7227
capcasts18
Counter-Strike
fl0m3594
Stewie2K150
Heroes of the Storm
Liquid`Hasu531
Khaldor459
Other Games
FrodaN2254
Grubby1911
B2W.Neo697
Beastyqt597
Skadoodle211
ToD189
ArmadaUGS94
Trikslyr57
Organizations
Other Games
EGCTV1207
gamesdonequick687
BasetradeTV140
StarCraft 2
angryscii 20
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• printf 59
• StrangeGG 46
• Airneanach17
• 3DClanTV 13
• Hupsaiya 5
• AfreecaTV YouTube
• intothetv
• Kozan
• sooper7s
• IndyKCrew
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• Michael_bg 7
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Other Games
• imaqtpie1054
• WagamamaTV441
• Shiphtur288
Upcoming Events
Sparkling Tuna Cup
15h 19m
Map Test Tournament
16h 19m
TBD vs Spirit
TBD vs herO
OSC
17h 19m
IPSL
1d
Bonyth vs Art_Of_Turtle
Razz vs rasowy
Afreeca Starleague
1d 15h
Barracks vs Snow
Afreeca Starleague
2 days
Soma vs Bisu
The PondCast
4 days
CranKy Ducklings
6 days
Safe House 2
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
Maestros of the Game
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
WardiTV TLMC #15
EC S1
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
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 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.