• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 00:08
CEST 06:08
KST 13:08
  • 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
[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3
Community News
New 3v3 BGH Ladder (and more) on ShieldBattery!32Weekly Cups (August 17-23): Zerg dominate the week5Weekly Cups (August 10-16): SHIN doubles2GSTL Returns in 2026!45Weekly Cups (Aug 3-9): Protoss get shut out7
StarCraft 2
General
SC4ALL II: SC2 Player Announcement 6/8 - Maru How would you feel about frequent/monthly balance patches for SC2? Balance hotfix patch 5.0.16b (July 16) Weekly Cups (August 17-23): Zerg dominate the week Starcraft2 player guess game is Coming~!
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament 2026 GSTL Announcement IntoTheTV X SOOP SC2 League : Weekly & Monthly PIG STY FESTIVAL 8.0! (13 - 23 August) WORTEX 2026 - Hungarian SC2 Finals Budapest
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 540 Dodge This The PondCast: SC2 News & Results Mutation # 539 Thunder Dome Mutation # 538 Media Blackout
Brood War
General
Pros React To: Calm's Big Brain Play Vs Mini [Personal Project Share] Terran Defense v0.60 !!!NEW BUG!!! FIRE ARCHONS [Visual] New 3v3 BGH Ladder (and more) on ShieldBattery! BW General Discussion
Tourneys
[ASL22] Ro24 Group F BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS [Megathread] Daily Proleagues Escore Tournament - Season 3
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
General RTS Discussion Thread Stormgate/Frost Giant Megathread Nintendo Switch Thread Anyone here play Quakeworld back in the day? EVE Corporation
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Artificial Intelligence Thread Canadian Politics Mega-thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Violent Games and Crime Rate…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Please support my new stand…
Peanutsc
Customize Sidebar...

Website Feedback

Closed Threads



Active: 8680 users

Mac & Linux fans, you can now watch the GSL live. - Page 4

Forum Index > Tech Support
Post a Reply
Prev 1 2 3 4 5 6 7 8 Next All
goupyl
Profile Joined September 2010
France5 Posts
December 03 2010 10:17 GMT
#61
Thanks a lot for this great script.
Works fine at my office
VoLTa.
Profile Joined December 2010
7 Posts
December 03 2010 23:30 GMT
#62
On December 02 2010 20:54 RoyalCheese wrote:
I'm sorry this doesn't work for you guys, i would love to help but i am not familiar with the changes op did to my program, so i will take a look at them when i get home from school and hopefully make a post with working script later today, perhaps even with an instruction video!


Thanks for all the help so far and I would love you if you did this!
TheGiftedApe
Profile Blog Joined September 2010
United States1243 Posts
December 03 2010 23:41 GMT
#63
OP is a Saint
xO-Gaming.com || [xO]TheGiftedApe.364 || xO-Gaming Manager.
TheGiftedApe
Profile Blog Joined September 2010
United States1243 Posts
December 06 2010 10:03 GMT
#64
doesnt work on mac
xO-Gaming.com || [xO]TheGiftedApe.364 || xO-Gaming Manager.
TheValley
Profile Joined July 2010
Poland56 Posts
December 06 2010 10:40 GMT
#65
i think something stops working
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
December 06 2010 10:50 GMT
#66
On November 26 2010 19:56 Centorian wrote:
Traceback (most recent call last):
File "./gomstreamer.py", line 205, in <module>
main()
File "./gomstreamer.py", line 132, in main
url = parseStreamURL(responseData)
File "./gomstreamer.py", line 191, in parseStreamURL
regexResult = re.search(patternHTTP, regexResult).group(0)
AttributeError: 'NoneType' object has no attribute 'group'


got this error.


I was having the same problem, and was able to resolve it by deleting the following lines from gomstreamer.py:

# Collected the gomcmd URL, now need to extract the correct HTTP URL
# from the string
patternHTTP = r"(http%3a.+)&quot;"
regexResult = re.search(patternHTTP, regexResult).group(0)

# Found URL, just need to fix URL characters
regexResult = re.sub(r'%3[Aa]', ':', regexResult) # Fixing :
regexResult = re.sub(r'%3[Ff]', '?', regexResult) # Fixing ?
regexResult = re.sub(r'%3[Dd]', '=', regexResult) # Fixing =
regexResult = re.sub(r'%26', '&', regexResult) # Fixing &
regexResult = re.sub(r'%2[Ff]', '/', regexResult) # Fixing /
regexResult = re.sub(r'&amp;', '&', regexResult) # Removing amp;
regexResult = re.sub(r'&quot;', '', regexResult) # Removing &quot;

It seems the script was expecting the URL characters to be encoded when in fact they were not.

Hope this solution works for the rest of you having this problem!
PencilZerg
Profile Joined October 2010
Denmark76 Posts
Last Edited: 2010-12-06 12:44:23
December 06 2010 11:42 GMT
#67
Thank you so much HazenNZ, I always wanted to not watch restreams because I want to support the wonderful things that Blizzard, Gom and Sony Ericsson are doing for us (and them). I did have quite a bit of trouble completely grasping the different steps on your... program... and I have never used the Mac Terminal. For those of you have similar issues, this is what I did (I use Mac):

Download the file HazenNZ is directing you to. It should be unzipped automatically. Open the "run.sh" file it looks like this:

+ Show Spoiler +
#!/bin/sh
EMAIL="EMAIL"
PASSWORD="PASSWORD"
python ./gomstreamer.py "-e $EMAIL" "-p $PASSWORD"


In the space between the quotation marks after the equals sign write your GOMtv account email and password, but leave the EMAIL and PASSWORD written after the dollar signs as is.

Then, in spotlight (the magnifying glass in top right), type terminal and open the first suggestion.

In this window, type:
cd downloads/ (this will change the current directory to downloads)
then, type
cd sjp-GOMstreamer-81dc6ff/ (The unzipped folder you just downloaded)
then, type
sh run.sh

When you press "enter" the Terminal window should type out stuff. For me, it looked like this:
+ Show Spoiler +

Last login: Mon Dec 6 11:13:17 on ttys000
3e6b7fad:~ Thorhauge$ cd Downloads/
3e6b7fad:Downloads Thorhauge$ pwd
/Users/Thorhauge/Downloads
3e6b7fad:Downloads Thorhauge$ cd sjp-GOMstreamer-81dc6ff/
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ pwd
/Users/Thorhauge/Downloads/sjp-GOMstreamer-81dc6ff
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ /run run.sh
-bash: /run: No such file or directory
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ sh run.sh

Stream URL: http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE

VLC command: /Applications/VLC.app/Contents/MacOS/VLC "--http-caching=30000" "http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE"

Playing stream via VLC...
[0x1002149b8] main libvlc: VLC kører med standard-grænsefladen. Brug 'cvlc' for at køre VLC uden grænseflade.
no frame!

(Followed by a bunch of error messages)


It opened VLC, and when I clicked play the stream started, lag-free, after 10 seconds or so.

Thanks again HazenNZ

Edit: slash-sign improperly placed
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
Last Edited: 2010-12-06 12:19:46
December 06 2010 12:18 GMT
#68
derElbe
Profile Joined February 2009
Germany571 Posts
December 07 2010 09:56 GMT
#69
On December 06 2010 20:42 PencilZerg wrote:
Thank you so much HazenNZ, I always wanted to not watch restreams because I want to support the wonderful things that Blizzard, Gom and Sony Ericsson are doing for us (and them). I did have quite a bit of trouble completely grasping the different steps on your... program... and I have never used the Mac Terminal. For those of you have similar issues, this is what I did (I use Mac):

Download the file HazenNZ is directing you to. It should be unzipped automatically. Open the "run.sh" file it looks like this:

+ Show Spoiler +
#!/bin/sh
EMAIL="EMAIL"
PASSWORD="PASSWORD"
python ./gomstreamer.py "-e $EMAIL" "-p $PASSWORD"


In the space between the quotation marks after the equals sign write your GOMtv account email and password, but leave the EMAIL and PASSWORD written after the dollar signs as is.

Then, in spotlight (the magnifying glass in top right), type terminal and open the first suggestion.

In this window, type:
cd downloads/ (this will change the current directory to downloads)
then, type
cd sjp-GOMstreamer-81dc6ff/ (The unzipped folder you just downloaded)
then, type
sh run.sh

When you press "enter" the Terminal window should type out stuff. For me, it looked like this:
+ Show Spoiler +

Last login: Mon Dec 6 11:13:17 on ttys000
3e6b7fad:~ Thorhauge$ cd Downloads/
3e6b7fad:Downloads Thorhauge$ pwd
/Users/Thorhauge/Downloads
3e6b7fad:Downloads Thorhauge$ cd sjp-GOMstreamer-81dc6ff/
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ pwd
/Users/Thorhauge/Downloads/sjp-GOMstreamer-81dc6ff
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ /run run.sh
-bash: /run: No such file or directory
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ sh run.sh

Stream URL: http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE

VLC command: /Applications/VLC.app/Contents/MacOS/VLC "--http-caching=30000" "http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE"

Playing stream via VLC...
[0x1002149b8] main libvlc: VLC kører med standard-grænsefladen. Brug 'cvlc' for at køre VLC uden grænseflade.
no frame!

(Followed by a bunch of error messages)


It opened VLC, and when I clicked play the stream started, lag-free, after 10 seconds or so.

Thanks again HazenNZ

Edit: slash-sign improperly placed


doesnt work for me :
AttributeError: 'NoneType' object has no attribute 'group
any idea?

i am not sure about python, i don't know if i got it or not.

Hoejja - Bisu - Leenock - TLO
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
December 07 2010 10:20 GMT
#70
On December 07 2010 18:56 derElbe wrote:
Show nested quote +
On December 06 2010 20:42 PencilZerg wrote:
Thank you so much HazenNZ, I always wanted to not watch restreams because I want to support the wonderful things that Blizzard, Gom and Sony Ericsson are doing for us (and them). I did have quite a bit of trouble completely grasping the different steps on your... program... and I have never used the Mac Terminal. For those of you have similar issues, this is what I did (I use Mac):

Download the file HazenNZ is directing you to. It should be unzipped automatically. Open the "run.sh" file it looks like this:

+ Show Spoiler +
#!/bin/sh
EMAIL="EMAIL"
PASSWORD="PASSWORD"
python ./gomstreamer.py "-e $EMAIL" "-p $PASSWORD"


In the space between the quotation marks after the equals sign write your GOMtv account email and password, but leave the EMAIL and PASSWORD written after the dollar signs as is.

Then, in spotlight (the magnifying glass in top right), type terminal and open the first suggestion.

In this window, type:
cd downloads/ (this will change the current directory to downloads)
then, type
cd sjp-GOMstreamer-81dc6ff/ (The unzipped folder you just downloaded)
then, type
sh run.sh

When you press "enter" the Terminal window should type out stuff. For me, it looked like this:
+ Show Spoiler +

Last login: Mon Dec 6 11:13:17 on ttys000
3e6b7fad:~ Thorhauge$ cd Downloads/
3e6b7fad:Downloads Thorhauge$ pwd
/Users/Thorhauge/Downloads
3e6b7fad:Downloads Thorhauge$ cd sjp-GOMstreamer-81dc6ff/
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ pwd
/Users/Thorhauge/Downloads/sjp-GOMstreamer-81dc6ff
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ /run run.sh
-bash: /run: No such file or directory
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ sh run.sh

Stream URL: http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE

VLC command: /Applications/VLC.app/Contents/MacOS/VLC "--http-caching=30000" "http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE"

Playing stream via VLC...
[0x1002149b8] main libvlc: VLC kører med standard-grænsefladen. Brug 'cvlc' for at køre VLC uden grænseflade.
no frame!

(Followed by a bunch of error messages)


It opened VLC, and when I clicked play the stream started, lag-free, after 10 seconds or so.

Thanks again HazenNZ

Edit: slash-sign improperly placed


doesnt work for me :
AttributeError: 'NoneType' object has no attribute 'group
any idea?

i am not sure about python, i don't know if i got it or not.




read my message about 2 posts above for the solution to this.
OneThreeOne
Profile Joined November 2010
Norway86 Posts
December 07 2010 11:12 GMT
#71
On December 06 2010 19:50 AcrossFiveJulys wrote:
Show nested quote +
On November 26 2010 19:56 Centorian wrote:
Traceback (most recent call last):
File "./gomstreamer.py", line 205, in <module>
main()
File "./gomstreamer.py", line 132, in main
url = parseStreamURL(responseData)
File "./gomstreamer.py", line 191, in parseStreamURL
regexResult = re.search(patternHTTP, regexResult).group(0)
AttributeError: 'NoneType' object has no attribute 'group'


got this error.


I was having the same problem, and was able to resolve it by deleting the following lines from gomstreamer.py:

# Collected the gomcmd URL, now need to extract the correct HTTP URL
# from the string
patternHTTP = r"(http%3a.+)&quot;"
regexResult = re.search(patternHTTP, regexResult).group(0)

# Found URL, just need to fix URL characters
regexResult = re.sub(r'%3[Aa]', ':', regexResult) # Fixing :
regexResult = re.sub(r'%3[Ff]', '?', regexResult) # Fixing ?
regexResult = re.sub(r'%3[Dd]', '=', regexResult) # Fixing =
regexResult = re.sub(r'%26', '&', regexResult) # Fixing &
regexResult = re.sub(r'%2[Ff]', '/', regexResult) # Fixing /
regexResult = re.sub(r'&amp;', '&', regexResult) # Removing amp;
regexResult = re.sub(r'&quot;', '', regexResult) # Removing &quot;

It seems the script was expecting the URL characters to be encoded when in fact they were not.

Hope this solution works for the rest of you having this problem!


I was getting the same error, and this fixed it.
derElbe
Profile Joined February 2009
Germany571 Posts
December 07 2010 11:21 GMT
#72
thanks for helping,
i did your fix, but it still doesnt work.

the vlc opens and everything seems fine. but as soon as i click the url in vlc,
there occures another error in the terminal:

[0x1012b9088] access_http access error: failed to read answer
[0x1012b9088] access_http access error: failed to read answer
[0x1012b9088] access_mms access error: failed to read answer
main input error: open of `http://211.43.144.189:8900/view.cgi?hid=1&cid=23&nid=900&uno=NUMBER&uip=77.22.208.250&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=NUMBER' failed: (null)

Hoejja - Bisu - Leenock - TLO
Nick.TNA
Profile Joined June 2010
209 Posts
Last Edited: 2010-12-18 06:43:47
December 18 2010 06:43 GMT
#73
How do you run run.sh? it just opens into a text pad..
makoplux
Profile Joined April 2010
88 Posts
December 18 2010 07:11 GMT
#74
On December 18 2010 15:43 Nick.TNA wrote:
How do you run run.sh? it just opens into a text pad..


Same for me... but it opens in Coda. VLC doesn't open or anything.
who is john galt?
benjammin
Profile Blog Joined August 2008
United States2728 Posts
December 18 2010 07:57 GMT
#75
for people who don't know how to run it:

open up terminal, navigate to the folder with the script, then type: ./run.sh

vlc will open, press play, give it a few seconds, boom
wash uffitizi, drive me to firenze
Nick.TNA
Profile Joined June 2010
209 Posts
December 18 2010 08:09 GMT
#76
How do i "navigate to the folder with the script"? As in just open it? I have it open and im typing that and it doesn't do anything, says no such file
benjammin
Profile Blog Joined August 2008
United States2728 Posts
December 18 2010 08:14 GMT
#77
navigate to it in terminal, here's more info if you don't know how: http://macapper.com/2007/03/08/the-terminal-an-introduction/
wash uffitizi, drive me to firenze
Curtismcfly
Profile Joined November 2010
United States215 Posts
December 18 2010 09:50 GMT
#78
Unable to find URLs on the Live streaming page. Is the stream available?
curtis-blevinss-imac:sjp-GOMstreamer-81dc6ff curtismcfly$

this is the message i get when i try to run run.sh thru terminal... I couldn't find a URL in the source code on gomtv's page either...
¯\__(O.o)__/¯ curtis-mcfly.tumblr.com
deconduo
Profile Blog Joined January 2008
Ireland4122 Posts
January 02 2011 11:30 GMT
#79
They've changed the way you do it.

1. Open the source of the page with the Live Stream Buttons
2. Ctrl +F and look for 'var goxUrl'
3. Use SQTest (or HQ if you have a ticket) for playtype
4. Paste the url into your browser, should be something like
http://www.gomtv.net/gox/gox.gom?leagueid=20119&strLevel=SQTest&target=live&mb_no=99999999999999&title=
5.Look at the source of the new page. There will be a huge long link. The important part is between LiveAddr= and ;Format
RaGe
Profile Blog Joined July 2004
Belgium9950 Posts
January 02 2011 15:17 GMT
#80
On December 03 2010 04:18 zhurai wrote:
Show nested quote +
On December 02 2010 21:04 VIB wrote:
It's working great, thanks a lot!
You mean illegal like their GomPlayer? http://www.ffmpeg.org/shame.html


hint: just because it's on ffmpeg's hall of shame doesn't mean that you can pirate their stream and host it elsewhere.

those are two seperate shit.

ffmpeg just wants people that use the open source code to _fully_ follow the GPL, which then again I doubt GOMtv even knows what that's supposed to mean, given where they are from.

Code license violations are fucking totally different from pirating streams.
Stop confusing them.


EDIT:

Show nested quote +
On December 02 2010 22:01 VIB wrote:
I think Mac commands are like unix, right? If so you should just run "./run.sh" and that should work.


Yes, mac's commandline is an old version of bash (borne again shell), which most Unix's (Well *BSD's) and Linux (Arch, Gentoo, Ubuntu, Fedora, ...) use (But they use more recent versions)


if somehow you can't run it (permission denied)

$ chmod +x run.sh
$ ./run.sh

https://roundup.ffmpeg.org/issue112

Looks like they're trying to fix the violation.
Moderatorsometimes I get intimidated by the size of my right testicle
Prev 1 2 3 4 5 6 7 8 Next All
Please log in or register to reply.
Live Events Refresh
Korean StarCraft League
02:00
KSL Week 91
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 194
PiLiPiLi 29
SHIN 16
StarCraft: Brood War
Leta 132
Noble 44
Bale 37
Icarus 6
Dota 2
NeuroSwarm174
LuMiX1
League of Legends
JimRising 629
Counter-Strike
taco 449
minikerr51
Super Smash Bros
hungrybox710
Other Games
summit1g4851
Coldzera 1102
WinterStarcraft387
C9.Mang0365
XaKoH 290
Livibee115
Maynarde97
ViBE97
Organizations
Other Games
gamesdonequick840
BasetradeTV102
[ Show 13 non-featured ]
StarCraft 2
• davetesta203
• EnkiAlexander 65
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• Azhi_Dahaki12
• Light_VIP 5
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo774
Upcoming Events
GSL
6h 52m
AI Arena Tournament
12h 52m
Replay Cast
19h 52m
WardiTV Weekly
1d 6h
Sparkling Tuna Cup
2 days
Afreeca Starleague
2 days
GSL
3 days
PiGosaur Cup
3 days
Replay Cast
4 days
The PondCast
5 days
[ Show More ]
IntoTheTV X SOOP
6 days
Liquipedia Results

Completed

Proleague 2026-08-27
PiG Sty Festival 8.0
Light Tournament 2026

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL Season 22: Qualifier 2
BSL 2026 LAN: Kraków
RSL Revival: Season 6
Big Dog Cup 2026 Div 1
BLAST Open Fall 2026
Esports World Cup 2026
Esports World Cup 2026: LCQ
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026

Upcoming

CSL 2026 AUTUMN (S22)
Escore Tournament S3: King of Kings
Acropolis #5
Acropolis #5 - TRS
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Calamity Invitational
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
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 © 2026 TLnet. All Rights Reserved.