• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 01:00
CET 07:00
KST 15:00
  • 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
Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2BGE Stara Zagora 2026 announced15[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13
StarCraft 2
General
BGE Stara Zagora 2026 announced Weekly Cups (Nov 24-30): MaxPax, Clem, herO win SC2 Proleague Discontinued; SKT, KT, SGK, CJ disband Information Request Regarding Chinese Ladder SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3 Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
Which season is the best in ASL? [ASL20] Ask the mapmakers — Drop your questions BW General Discussion FlaSh's Valkyrie Copium BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread The Perfect Game Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games?
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 TL Mafia Community Thread
Community
General
Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread US Politics Mega-thread The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
James Bond movies ranking - pa…
Topin
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1230 users

The Big Programming Thread - Page 401

Forum Index > General Forum
Post a Reply
Prev 1 399 400 401 402 403 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Fawkes
Profile Blog Joined May 2010
Canada1935 Posts
Last Edited: 2013-11-26 21:19:55
November 26 2013 21:11 GMT
#8001
On November 27 2013 05:45 tofucake wrote:
set the name to namegoeshere[] and then they get posted as an array

So what you mean is that (if I have 3 checkboxes):

set their names as chkbox[1]. chkbox[2], chkbox[3] and then reference it like this in the POST, but in the script, just get elements by name chkbox?

Further research leads me to: http://stackoverflow.com/questions/4516847/make-array-from-checkbox-form
Do they appear in POST array in order of how the boxes appear?
Taeyeon ~ Jennie ~ Seulgi ~ Irene @Fawkes711
tofucake
Profile Blog Joined October 2009
Hyrule19167 Posts
Last Edited: 2013-11-26 21:22:55
November 26 2013 21:22 GMT
#8002
You don't even have to index them

<input type="checkbox" name="set[]" id="q1" value="1" /><label for="q1">My question 1</label> 
<input type="checkbox" name="set[]" id="q2" value="1" /><label for="q2">My question 2</label>
<input type="checkbox" name="set[]" id="q3" value="1" /><label for="q3">My question 3</label>
<input type="checkbox" name="set[]" id="q4" value="1" /><label for="q4">My question 4</label>
<input type="checkbox" name="set[]" id="q5" value="1" /><label for="q5">My question 5</label>


will post as

'_POST["set"]' =>
array
0 => string 'checked' (length=7)
1 => string 'checked' (length=7)
2 => string '' (length=0)
3 => string '' (length=0)
4 => string '' (length=0)

(this is not a real var_dump, it's just a tributesimple example)
Liquipediaasante sana squash banana
hifriend
Profile Blog Joined June 2009
China7935 Posts
Last Edited: 2013-11-27 15:21:07
November 27 2013 14:19 GMT
#8003
Thank you spinesheath that makes a lot of sense. I suspect a disjoint-set data structure could be of help but I'm too lazy to implement it.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-11-27 15:01:30
November 27 2013 14:56 GMT
#8004
Don't these algorithms usually involve fancy data structures?

Anyways, this should work assuming you have the right data structures available:
Remove w = {a, b}, then first iterate over all edges in the component connected to a (BFS or DFS, only need the edges of the MST), and mark all vertices you come across this way as belonging to part 1. Then do the same for b, mark as part 2.
Now you have seperated the vertices of the graph into 2 groups in O(E).
Next, iterate over all (unused) edges and find the lightest one that connects part 1 and 2. This again takes O(E), so the total runtime still is O(E).

First part certainly should also work in O(V) since |V| = |F| + 1 if F is the edges in the MST, so O(V) = O(F). Not sure if or how the second part works in O(V).
If you have a good reason to disagree with the above, please tell me. Thank you.
Fawkes
Profile Blog Joined May 2010
Canada1935 Posts
Last Edited: 2013-11-28 19:14:09
November 28 2013 00:36 GMT
#8005
On November 27 2013 06:22 tofucake wrote:
You don't even have to index them
+ Show Spoiler +

<input type="checkbox" name="set[]" id="q1" value="1" /><label for="q1">My question 1</label> 
<input type="checkbox" name="set[]" id="q2" value="1" /><label for="q2">My question 2</label>
<input type="checkbox" name="set[]" id="q3" value="1" /><label for="q3">My question 3</label>
<input type="checkbox" name="set[]" id="q4" value="1" /><label for="q4">My question 4</label>
<input type="checkbox" name="set[]" id="q5" value="1" /><label for="q5">My question 5</label>


will post as
<pre class='xdebug-var-dump' dir='ltr'>
'_POST["set"]' <font color='#888a85'>=&gt;</font>
<b>array</b>
0 <font color='#888a85'>=&gt;</font> <small>string</small> <font color='#cc0000'>'checked'</font> <i>(length=7)</i>
1 <font color='#888a85'>=&gt;</font> <small>string</small> <font color='#cc0000'>'checked'</font> <i>(length=7)</i>
2 <font color='#888a85'>=&gt;</font> <small>string</small> <font color='#cc0000'>''</font> <i>(length=0)</i>
3 <font color='#888a85'>=&gt;</font> <small>string</small> <font color='#cc0000'>''</font> <i>(length=0)</i>
4 <font color='#888a85'>=&gt;</font> <small>string</small> <font color='#cc0000'>''</font> <i>(length=0)</i>
</pre>
(this is not a real var_dump, it's just a tributesimple example)


Could someone take a look at this and see if i am missing something huge, the array thing doesn't seem to be working for me.


echo"<input type='checkbox' name='ai[]' id='ai_acc' ".(!empty($ai_acc)?"checked":"")." />";
echo"<label for='ai_acc'>Accounting / Bookkeeping</label>";
echo"<br/>";
echo"<input type='checkbox' name='ai[]' id='ai_comm' ".(!empty($ai_comm)?"checked":"")." />";
echo"<label for='ai_comm'>Communication / Media Relation</label>";
echo"<br/>";

This is where my checkboxes were created...


$_SESSION['sai_acc'] = isset($_POST['ai'][0])?"true":"";
$_SESSION['sai_comm'] = isset($_POST['ai'][1])?"true":"";
echo"<b>".(isset($_POST['ai'][0])?"Accounting / Bookkeeping<br/>":"")."</b>";
echo"<b>".(isset($_POST['ai'][1])?"Communication / Media Relations<br/>":"")."</b>";

This was some code I used to redisplay for confirmation and some variable setting. However it seems if any checkbox is clicked, ai[0] will be true, and nothing else.

*edit* hmmm...might have an idea why this happens...if a checkbox isn't checked, it doesn't get added to ai[]...will check when I get home...yup. that's it...hmm...guess I need to figure out if I want to rewrite the printing/displaying or try the div method.
Taeyeon ~ Jennie ~ Seulgi ~ Irene @Fawkes711
Warri
Profile Joined May 2010
Germany3208 Posts
November 29 2013 03:07 GMT
#8006
I had a pretty specific question pop up today that i dont know how to google so ill ask here:
While a window is minimized, does the content still get rendered? Can i get information about the color of a pixel in the minimized window and can i send mouse clicks to specific positions?
harodihg
Profile Blog Joined November 2013
Japan1344 Posts
November 29 2013 03:16 GMT
#8007
Yes to all 3.
Agh's ult sniper: Sniper locks eyes with target unit, immobilizing them in horror as he turns the gun on himself. Channeled, lasts 5 seconds.
Warri
Profile Joined May 2010
Germany3208 Posts
November 29 2013 05:58 GMT
#8008
Can you give me any hint how to do it in Java? Im using the Robot class currently, that works when the window is maximized and is on top/has focus, but i cant find any help how to do it otherwise.
Nausea
Profile Joined October 2010
Sweden807 Posts
Last Edited: 2013-11-29 06:50:24
November 29 2013 06:48 GMT
#8009
So if someone could help me figure out this problem.
else if(Text[show] == '^')
{

if(Text[show+1] == '1')
{
sf::Color BlueColor(0,0,255);
FontSprite.setColor(BlueColor);
show = (show + 1);

}

}


Could someone for the love of god, tell me why the letter at [show-1] is getting the blue color as well? I'm at a loss and getting pissed.

I don't get it. How is it even possible???
Set it ablaze!
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
November 29 2013 06:55 GMT
#8010
have you tried unsetting the color of show-1 manually?
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
Nausea
Profile Joined October 2010
Sweden807 Posts
November 29 2013 07:00 GMT
#8011
On November 29 2013 15:55 icystorage wrote:
have you tried unsetting the color of show-1 manually?


If I do that, all characters after it will get the color as well.
Set it ablaze!
Gowerly
Profile Blog Joined July 2011
United Kingdom916 Posts
November 29 2013 09:43 GMT
#8012
I think that would be happening because, when you see ^1, you switch the font to blue and then ignore the "^1" string.
I would increment show before setting the colour, as you only want the colour of everything after ^1 to be coloured blue.
I will reduce you to a series of numbers.
Nausea
Profile Joined October 2010
Sweden807 Posts
November 29 2013 10:39 GMT
#8013
On November 29 2013 18:43 Gowerly wrote:
I think that would be happening because, when you see ^1, you switch the font to blue and then ignore the "^1" string.
I would increment show before setting the colour, as you only want the colour of everything after ^1 to be coloured blue.


I don't know how I would do that and why it would matter tbh. "show" is already past the letter before ^. The only forward check being done is for the 1. This is why I can't understand why the character before the ^ would be affected when it is supposed to already have been sent of to the draw call. It makes no sense to me.
Set it ablaze!
ThatGuy
Profile Blog Joined April 2008
Canada695 Posts
November 29 2013 13:28 GMT
#8014
The code that seems to be setting the color:

sf::Color BlueColor(0,0,255);
FontSprite.setColor(BlueColor);

Does not seem to be referencing the variables 'show' or 'Text[]'. How does FontSprite know what letter you are referencing? Is there a line of code missing here?
Nausea
Profile Joined October 2010
Sweden807 Posts
Last Edited: 2013-11-29 13:47:32
November 29 2013 13:40 GMT
#8015
On November 29 2013 22:28 ThatGuy wrote:
The code that seems to be setting the color:

sf::Color BlueColor(0,0,255);
FontSprite.setColor(BlueColor);

Does not seem to be referencing the variables 'show' or 'Text[]'. How does FontSprite know what letter you are referencing? Is there a line of code missing here?


What it does is setting the color for the sprite. Then the current letter in Text[show] will be drawn and after that show is increased and repeat. This color will then color everything after ^1 with that color until another color is applied at some point.

And in short the problem is: When I write a string like this "Hell^1o" the o should be blue, but the code does something that makes the last l in the text blue as well. Even tho the l should already have been drawn 1 loop ago, and it makes no sense to me how it possible can get a color applied later to the sprite.

oh and the show = show + 1 thing is just to skip over drawing the 1 after ^.
Set it ablaze!
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
November 29 2013 13:51 GMT
#8016
On November 29 2013 22:40 Nausea wrote:
Show nested quote +
On November 29 2013 22:28 ThatGuy wrote:
The code that seems to be setting the color:

sf::Color BlueColor(0,0,255);
FontSprite.setColor(BlueColor);

Does not seem to be referencing the variables 'show' or 'Text[]'. How does FontSprite know what letter you are referencing? Is there a line of code missing here?


What it does is setting the color for the sprite. Then the current letter in Text[show] will be drawn and after that show is increased and repeat. This color will then color everything after ^1 with that color until another color is applied at some point.

And in short the problem is: When I write a string like this "Hell^1o" the o should be blue, but the code does something that makes the last l in the text blue as well. Even tho the l should already have been drawn 1 loop ago, and it makes no sense to me how it possible can get a color applied later to the sprite.

oh and the show = show + 1 thing is just to skip over drawing the 1 after ^.

It would probably help if you provided all the relevant code. It is unclear how you draw anything and how FontSprite interacts with that. What is it, anyways?

Also use the [ code ] tag.
If you have a good reason to disagree with the above, please tell me. Thank you.
Nausea
Profile Joined October 2010
Sweden807 Posts
Last Edited: 2013-11-29 14:05:53
November 29 2013 13:58 GMT
#8017
Main:
+ Show Spoiler +
		window.clear(sf::Color(70,70,70,255));

Text.Print("Test^1ing\nlol",sf::Color(155,50,204), 500, 50, false);
Text.Print("Game Over!",sf::Color(28,143,204), WINDOW_WIDTH, WINDOW_HEIGHT_CENTER, true);
Text.Print("Sabertooth",sf::Color(167,152,123), 20, 500, false);
window.display();


Font drawing:
+ Show Spoiler +
void CBitmapText::Print(char* _text, sf::Color _color, unsigned int _x, unsigned int _y, bool _centered)
{
//Width = 0;

X = 0;
Y = 0;

X = _x;
Y = _y;

Text = _text;

if(_centered)
{

int TextLenght = 0;

for(int i = 0; i < _text[i]; i++)
{

TextLenght = (TextLenght + 1);

}

Width = TextLenght * Font->GetGlyphSize();

X = ((_x / 2) - (Width / 2));

}

FontSprite.setColor(_color);

if(Font != NULL)
{
for(unsigned int show = 0; Text[show] != '\0'; show++)
{

if(show < Font->Glyphs.size())
{
if(Text[show] == ' ')
{
X += Font->GetSpace();
}
else if(Text[show] == '\n')
{
Y += Font->GetNewLine() + 2;
X = _x;
}
else if(Text[show] == '^')
{

if(Text[show+1] == '1')
{
sf::Color BlueColor(0,0,255);
FontSprite.setColor(BlueColor);
show = (show + 1);

}

}
else
{
unsigned int ascii = (unsigned char)Text[show];

FontSprite.setPosition(sf::Vector2f((float)X,(float)Y));
FontSprite.setTextureRect(sf::IntRect(Font->Glyphs[ascii].PosX, Font->Glyphs[ascii].PosY, Font->Glyphs[ascii].Width, Font->Glyphs[ascii].Height));

X += Font->Glyphs[ascii].Width + Font->GetKerning();
}
}
RenderTarget->draw(FontSprite);
}
}
}


Sorry for my crappy use of indentation.

Oh and the FontSprite is just a sprite linked to a texture with all the letters in a png file.
And this is the results:
+ Show Spoiler +
http://i.imgur.com/6fqN4CD.jpg
http://i.imgur.com/qhnh5J3.jpg
Set it ablaze!
Prillan
Profile Joined August 2011
Sweden350 Posts
November 29 2013 14:19 GMT
#8018
On November 29 2013 22:58 Nausea wrote:
Main:
+ Show Spoiler +
		window.clear(sf::Color(70,70,70,255));

Text.Print("Test^1ing\nlol",sf::Color(155,50,204), 500, 50, false);
Text.Print("Game Over!",sf::Color(28,143,204), WINDOW_WIDTH, WINDOW_HEIGHT_CENTER, true);
Text.Print("Sabertooth",sf::Color(167,152,123), 20, 500, false);
window.display();


Font drawing:
+ Show Spoiler +
void CBitmapText:rint(char* _text, sf::Color _color, unsigned int _x, unsigned int _y, bool _centered)
{
//Width = 0;

X = 0;
Y = 0;

X = _x;
Y = _y;

Text = _text;

if(_centered)
{

int TextLenght = 0;

for(int i = 0; i < _text[i]; i++)
{

TextLenght = (TextLenght + 1);

}

Width = TextLenght * Font->GetGlyphSize();

X = ((_x / 2) - (Width / 2));

}

FontSprite.setColor(_color);

if(Font != NULL)
{
for(unsigned int show = 0; Text[show] != '\0'; show++)
{

if(show < Font->Glyphs.size())
{
if(Text[show] == ' ')
{
X += Font->GetSpace();
}
else if(Text[show] == '\n')
{
Y += Font->GetNewLine() + 2;
X = _x;
}
else if(Text[show] == '^')
{

if(Text[show+1] == '1')
{
sf::Color BlueColor(0,0,255);
FontSprite.setColor(BlueColor);
show = (show + 1);

}

}
else
{
unsigned int ascii = (unsigned char)Text[show];

FontSprite.setPosition(sf::Vector2f((float)X,(float)Y));
FontSprite.setTextureRect(sf::IntRect(Font->Glyphs[ascii].PosX, Font->Glyphs[ascii].PosY, Font->Glyphs[ascii].Width, Font->Glyphs[ascii].Height));

X += Font->Glyphs[ascii].Width + Font->GetKerning();
}
}
RenderTarget->draw(FontSprite);
}
}
}


Sorry for my crappy use of indentation.

Oh and the FontSprite is just a sprite linked to a texture with all the letters in a png file.
And this is the results:
+ Show Spoiler +
http://i.imgur.com/6fqN4CD.jpg
http://i.imgur.com/qhnh5J3.jpg


RenderTarget->draw(FontSprite) should probably be inside the else clause. Otherwise it would redraw the previous character with a new color in the cases where you have ' ', '\n' or '^'.

(I don't know C(whatever), but it seems probable)
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Nausea
Profile Joined October 2010
Sweden807 Posts
November 29 2013 14:20 GMT
#8019
On November 29 2013 23:19 Prillan wrote:
Show nested quote +
On November 29 2013 22:58 Nausea wrote:
Main:
+ Show Spoiler +
		window.clear(sf::Color(70,70,70,255));

Text.Print("Test^1ing\nlol",sf::Color(155,50,204), 500, 50, false);
Text.Print("Game Over!",sf::Color(28,143,204), WINDOW_WIDTH, WINDOW_HEIGHT_CENTER, true);
Text.Print("Sabertooth",sf::Color(167,152,123), 20, 500, false);
window.display();


Font drawing:
+ Show Spoiler +
void CBitmapText:rint(char* _text, sf::Color _color, unsigned int _x, unsigned int _y, bool _centered)
{
//Width = 0;

X = 0;
Y = 0;

X = _x;
Y = _y;

Text = _text;

if(_centered)
{

int TextLenght = 0;

for(int i = 0; i < _text[i]; i++)
{

TextLenght = (TextLenght + 1);

}

Width = TextLenght * Font->GetGlyphSize();

X = ((_x / 2) - (Width / 2));

}

FontSprite.setColor(_color);

if(Font != NULL)
{
for(unsigned int show = 0; Text[show] != '\0'; show++)
{

if(show < Font->Glyphs.size())
{
if(Text[show] == ' ')
{
X += Font->GetSpace();
}
else if(Text[show] == '\n')
{
Y += Font->GetNewLine() + 2;
X = _x;
}
else if(Text[show] == '^')
{

if(Text[show+1] == '1')
{
sf::Color BlueColor(0,0,255);
FontSprite.setColor(BlueColor);
show = (show + 1);

}

}
else
{
unsigned int ascii = (unsigned char)Text[show];

FontSprite.setPosition(sf::Vector2f((float)X,(float)Y));
FontSprite.setTextureRect(sf::IntRect(Font->Glyphs[ascii].PosX, Font->Glyphs[ascii].PosY, Font->Glyphs[ascii].Width, Font->Glyphs[ascii].Height));

X += Font->Glyphs[ascii].Width + Font->GetKerning();
}
}
RenderTarget->draw(FontSprite);
}
}
}


Sorry for my crappy use of indentation.

Oh and the FontSprite is just a sprite linked to a texture with all the letters in a png file.
And this is the results:
+ Show Spoiler +
http://i.imgur.com/6fqN4CD.jpg
http://i.imgur.com/qhnh5J3.jpg


RenderTarget->draw(FontSprite) should probably be inside the else clause. Otherwise it would redraw the previous character with a new color in the cases where you have ' ', '\n' or '^'.

(I don't know C(whatever), but it seems probable)


Thank you. Får jag gifta mig med dig? <3
Set it ablaze!
Fawkes
Profile Blog Joined May 2010
Canada1935 Posts
Last Edited: 2013-11-30 01:27:31
November 29 2013 15:10 GMT
#8020
wth stupid. didn't work before i left for work this morning...got home, tried it again, starts working.
Taeyeon ~ Jennie ~ Seulgi ~ Irene @Fawkes711
Prev 1 399 400 401 402 403 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 6h
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 194
RuFF_SC2 174
SortOf 85
trigger 18
ProTech1
StarCraft: Brood War
actioN 392
PianO 112
Noble 39
NotJumperer 11
Icarus 6
Dota 2
monkeys_forever589
XaKoH 305
League of Legends
JimRising 812
Other Games
summit1g14085
WinterStarcraft525
C9.Mang0352
Organizations
Other Games
gamesdonequick893
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Hupsaiya 81
• Berry_CruncH67
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki49
• Diggity8
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1290
• Stunt466
Upcoming Events
Wardi Open
6h
StarCraft2.fi
11h
Replay Cast
18h
The PondCast
1d 4h
OSC
1d 10h
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
1d 18h
Korean StarCraft League
2 days
CranKy Ducklings
3 days
SC Evo League
3 days
BSL 21
3 days
Sziky vs OyAji
Gypsy vs eOnzErG
[ Show More ]
OSC
3 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
4 days
OSC
4 days
BSL 21
4 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
5 days
Wardi Open
5 days
StarCraft2.fi
5 days
Replay Cast
5 days
StarCraft2.fi
6 days
PiGosaur Monday
6 days
Liquipedia Results

Completed

Proleague 2025-11-30
RSL Revival: Season 3
Light HT

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
Acropolis #4 - TS3
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
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
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 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.