• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 02:03
CEST 08:03
KST 15:03
  • 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
Official StarCraft website teases new content ahead of BlizzCon?71Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3New 3v3 BGH Ladder (and more) on ShieldBattery!40Weekly Cups (August 17-23): Zerg dominate the week6
StarCraft 2
General
SC4ALL: II Winner Will Earn a Spot at HSC 30! Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game Weekly Cups (August 24-30): Patches' balance mod takes over Balance hotfix patch 5.0.16b (July 16) September World Ranking: herO leads, Serral climbs
Tourneys
Stellar Fest TWO the Moon (Dec 16-20) IntoTheTV X SOOP SC2 League : Weekly & Monthly SC2 INu's Battles#20 [BO.9] 2026 GSTL Announcement PIG STY FESTIVAL 8.0! (13 - 23 August)
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This Mutation # 539 Thunder Dome
Brood War
General
Official StarCraft website teases new content ahead of BlizzCon? [Personal Project Share] Terran Defense v0.60 BW General Discussion ASL22 General Discussion BGH Auto Balance -> http://bghmmr.eu/
Tourneys
KCM Race Survival 2026 Season 3 Brood War in Budapest ! WORTEX 2026 BW Finals [Megathread] Daily Proleagues BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread Diablo IV EVE Corporation [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
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
Things Aren’t Peaceful in Palestine US Politics Mega-thread Canadian Politics Mega-thread Artificial Intelligence Thread UK 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
Dreaming of BW patches (mod…
c3rberUs
Regacy Esports: The Bh…
regacyesports
Violent Games and Crime Rate…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Customize Sidebar...

Website Feedback

Closed Threads



Active: 6166 users

The Big Programming Thread - Page 433

Forum Index > General Forum
Post a Reply
Prev 1 431 432 433 434 435 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.
bangsholt
Profile Joined June 2011
Denmark138 Posts
January 24 2014 16:38 GMT
#8641
On January 24 2014 08:57 obesechicken13 wrote:
Show nested quote +
On January 24 2014 08:00 ghrur wrote:
Just thought I'd put this here because it's an awesome story about programming and math :
http://www.wired.com/wiredscience/2014/01/how-to-hack-okcupid/

Oh that's pretty cool.

Has anyone had any experience with leveldb?
https://code.google.com/p/leveldb/

I have to use it for a course and my TA is saying that I have to "install" it?
I can make leveldb just fine with the default make file but I'm supposed to use a specific make file and two other files.


CC = g++
OPTS = -I $(LEVELDB_DIR)/include -lpthread $(LEVELDB_DIR)/libleveldb.a

all: read write

read: read.cc
$(CC) -o read read.cc $(OPTS)

write: write.cc
$(CC) -o write write.cc $(OPTS)

clean:
rm -rf read write leveldb_dir

test: all
./write
./read

I have read.cc and write.cc in the same folder as the makefile. Every time I run make, I get an error message:
g++  -o read read.cc -I /include -lpthread /libleveldb.a
g++: error: /libleveldb.a: No such file or directory
make: *** [read] Error 1


wut do?

nvm I'm getting it slowly.


Two things you can do:

1) Drop it into an existing folder that are included by default in your linker, like this

ldconfig -v 2>/dev/null | grep -v ^$'\t'


And drop your .a file into one of those folders, or

2) Add the folder in which the library is in to your makefile with the -L<path_to_library> switch.

Should fix your problem
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 24 2014 17:01 GMT
#8642
On January 24 2014 08:57 obesechicken13 wrote:

CC = g++
OPTS = -I $(LEVELDB_DIR)/include -lpthread $(LEVELDB_DIR)/libleveldb.a

all: read write

read: read.cc
$(CC) -o read read.cc $(OPTS)

write: write.cc
$(CC) -o write write.cc $(OPTS)

clean:
rm -rf read write leveldb_dir

test: all
./write
./read

I have read.cc and write.cc in the same folder as the makefile. Every time I run make, I get an error message:
g++  -o read read.cc -I /include -lpthread /libleveldb.a
g++: error: /libleveldb.a: No such file or directory
make: *** [read] Error 1


wut do?

nvm I'm getting it slowly.


alternatively make sure the LEVELDB_DIR variable is set correctly.
note how your $(LEVELDB_DIR)/libleveldb.a resolves to just /libleveldb.a, meaning LEVELDB_DIR is not set at all.
make sure LEVELDB_DIR is set to the folder libleveldb.a resides in.


[nunez@gimli src]$ export TEAM='liquid'
[nunez@gimli src]$ echo $TEAM
liquid
[nunez@gimli src]$

conspired against by a confederacy of dunces.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
January 24 2014 17:20 GMT
#8643
Yeah, the instructions on the course page are not great. I should have gone to the first tutorial though.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-01-24 17:24:03
January 24 2014 17:23 GMT
#8644
Do you guys use a GUI builder for Java? If not, any tutorial/ebook that you'd recommend?
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
January 24 2014 19:16 GMT
#8645
On January 25 2014 02:23 darkness wrote:
Do you guys use a GUI builder for Java? If not, any tutorial/ebook that you'd recommend?

The IDE I used at work was eclipse though netbeans is also used.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
January 24 2014 23:25 GMT
#8646
Any recommendations on good Object Oriented design books? I mostly do C#.net, though I don't think that should matter.
SacredCoconut
Profile Joined October 2010
Finland121 Posts
January 24 2014 23:35 GMT
#8647
Would someone have article or forum post about enum, define, const for c++. They seem to work same in most cases, so i would like to know if there is any big reason to use one over another. Or is the difference only cosmetic?

For example is there something wrong with way i use them?
+ Show Spoiler +
/* Array sizes */
const int HEIGHT = 200;
const int WIDTH = HEIGHT;
const int PLAYERINFORMATIONS = 9;
const int UNITINFORMATIONS = 5;

/* Positions of the game on command line */
const int SCREENPOSITION1 = 0;
const int SCREENPOSITION2 = 20;

/* Stage txt files */
const string STAGE1 = "map1.txt";
const string STAGE2 = "map2.txt";

/* Unit/Player array usage */
enum{
VERTICAL,
HORIZONTAL,
OLDVERTICAL,
OLDHORIZONTAL,
UNITCODE,
KEYUP,
KEYRIGHT,
KEYLEFT,
SCREENPOSITION
};

/* Different game components */
enum{
PLAYER1 = '1',
PLAYER2 = '2',
ENEMY = 'V',
GROUND = 'M',
EMPTY = '_',
GOAL = 'G'
};

/* Unit movements */
enum{
UP = -1,
DOWN = 1,
RIGHT = 1,
LEFT = -1
};

/* Defines for keyboard keys */
#define VK_1 0x31 // Keyboard key 1
#define VK_W 0x57 // Keyboard key W
#define VK_D 0x44 // Keyboard key D
#define VK_A 0x41 // Keyboard key A
I apologize for possible grammar errors.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 25 2014 00:36 GMT
#8648
#define identifier replacement-list
    The #define directives define the identifier as macro, that is instruct the compiler to replace all successive occurrences of identifier with replacement-list, which can be optionally additionally processed. If the identifier is already defined as any type of macro, the program is ill-formed.
source

enum name { enumerator = constexpr , enumerator = constexpr , ... }
    An enumeration is a distinct type whose value is restricted to one of several explicitly named constants ("enumerators"). The values of the constants are values of an integral type known as the underlying type of the enumeration.
source

cv (const-volatility) specifiers and qualifiers
    Appear in any type specifier, including decl-specifier-seq of declaration grammar, to specify constness or volatility of the type being declared.

          const - defines that the type is constant.
source

so a #define is a preprocessor macro!
an enum is a type!
and const is a type qualifier!

i think you should avoid #defines, and choose either an enum or a const numeric type!
conspired against by a confederacy of dunces.
phar
Profile Joined August 2011
United States1080 Posts
January 25 2014 01:07 GMT
#8649
On January 24 2014 02:11 RoyGBiv_13 wrote:
EDIT: It may also be the case that the programmer implemented both ways in order for you to use whichever one makes your program easier to understand. My guess is that the Builder pattern was implemented in order to avoid the long list of arguments for the Gson constructor.

An advantage of doing it this way (having many arguments in the constructor, having the builder just call .build()/.create()/etc, instead of passing the builder to the object's constructor):

testability!

It's much easier to mock arguments directly into the constructor when need be. Much more annoying to have to use deep mocks, or create test container objects. And when you don't need to use mocks ('cus you shouldn't if you can avoid it), you can just pass the object directly, instead of having to ball it up inside a builder in your test.
Who after all is today speaking about the destruction of the Armenians?
mishimaBeef
Profile Blog Joined January 2010
Canada2259 Posts
January 25 2014 02:34 GMT
#8650
An article you might find interesting: http://catb.org/~esr/faqs/hacker-howto.html
Dare to live the life you have dreamed for yourself. Go forward and make your dreams come true. - Ralph Waldo Emerson
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:07 GMT
#8651
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?
Fantasy is a beast
mishimaBeef
Profile Blog Joined January 2010
Canada2259 Posts
Last Edited: 2014-01-26 05:14:30
January 26 2014 05:13 GMT
#8652
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?


?? You print found after the loop?
Dare to live the life you have dreamed for yourself. Go forward and make your dreams come true. - Ralph Waldo Emerson
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
Last Edited: 2014-01-26 05:25:48
January 26 2014 05:20 GMT
#8653
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:27 GMT
#8654
On January 26 2014 14:13 mishimaBeef wrote:
Show nested quote +
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?


?? You print found after the loop?


Shit, I didn't notice that and I worded my question terribly wrong. That wasn't the intention of my question:

So I fixed that code like this:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
System.out.println("Found");
break;

So now, I need to print "Not Found" for let us just say 100. Should I just use an else statement?

Sorry for dumb questions, I'm a newbie
Fantasy is a beast
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:29 GMT
#8655
On January 26 2014 14:20 Chocolate wrote:
Show nested quote +
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...


Just to clarify, I need to use a for loop. Would your suggestion of a while loop eliminate the for loop or just add on to the current code?
Fantasy is a beast
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
Last Edited: 2014-01-26 05:33:15
January 26 2014 05:32 GMT
#8656
On January 26 2014 14:29 Housemd wrote:
Show nested quote +
On January 26 2014 14:20 Chocolate wrote:
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...


Just to clarify, I need to use a for loop. Would your suggestion of a while loop eliminate the for loop or just add on to the current code?

Just think: how could you use a boolean here?

If you were a bit newer I would just tell you but since this is an assignment for what is probably a second semester class you should be able to figure this out yourself.
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:41 GMT
#8657
On January 26 2014 14:32 Chocolate wrote:
Show nested quote +
On January 26 2014 14:29 Housemd wrote:
On January 26 2014 14:20 Chocolate wrote:
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...


Just to clarify, I need to use a for loop. Would your suggestion of a while loop eliminate the for loop or just add on to the current code?

Just think: how could you use a boolean here?

If you were a bit newer I would just tell you but since this is an assignment for what is probably a second semester class you should be able to figure this out yourself.


I'm taking AP Computer Science. We are doing searches and this was extra credit work.
Fantasy is a beast
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
January 26 2014 05:43 GMT
#8658
So am I brother
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 06:53 GMT
#8659
Update on Program:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
boolean x = true;
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (x == true){
SearchValue = array [i];
break;
}
}
if (x){
System.out.println("Found");
}
else
{
System.out.println("Not Found");
}
}
}


Works perfectly fine for values that are in the array. For values that are not, it still prints out found. I believe that I have a small syntax error (in the last if-else statement?) but I cannot spot it. I tried to use Chocolate's suggestions of booleans and it looks promising.
Fantasy is a beast
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 07:01 GMT
#8660
NVM I GOT IT WOOOOOOOOOOOT
Fantasy is a beast
Prev 1 431 432 433 434 435 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3h 58m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
EnDerr 22
StarCraft: Brood War
Hyuk 357
Dota 2
resolut1ontv 253
NeuroSwarm152
League of Legends
JimRising 814
Super Smash Bros
hungrybox910
Mew2King79
Heroes of the Storm
Khaldor67
Other Games
summit1g7471
singsing654
WinterStarcraft424
C9.Mang0262
Maynarde115
Organizations
Other Games
gamesdonequick593
StarCraft: Brood War
UltimateBattle 53
[ Show 11 non-featured ]
StarCraft 2
• Sammyuel 5
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21508
League of Legends
• Stunt419
Upcoming Events
Big Brain Bouts
3h 58m
Garitos vs ArT
Lambo vs Percival
TriGGeR vs ByuN
Sparkling Tuna Cup
1d 3h
OSC
1d 5h
Shopify Rebellion Sundays
1d 8h
Mixu vs TBD
Spirit vs TBD
Clem vs TBD
Patches Events
1d 9h
OSC
1d 17h
Afreeca Starleague
2 days
Soma vs Shuttle
BeSt vs Rush
WardiTV Weekly
2 days
Monday Night Weeklies
2 days
Afreeca Starleague
3 days
Leta vs ggaemo
Jaedong vs Queen
[ Show More ]
GSL
3 days
PiGosaur Cup
3 days
Kung Fu Cup
4 days
Replay Cast
4 days
The PondCast
5 days
KCM Race Survival
5 days
Escore
6 days
IntoTheTV X SOOP
6 days
Liquipedia Results

Completed

Proleague 2026-09-02
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 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - TRS
RSL Revival: Season 6
Calamity Invitational
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

Upcoming

Escore Tournament S3: King of Kings
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
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.