• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 08:56
CET 14:56
KST 22:56
  • 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
TL.net Map Contest #21: Winners10Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!33$5,000+ WardiTV 2025 Championship6[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win RotterdaM "Serral is the GOAT, and it's not close" 5.0.15 Patch Balance Hotfix (2025-10-8)
Tourneys
Constellation Cup - Main Event - Stellar Fest $5,000+ WardiTV 2025 Championship Sparkling Tuna Cup - Weekly Open Tournament Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
[ASL20] Ask the mapmakers — Drop your questions BW General Discussion [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile Should offensive tower rushing be viable in RTS games? Dawn of War IV
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
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
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1429 users

The Big Programming Thread - Page 28

Forum Index > General Forum
Post a Reply
Prev 1 26 27 28 29 30 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.
BottleAbuser
Profile Blog Joined December 2007
Korea (South)1888 Posts
December 11 2010 12:07 GMT
#541
I'm making a project in Java. It needs to connect to a mySQL db and do shit.

I can't get it to connect.

I have mySQL set up, and here's the code:

import java.sql.*;
class Sqlconn{
public static void main(String[] args){
Connection myCon;
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
myCon = DriverManager.getConnection(
"jdbc:mysql://localhost/myproj", "admin","temp");
myCon.close();
}
catch (Exception sqlEx){
System.err.println(sqlEx);
}
}
}


I'm pretty sure the code should work, because I basically copy and pasted it from a tutorial. Do I have to do something with my db first? I can login and do stuff from the command line just fine. I'm getting

CommunicationsException: Communications link failure

when I run this.
Compilers are like boyfriends, you miss a period and they go crazy on you.
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
Last Edited: 2010-12-11 12:26:50
December 11 2010 12:26 GMT
#542
On December 11 2010 06:34 crazeman wrote:
I guess this is more like a general question on how to structure/design code.

I graduated from college and received my bachelor's degree in CS last fall but one thing that always bothers me is how shitty my code is. By the time my senior year hit, I was taking 5 CS classes a semester in order to graduate on time and was basically bombarded by constant homeworks/projects. This forced me to write very shitty non-versatile code because I was just rushed to meet the deadline as opposed to writing organized code (I would put everything in one class, use global variables everywhere, etc). Usually I could meet my deadline... but if there was a follow up assignment to modify my old code, I was fucked and might as well rewrite everything since it was a mess to modify it and even I have a hell of a time reading my own code. I got away with this because my professors are lazy as fuck and would usually just run the program and base the grade off of whether it did what it was supposed to.

does anyone have any tip on organizing code or have a good book that they recommend that will help me in this area? A friend of mine told me that I should of taken the Design Patterns course at college but I didn't do it because it wasn't a requirement and it was a class for grad students.


Try top down design pattern.

Say your code wants to go from A to B

Define C such that you can go from A to C to B

ect ect

until your roadmap is fine enough you can directly implement in the language.

This suggests a good way to break your code in to modules
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
yenta
Profile Blog Joined April 2006
Poland1142 Posts
December 11 2010 13:00 GMT
#543
On December 11 2010 21:07 BottleAbuser wrote:
I'm making a project in Java. It needs to connect to a mySQL db and do shit.

I can't get it to connect.

I have mySQL set up, and here's the code:

import java.sql.*;
class Sqlconn{
public static void main(String[] args){
Connection myCon;
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
myCon = DriverManager.getConnection(
"jdbc:mysql://localhost/myproj", "admin","temp");
myCon.close();
}
catch (Exception sqlEx){
System.err.println(sqlEx);
}
}
}


I'm pretty sure the code should work, because I basically copy and pasted it from a tutorial. Do I have to do something with my db first? I can login and do stuff from the command line just fine. I'm getting

CommunicationsException: Communications link failure

when I run this.


Might be a JDBC config problem?
http://forums.mysql.com/read.php?39,199085,204628#msg-204628
Trutacz Practice Discord - https://discord.gg/PWF7Pv
crappen
Profile Joined April 2010
Norway1546 Posts
December 12 2010 10:34 GMT
#544
On December 11 2010 21:07 BottleAbuser wrote:
I'm making a project in Java. It needs to connect to a mySQL db and do shit.

I can't get it to connect.

I have mySQL set up, and here's the code:

import java.sql.*;
class Sqlconn{
public static void main(String[] args){
Connection myCon;
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
myCon = DriverManager.getConnection(
"jdbc:mysql://localhost/myproj", "admin","temp");
myCon.close();
}
catch (Exception sqlEx){
System.err.println(sqlEx);
}
}
}


I'm pretty sure the code should work, because I basically copy and pasted it from a tutorial. Do I have to do something with my db first? I can login and do stuff from the command line just fine. I'm getting

CommunicationsException: Communications link failure

when I run this.



You do have to do something with your database you are running on your machine.
Everything is correct untill we get to ../myproj
I guess you do not have a database in your mysql with the name mysql.

Im guessing you are using Mysql Workbench to configure your db. So I assume you have a user in the SQL Development, enter with this user, and you will see a dropdown box with label "default". In here you have different databases you can connect too.
Lets say you have a database with name "test". The new correct url would be:
jdbc:mysql://localhost/test Ofcourse with the user and password property behind the url.
Basically the DB url is built like this: jdbc:mysql:[host][:port]/[database][?property1][=value]...

So to give a full example. You have following database, user and password
User: root
Password: Pass1
Database: test

The url would be: "jdbc:mysql://127.0.0.1:3306/test?user=root&password=Pass1"

This is when its hardcoded in, but you atleast get to see the entire url for yourself.
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
Last Edited: 2010-12-19 20:21:35
December 19 2010 18:01 GMT
#545
NVM, think I solved it.

EDIT: mod can delete this
England will fight to the last American
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
December 19 2010 21:59 GMT
#546
OK; here's another question.

So basically I have been playing around with the win32 api for c++, getting to know the language abit and such. Playing around with Read/writeProcessMemory which is interesting -- I wrote a program with changed another programs values in memory.

Now the next step I think would be to do it on a live program like a game (say Diablo 2 for instance). The big questionmark however is how would one go about finding out the live memory addresses of that process? Anyone have any idea? I suspect some sort of live debugger is needed O_o
England will fight to the last American
ParasitJonte
Profile Joined September 2004
Sweden1768 Posts
December 19 2010 22:11 GMT
#547
On December 20 2010 06:59 KaiserJohan wrote:
OK; here's another question.

So basically I have been playing around with the win32 api for c++, getting to know the language abit and such. Playing around with Read/writeProcessMemory which is interesting -- I wrote a program with changed another programs values in memory.

Now the next step I think would be to do it on a live program like a game (say Diablo 2 for instance). The big questionmark however is how would one go about finding out the live memory addresses of that process? Anyone have any idea? I suspect some sort of live debugger is needed O_o


For what it sounds like you want to do, I would recommend for example: http://www.amazon.com/Exploiting-Online-Games-Massively-Distributed/dp/0132271915/ref=sr_1_1?ie=UTF8&s=books&qid=1292796673&sr=8-1 .
Hello=)
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
December 19 2010 22:35 GMT
#548
On December 20 2010 07:11 ParasitJonte wrote:
Show nested quote +
On December 20 2010 06:59 KaiserJohan wrote:
OK; here's another question.

So basically I have been playing around with the win32 api for c++, getting to know the language abit and such. Playing around with Read/writeProcessMemory which is interesting -- I wrote a program with changed another programs values in memory.

Now the next step I think would be to do it on a live program like a game (say Diablo 2 for instance). The big questionmark however is how would one go about finding out the live memory addresses of that process? Anyone have any idea? I suspect some sort of live debugger is needed O_o


For what it sounds like you want to do, I would recommend for example: http://www.amazon.com/Exploiting-Online-Games-Massively-Distributed/dp/0132271915/ref=sr_1_1?ie=UTF8&s=books&qid=1292796673&sr=8-1 .



I don't know, I'm mostly doing this for learning win32 api and fun, I would probably aim at old games like Diablo 2 and such that probably don't have much protection and of no consequence to others if I do something bad -- so mostly offline stuff :p
England will fight to the last American
FaCE_1
Profile Blog Joined December 2006
Canada6178 Posts
December 19 2010 22:38 GMT
#549
anyone have some experience programming for Android platform? I know they give the SDK but I didn't had time yet to start looking at it.

Is it simple? Can you program in "any" language or your stuck to java ?
n_n
tec27
Profile Blog Joined June 2004
United States3702 Posts
December 20 2010 01:28 GMT
#550
On December 20 2010 06:59 KaiserJohan wrote:
OK; here's another question.

So basically I have been playing around with the win32 api for c++, getting to know the language abit and such. Playing around with Read/writeProcessMemory which is interesting -- I wrote a program with changed another programs values in memory.

Now the next step I think would be to do it on a live program like a game (say Diablo 2 for instance). The big questionmark however is how would one go about finding out the live memory addresses of that process? Anyone have any idea? I suspect some sort of live debugger is needed O_o

You're gonna wanna get OllyDbg (I'd recommend the older 1.x version, there's a 2.x version out, but its not as good at this point). You'll also want to get some kind of memory searcher, MemHack should probably be sufficient for your needs ( http://memoryhacking.com/ ). From there, your basic process is:

A) Figure out what you want to find
B) Hypothesize how the game handles storing it
C) Determine a repeatable sequence you can use to narrow down the applicable memory addresses to just a few in MemHack
D) Utilize OllyDbg to find and analyze the code that uses that memory

From there there are a lot of possibilities, but you're going to want to develop a good understanding of assembly and hooking if you want to do anything real useful/fun. The good news is, if you just keep at it, that will all come in time. At least it did for me

There are some decent sites out there that discuss a lot of related topics, although I'm not sure how much real 'beginniner' stuff you'll find. One of the better ones is: http://gamedeception.net

Most of those sites are gonna be filled with hacks and hack-makers, but the process is the same whether you're trying to make cheats or legitimate utilities.

Anyway, hope that helps. Feel free to PM me or ask in here if you have any more questions, I love reversing and talking about reversing
Can you jam with the console cowboys in cyberspace?
TossFloss *
Profile Blog Joined February 2010
Canada606 Posts
December 20 2010 02:04 GMT
#551
On December 20 2010 07:38 FaCE_1 wrote:
anyone have some experience programming for Android platform? I know they give the SDK but I didn't had time yet to start looking at it.

Is it simple? Can you program in "any" language or your stuck to java ?


Yes. I've written a couple Android apps, including the TL Android App.

While Android is pretty much Java-centric it does allow for some C/C++ code: http://arstechnica.com/open-source/news/2009/06/android-goes-beyond-java-gains-native-cc-dev-kit.ars

TL Android App Open Source http://www.teamliquid.net/forum/viewmessage.php?topic_id=265090
mptj
Profile Blog Joined June 2009
United States485 Posts
December 20 2010 02:10 GMT
#552
I'm sorry if this post is out of place or inappropriate, but why is haskel not being discuessed here? I haven't read this whole thread, so if it is in here im sorry. But this language yields sooooo much power and will be the standard in about 10 years imo. People are catching onto it such as the facebook chat was written in haskel.
"Only the Good Die Young"
DetriusXii
Profile Joined June 2007
Canada156 Posts
December 20 2010 03:30 GMT
#553
On December 20 2010 11:04 TossFloss wrote:
Show nested quote +
On December 20 2010 07:38 FaCE_1 wrote:
anyone have some experience programming for Android platform? I know they give the SDK but I didn't had time yet to start looking at it.

Is it simple? Can you program in "any" language or your stuck to java ?


Yes. I've written a couple Android apps, including the TL Android App.

While Android is pretty much Java-centric it does allow for some C/C++ code: http://arstechnica.com/open-source/news/2009/06/android-goes-beyond-java-gains-native-cc-dev-kit.ars



I think Scala as a language can work with the Android platform as well.
tofucake
Profile Blog Joined October 2009
Hyrule19151 Posts
December 20 2010 03:50 GMT
#554
On December 20 2010 11:10 mptj wrote:
I'm sorry if this post is out of place or inappropriate, but why is haskel not being discuessed here? I haven't read this whole thread, so if it is in here im sorry. But this language yields sooooo much power and will be the standard in about 10 years imo. People are catching onto it such as the facebook chat was written in haskel.

Because nobody has, simply put. Feel free to impart some information on us or ask some questions about it. I'm sure there's some other fans out there.
Liquipediaasante sana squash banana
BrickTop
Profile Joined May 2009
United States37 Posts
December 20 2010 04:46 GMT
#555
On December 20 2010 11:10 mptj wrote:
I'm sorry if this post is out of place or inappropriate, but why is haskel not being discuessed here? I haven't read this whole thread, so if it is in here im sorry. But this language yields sooooo much power and will be the standard in about 10 years imo. People are catching onto it such as the facebook chat was written in haskel.


According to Wikipedia, the FB chat was written in Erlang: http://en.wikipedia.org/wiki/Erlang_(programming_language)

I agree that Haskell's an interesting language, but I don't think it will be the standard anytime soon. I'm not prepared to argue whether it is worse or better than C/C++/Java for actual development, and honestly I have no idea, but I just don't see the industry itself making such a huge change from imperative to functional. The industry is imperative-based right now, so the universities/colleges teach imperative programming so their students are actually employed, and I don't see how this spiral could end.

But I'm still up for discussing Haskell.

And if you don't know haskell, look it up, because it has some very nice stuff: http://en.wikipedia.org/wiki/Haskell_(programming_language)#Code_examples
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
December 22 2010 19:14 GMT
#556
I got more questions regarding memory manipulation.

1) Can you use fixed, static memory addresses in your code? Say one of your variables always has a certain address at each run or a pointer has the same value each run. It does feel kinda logical though, I mean we are only dealing with logical addresses, not the 'randomly' allocated physical memory itself.
Moreover, is there a reason this is actually prefered? Makes the job of hacking so much easier than if you'd have to probe everything again for the right address.

2) How does anti-hacking software actually detect 'illegal' read and writes to memory of a program? I mean it's done directly through windows API, does the VAC example nestle itself in read/write procedures or what? :S

Cheers
England will fight to the last American
tec27
Profile Blog Joined June 2004
United States3702 Posts
December 22 2010 19:36 GMT
#557
On December 23 2010 04:14 KaiserJohan wrote:
I got more questions regarding memory manipulation.

1) Can you use fixed, static memory addresses in your code? Say one of your variables always has a certain address at each run or a pointer has the same value each run. It does feel kinda logical though, I mean we are only dealing with logical addresses, not the 'randomly' allocated physical memory itself.
Moreover, is there a reason this is actually prefered? Makes the job of hacking so much easier than if you'd have to probe everything again for the right address.

2) How does anti-hacking software actually detect 'illegal' read and writes to memory of a program? I mean it's done directly through windows API, does the VAC example nestle itself in read/write procedures or what? :S

Cheers

1) If you're inside the process you're manipulating, you can do it with straight pointers, memcpy, etc. If you're not, you can do it through ReadProcessMemory/WriteProcessMemory. Generally, the more modern a program is, the less likely it is that you're going to be dealing with addresses that are static between runs. This is because OO design results in dynamically allocated objects. The only times you're going to find stuff that is static between runs is when its coded to always be allocated at the same memory location, or its a global variable. So generally, you have to use another method to find where its located in memory. There are a bunch of different ways to do that (pattern scans, etc.), but usually its easier to hook the function that modifies that data, and change how it modifies things.

2) There's a variety of different methods used. Some software will scan the copy of the program in memory versus the copy on disk and try to detect differences caused by hooking (although this is obviously time consuming, so often it will scan specific offsets for these changes). Some software hooks system functions like Read/WriteProcessMemory to detect writes into the process that stipulate hacking, etc. VAC I believe works through the former, as most useful stuff that can be done must be done from inside the process through hooks. There are, however, some interesting hacks out there that are done entirely outside the process (this, for example: http://www.gamedeception.net/threads/21173-Extern-CS-S-multihack )
Can you jam with the console cowboys in cyberspace?
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
December 22 2010 19:46 GMT
#558
How would you get identify/access the functions? Sounds like you need to do some assembler-digging to do that? (unstanding compiler-generated assembly is impossible >.<) Guess it's not possible to do outside assembly?

England will fight to the last American
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
Last Edited: 2010-12-24 01:12:34
December 24 2010 01:10 GMT
#559
So folks, here's a special request

I have a problem to solve which is a Traveling salesman problem. Now i've found stuff about the so called "Euclidean Traveling Salesman Problem", which basically tells us how to find a good approximation for the best solution in the special case that all places to visit lie in a plane with euclidean metrics. The thing is, my program runs on GPS coordinates, meaning i'm not on a plane, but on a sphere surface. However, since it theoretically is possible to map a sphere surface onto a plane and back using stereographic projection, the approach might be transferable.

Visually speaking, stereographic projection sort of wraps positive and negative infinity together. I am not sure if that would disturb whatever exactly requires the euclidean metrics in a plane in that algorithm. So here's my question to those great mathematicians of you: Am i right? Oo
Gold isn't everything in life... you need wood, too!
killanator
Profile Blog Joined January 2008
United States549 Posts
December 24 2010 01:24 GMT
#560
So I am in a game development class at my high school. Sort of a retarded class really. We are learning Game Maker, and about 90% of the people screw up stupid stuff with its ridiculously easy drag and drop system. I like to be ahead on these type of things that interest me, so I've gone ahead and I'm learning GML(game maker language). I find it very satisfying, just the part of writing code and seeing it produce a result excites me. I'd certainly like to continue and pursue programming and game development as a hobby. I am starting to feel good doing somewhat basic programming in GML, and I'm just starting to learn Actionscript 2.0. What else should I learn?

One thing that interested me was doing indie games for the xbox live marketplace. I read a bit about it and it uses Microsoft XNA which uses C#. would C# be easy enough to learn or should I go somewhere else first? I dont want to simply limit myself to making games and be a good all around programmer but I want games to be my main focus.
DJ, put it back on!
Prev 1 26 27 28 29 30 1032 Next
Please log in or register to reply.
Live Events Refresh
CranKy Ducklings
10:00
Sea Duckling Open #140
CranKy Ducklings84
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 198
Railgan 42
Creator 14
StarCraft: Brood War
Sea 6776
Horang2 4135
GuemChi 1585
Jaedong 890
actioN 290
Mini 250
BeSt 249
Soma 228
Killer 218
EffOrt 205
[ Show more ]
Rush 172
Mind 105
Hyun 95
Bonyth 72
ToSsGirL 67
Backho 60
PianO 34
JYJ32
sas.Sziky 32
Aegong 28
zelot 23
Terrorterran 14
soO 11
sorry 10
HiyA 7
Sacsri 7
Dota 2
Gorgc5272
singsing2292
qojqva1976
Dendi596
XcaliburYe219
BananaSlamJamma107
Heroes of the Storm
Khaldor214
Other Games
B2W.Neo1235
Sick275
Lowko237
Fuzer 197
Hui .121
XaKoH 87
nookyyy 56
MindelVK20
Organizations
StarCraft 2
WardiTV622
Counter-Strike
PGL231
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 73
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2101
League of Legends
• Stunt689
• HappyZerGling108
Upcoming Events
IPSL
4h 4m
dxtr13 vs OldBoy
Napoleon vs Doodle
LAN Event
4h 4m
Lambo vs Clem
Scarlett vs TriGGeR
ByuN vs TBD
Zoun vs TBD
BSL 21
6h 4m
Gosudark vs Kyrie
Gypsy vs OyAji
UltrA vs Radley
Dandy vs Ptak
Replay Cast
9h 4m
Sparkling Tuna Cup
20h 4m
WardiTV Korean Royale
22h 4m
LAN Event
1d 1h
IPSL
1d 4h
JDConan vs WIZARD
WolFix vs Cross
BSL 21
1d 6h
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
1d 19h
[ Show More ]
Wardi Open
1d 22h
WardiTV Korean Royale
2 days
Replay Cast
3 days
Kung Fu Cup
3 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
4 days
The PondCast
4 days
RSL Revival
4 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
4 days
WardiTV Korean Royale
4 days
RSL Revival
5 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
5 days
CranKy Ducklings
6 days
RSL Revival
6 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
Stellar Fest: Constellation Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 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...

Disclosure: This page contains affiliate marketing links that support TLnet.

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.