• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:35
CEST 10:35
KST 17:35
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team TLMC #5 - Finalists & Open Tournaments0[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
StarCraft II 5.0.15 PTR Patch Notes79BSL 2025 Warsaw LAN + Legends Showmatch2Weekly Cups (Sept 8-14): herO & MaxPax split cups4WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8
StarCraft 2
General
Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues StarCraft II 5.0.15 PTR Patch Notes #1: Maru - Greatest Players of All Time Weekly Cups (Sept 8-14): herO & MaxPax split cups Team Liquid Map Contest #21 - Presented by Monster Energy
Tourneys
SC2's Safe House 2 - October 18 & 19 RSL: Revival, a new crowdfunded tournament series Maestros of The Game—$20k event w/ live finals in Paris Sparkling Tuna Cup - Weekly Open Tournament SC4ALL $6,000 Open LAN in Philadelphia
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
BW General Discussion Soulkey on ASL S20 ASL TICKET LIVE help! :D ASL20 General Discussion NaDa's Body
Tourneys
[ASL20] Ro16 Group D BSL 2025 Warsaw LAN + Legends Showmatch [ASL20] Ro16 Group C Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Borderlands 3 Path of Exile Nintendo Switch Thread General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread UK Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Canadian Politics Mega-thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
Too Many LANs? Tournament Ov…
TrAiDoS
i'm really bored guys
Peanutsc
I <=> 9
KrillinFromwales
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1530 users

LotV economy: non-linearity in time - Page 2

Forum Index > Legacy of the Void
Post a Reply
Prev 1 2 3 4 5 Next All
Geiko
Profile Blog Joined June 2010
France1939 Posts
May 15 2015 09:32 GMT
#21
Yeah but it's unrealistic to expect anyone to micro workers to keep only one worker on the small patch. Workers will always bounce around.
geiko.813 (EU)
Genesis128
Profile Joined April 2010
Norway103 Posts
Last Edited: 2015-05-15 09:51:41
May 15 2015 09:46 GMT
#22
On May 15 2015 17:16 EatThePath wrote:

Question: in building your graphs, did you use an algorithm or game data? Because for n < 2N (n workers, N patches), worker micro would significantly change mine-out times, and I think some of the results you point out would differ significantly. Most importantly perfect worker control in LotV would smooth things out a lot for 4+ bases, although it is unrealistic for real gameplay.


I used a mix. To generate the income function in time/worker space I used an algorithm. I backed this up by a few screen shots of in-game data to show that this is a real effect and not purely theoretical.

On May 15 2015 09:57 Plexa wrote:
You know shit is serious when matlab gets pulled out.

Hehe, this made me smile :D. You are completely correct in that matlab was used to produce these results, but since that is a licensed software, one might use Octave if you are interested in reproducing the results. The source code is given below.

+ Show Spoiler +

function [income, time, patches]=inc(workers, minerals, time)
% function [income, time, patches]=inc(workers, minerals)
%
% parameters:
% workers - scalar value of number of workers available
% minerals - array of all mineral nodes and how much each contain
% returns:
% income - array of income per minute (IPM) for a given time period (length n)
% time - time interval for this IPM (length n+1)
% patches - number of minable mineral patches available (length n)
%
% example:
% [I t] = inc(19, 1500*ones(8,1)); % HotS econ 1-base
% [I t] = inc(19, 1500*ones(16,1)); % HotS econ 2-base
% [I t] = inc(19, [9,9,9,9,15,15,15,15]*100); % LotV econ 1-base
% [I t] = inc(19, [6,8,10,12,14,16,18,20]*100);% DPM econ 1-base
% I = sort([I,I,0],'descend');
% t = sort([t,t(2:end)]);
% plot(t,I);

incPerMinute = [0, 42, 84, 810/8];
income = [];
if nargin<3
time = [0];
end

n = length(minerals);
if n==0
patches = [];
return;
end
workPerNode = floor(workers/n);
workersLeft = mod(workers,n);
w = ones(n,1)*workPerNode;
w(end-workersLeft+1:end) = workPerNode + 1;
w = min(w,3);
w = w + 1;

incOnNode = zeros(n,1);
dt = zeros(n,1);
for i=1:n
incOnNode(i) = incPerMinute(w(i));
dt(i) = minerals(i) / incOnNode(i);
end
dt = min(dt);
time = [time, time(end) + dt];
for i=n:-1:1
minerals(i) = minerals(i) - dt*incPerMinute(w(i));
if(minerals(i) < 1)
minerals(i) = [];
end
end
[I time newPatch] = inc(workers, sort(minerals), time);
income = [sum(incOnNode), I];
patches = [n, newPatch];


The basic idea of this algorithm is to optimally allocate workers. You spread your workers out evenly, followed by putting "extra" workers left at the end to the biggest patches available. Thus if you had 5 workers mining patches of size 200, 400 and 500 you would put 2 workers on the patch with 400 and 500, leaving one worker at the 200 patch.

Incidentally this is not the optimal strategy. If you had 5 workers and patches of size 300 and 400 this algorithm would put 2 workers on the 300 patch and 3 workers on the 400 patch, mining the biggest patch empty first (this has most workers on it), followed by 5 workers on the smallest patch which now contains 40 minerals. The optimal strategy would be to mine the 400 patch until it has equal amount of minerals to the 300 patch and then letting the 5th worker take turns, harvesting 5 minerals from patch 1, then 5 minerals from patch 2, then back to patch 1 again. I consider this micro infeasible in an in-game environment and the algorithm returns a sub-perfect mining results.

I did do some in-game tests to verify if this mining method is reasonable. It is perfectly possible to manually assign worker pairs, letting 2 workers mine the big patches in LotV and keeping a single worker on the small patches. They do stay this way until the resources run out after which they rearrange themselves. However, it is not possible after you have two workers per patch, since the AI overrides any attempts to manually control your third worker.

EDIT: For the screen-shot of the income drop in LotV economy, no micro was applied. These were AI controlled players and I only fixed their worker count. It shows that the effects discussed in this thread are real, even if you leave it up to the AI to harvest minerals. The model used here does certainly not perfectly match in-game events, but it does give understanding of the mechanics going on. The general trends are still present, and that is that the current LotV economy operates with a sharp break in income, and having unique mineral count will provide a smooth decline in income.
I would rather have a bottle in front of me than a frontal lobotomy
EatThePath
Profile Blog Joined September 2009
United States3943 Posts
Last Edited: 2015-05-15 10:29:21
May 15 2015 10:29 GMT
#23
Thank you for a comprehensive response; you are a pleasure to read, genesis. I did some headmath looking at one of your graphs that made me conclude the workers were not optimal but clearly I was mistaken given that you coded the model to always double up on patches in descending order. Having toyed with worker issues in the past I find theoretical economy results are completely trustworthy and differ very little from in-game.

One issue with economies that require involved worker placement to maximize value is that harassment creates big knock-on virtual damage by disrupting all the sunk APM of worker placement at the base, which can add up to a lot of game time and effort. You could see this as an attractive feature in some ways, since it promotes harassment aka action. But it's also quite annoying from player perspective.
Comprehensive strategic intention: DNE
ejozl
Profile Joined October 2010
Denmark3413 Posts
Last Edited: 2015-05-15 11:33:36
May 15 2015 11:32 GMT
#24
I think this model produce exactly what we want, but it's not really elegant and is super confusing.
Ex. what order would the patches be in, considering there's far away patches and you want an even distribution for not always having a surperior patch to rally your workers to.
Honestly I prefer my previous suggestion, with: Bountiful, Fair and Scarce levels.
Each Mineral patch has 1500 Minerals and from 1500-1000 it is Bountiful, from 1000-500 it is Fair and from 500-0 it is Scarce.
Bountiful = Worker returns 5 Minerals pr. trip
Fair = Worker returns 4 Minerals pr. trip
Scarce = Worker returns 3 Minerals pr. trip
I didn't make the research for this, so there's that, but I think even this is a less weird way of doing it.
SC2 Archon needs "Terrible, terrible damage" as one of it's quotes.
Grumbels
Profile Blog Joined May 2009
Netherlands7031 Posts
Last Edited: 2015-05-15 11:50:04
May 15 2015 11:47 GMT
#25
Oh, I also had this idea a while ago but I proposed it only as a joke since I thought it would be too confusing and annoying in conjunction with mules.
Well, now I tell you, I never seen good come o' goodness yet. Him as strikes first is my fancy; dead men don't bite; them's my views--amen, so be it.
Beelzebro
Profile Joined April 2012
United Kingdom45 Posts
May 15 2015 13:42 GMT
#26
excellent post. hope someone at blizzard sees it
"as full and bright as I am, this light is not my own and, a million light reflections... pass over me"
Magnifico
Profile Joined March 2013
1958 Posts
May 15 2015 14:24 GMT
#27
Your idea is so beautifuly simple
The_Masked_Shrimp
Profile Joined February 2012
425 Posts
May 15 2015 14:32 GMT
#28
I prefer when the income is a step function with longer steps, it's way easier for planning. You know you can build X stuff as long as you have Y bases basically.

With your model you must account for the fact that even if you have Y bases, after some time you won't be able to keep up building X stuff; macroing is already a bit of a pain (it was even more in BW) and adding the worker planning on top of it would be a real chore.

I'm all for implementing things to make pro matches more exciting but don't forget it's a game, it's supposed to be simple, it's supposed to reach out to the public. Most sports are just made of really simple tasks.
JCoto
Profile Joined October 2014
Spain574 Posts
Last Edited: 2015-05-15 14:52:33
May 15 2015 14:52 GMT
#29
The post seems a more complicated version of what I suggested in this forum topic, proposing mining efficiency (mining per trip) to drop as the patch gets mined, giving a clear window time of ecconomical advantage for expanding players.

http://us.battle.net/sc2/en/forum/topic/17259647265
tili
Profile Joined July 2012
United States1332 Posts
May 15 2015 14:53 GMT
#30
A elegant alternative to Blizzard's perhaps overly simplified solution.

I can't help but think that they thought of this and perhaps have a reason for doing the current half (or 60%) vs full patch... maybe to make it obvious to the player which nodes are fuller to maybe populate those first?

On May 15 2015 09:57 Plexa wrote:
You know shit is serious when matlab gets pulled out.


Also this

linuxguru1
Profile Joined February 2012
110 Posts
May 15 2015 14:58 GMT
#31
Very interesting idea. I think it's definitely worth testing out. Will keep checking this thread to see if any custom maps that implement this are released.

As a side note: it's great to see that the community is so engaged in making sure LotV will be a quality game
BlackLilium
Profile Joined April 2011
Poland426 Posts
Last Edited: 2015-05-15 18:16:19
May 15 2015 18:11 GMT
#32
Nicely put, I am sure you have spend a lot of time to prepare that!
I too think it is better than the current LotV model.
Still, I think it gives less strategic options than DHx models. Why?

Consider the following scenarios:

Fast expansion on low worker count
HotS: Absolutely no reason to expand if you don't plan to get more workers.
DPM: The risk of taking base early gives no benefit. Only after several minutes the base will pay for itself.
DH9: Benefit is not big, but noticeable, especially at high-level play. Allows for cutting workers for army, while maintaining income.

Moderate/balanced expansion and sub-saturate (less than pathes x2) worker count
DPM: The only valid economy strategy of this model
DH9: Most common strategy, giving a game similar to open/expansive HotS strategy
HotS: Valid in aggresive builds, otherwise you want to keep worker production ("probes and pylons")

Low expansion with saturated bases (patches x2)
DPM: A trap! Soon you end up with oversaturated bases. Soon you end up in a situation "must expand", although not so aburptly as in LotV. Otherwise - why did you build so many workers if you didn't plan to expand?
DH9: A valid HotS-like turtle strategy, with a moderate drop in efficiency
HotS: Standard build.

Expansion lost: few oversaturated bases
DPM: Heaviest punishment, similar to LotV. You have a lot of workers with nothing to do.
DH9: Oversaturated bases, even with 24+ workers, give you a marginal income bonus - higher than HotS - giving you a chance to rebuild.
HotS: Moderate punishment, you get some income bonus in 16-24 worker count range.

DH9 gives you options. While losing an expansion is never wanted, every situation is a valid strategy that gives you something to do. In HotS, LotV and DPM there is one "best" strategy and all other cases are - in most cases - an error.
[MOD]Economy - Hot Mineral Harvesting
ZeroCartin
Profile Blog Joined March 2008
Costa Rica2390 Posts
May 15 2015 18:49 GMT
#33
On May 15 2015 09:57 Plexa wrote:
You know shit is serious when matlab gets pulled out.

this so much lol
"My sister is on vacation in Costa Rica right now. I hope she stays a while because she's a miserable cunt." -pubbanana
frostalgia
Profile Joined March 2011
United States178 Posts
May 15 2015 19:14 GMT
#34
As I've stated many times with these new income model ideas, I think this is another one of those "right idea, still too complicated" types of economy models. Many of the ideas being thrown around achieve a desired result to reward faster expanding, but unfortunately confuse the process a little too much.

A simple way to achieve this that isn't being considered yet is lowering the amount of patches from 8 to 6 per base. Each base will reach full saturation much quicker, while also slightly lowering mineral income (and I mean very slightly.. like you don't float minerals while trying to spend gas anyway). This will mean players who expand faster will make use of their workers and achieve a better income.

Lowering patches from 8 to 6 (with 1500 in each patch) is easy to digest for all levels of players, yet still affects expanding and income in a way that will make things a lot more interesting.

I know what you're thinking, but I ask you to fully consider the effects before writing this off. I don't believe MULEs would be a huge deal with this economic model, as it would only mean Terran gets a better income than other races.. which they already do. They'll still only be able to saturate up to 12 workers per base, and when they use MULEs the bases will mine faster. This should still even out with the faster worker-pumping Zerg and Protoss have, and if Terrans decide to camp it can be exploited now a lot easier than back in the WoL days. If MULEs did prove to create too much of an income advantage, the amount of minerals returned or the harvest time could be lowered to even things out if necessary. That's what Beta is for.. trying out reasonable ideas that work in the long run, and tweaking if necessary.

Saturating every base at 12 workers is a simple change with complex ramifications on expanding and income that should add some more interesting decision making once you fully saturate a base.. instead of the current model, where you get 2-3 bases of income then only expand once you mine out a base. It's doable, it would just take the support of some of us who are willing to try it out.
we are all but shadows in the void
ZigguratOfUr
Profile Blog Joined April 2012
Iraq16955 Posts
May 15 2015 19:23 GMT
#35
Pretty neat idea.

On May 15 2015 23:52 JCoto wrote:
The post seems a more complicated version of what I suggested in this forum topic, proposing mining efficiency (mining per trip) to drop as the patch gets mined, giving a clear window time of ecconomical advantage for expanding players.

http://us.battle.net/sc2/en/forum/topic/17259647265


Your solution isn't as good because its harder to eyeball how much money you're getting at any given time, especially for a newer player. With this it's obvious to anyone how the economy is decreasing.
FueledUpAndReadyToGo
Profile Blog Joined March 2013
Netherlands30548 Posts
May 15 2015 20:59 GMT
#36
This makes basic economy management so difficult. Requires constant worker migration. I don't see it happening.
Neosteel Enthusiast
GunLove
Profile Joined June 2011
Netherlands105 Posts
Last Edited: 2015-05-15 21:56:27
May 15 2015 21:19 GMT
#37
I commend OP on such and elaborate write-up, but to be frank I think this is a horrible idea. Perhaps it sounds good on paper, and in graphs, but it completely forgoes any practical considerations. I therefore also suspect that most of the commenters here are not playing the beta yet.

Also, my fundamental issue with all these new style economy propositions, is that they do not consider what Blizzard is actually trying to achieve with their new style economy. Namely:
1. Speeding up the game where it counts
2. Breaking stalemate type gameplay and 200 vs 200 game-ending battles.
3. Emphasizing army control/micro over the macro side of things.

- OP's idea
The main point you are overlooking in this proposition is the amount of work that goes into redistributing your workers from base to base to achieve optimal saturation. If you play the beta currently, you will already notice a considerable increase in workload (especially later in the game when you have many bases), even only if it's half the patches that run out at the same time.
Don't forget that this process also includes the effort that goes into re-adjusting townhall rallypoints and monitoring the saturation levels in the meantime (these do not only require extra micro actions, but also mental attention and visual confirmation).
I'll bet my butt that Blizzard already considers this extra economical micro workload the main drawback of having 2 different mineral values, and secretly, in an ideal world, they'd like to automate this process, but don't dare to consider it because of community backlash "boohoo dumbing down the game" etc.
Proposing to quadruple this workload (with 8 different patch mineout times instead of 2 in LotV) is just ludicrous, and only possible by someone who thinks purely in matlab (no offense).

- DH9/DH10
The main problem I see here is that DH9/DH10 just induces the scenarios that Blizzard is trying to solve. This model basically wants to make the advantage of being up a base on your opponent smaller than it currently is in LotV. Indeed the argument that is used, is that the turtling tactic should be more viable.
Apart from the fact this slows down the game, it also encourages 200-200 battles. If a 3 base player has an economic advantage that he cannot capitalize on reasonably soon, over a 2 basing turtler that is trying to max out, neither side will be challenged to make plays. Think about it: the macro player can't harass because the other is turtling, and the turtler can't harass because trading armies works in the favor of the opponent.

In LotV, if someone expands you better expand too, or put on the pressure. In any case, you gotta do something FAST.
Also, imho, the whole "encouraged to expand" vs "expand or else" argument that lines all these economy proposals is just utter sophistry. It's not the economic model that makes you have to expand, it's your OPPONENT. Go play a 100 games in beta and you will see it's only semantics, and that it's still perfectly viable to be behind a base and make a big push to punish the macroing player or even win outright.

The only thing we really lose here is that turtle-to-200-and-1-big-battle style, which is exactly what one of the aims is of LotV.


Addendum:

- 6 instead of 8 patches
Out of all the new economy ideas I actually think this one has the most merit, although I can't see how it is better than the current LotV model.
The biggest thing this does is slow down the game in a meaningless way. Yes, you have to spread out earlier to more bases, so it does open more harass opportunities. But you will get to that situation slower, because of less income per second per base. One of the nice things in LotV is that the action picks up a lot earlier in the game than we are used to.

Also, I have a feeling most people forget that even though your main and natural base might be mined out quickly in LotV, more than 9 times out of 10 these bases will contain most of your production and tech buildings, which are still a prime target for harass. In other words, don't forget you're still very much 'spread out', even though those bases might no longer contain minerals.

rpgalon
Profile Joined April 2011
Brazil1069 Posts
May 15 2015 22:11 GMT
#38
On May 16 2015 06:19 GunLove wrote:
I commend OP on such and elaborate write-up, but to be frank I think this is a horrible idea. Perhaps it sounds good on paper, and in graphs, but it completely forgoes any practical considerations. I therefore also suspect that most of the commenters here are not playing the beta yet.

Also, my fundamental issue with all these new style economy propositions, is that they do not consider what Blizzard is actually trying to achieve with their new style economy. Namely:
1. Speeding up the game where it counts
2. Breaking stalemate type gameplay and 200 vs 200 game-ending battles.
3. Emphasizing army control/micro over the macro side of things.

- OP's idea
The main point you are overlooking in this proposition is the amount of work that goes into redistributing your workers from base to base to achieve optimal saturation. If you play the beta currently, you will already notice a considerable increase in workload (especially later in the game when you have many bases), even only if it's half the patches that run out at the same time.
Don't forget that this process also includes the effort that goes into re-adjusting townhall rallypoints and monitoring the saturation levels in the meantime (these do not only require extra micro actions, but also mental attention and visual confirmation).
I'll bet my butt that Blizzard already considers this extra economical micro workload the main drawback of having 2 different mineral values, and secretly, in an ideal world, they'd like to automate this process, but don't dare to consider it because of community backlash 'boohoo dumbing down the game' etc.
Proposing to quadruple this workload (with 8 different patch mineout times instead of 2 in LotV) is just ludicrous, and only possible by someone who thinks purely in matlab (no offense).

- DH9/DH10
The main problem I see here is that DH9/DH10 just induces the scenarios that Blizzard is trying to solve. This model basically wants to make the advantage of being up a base on your opponent smaller than it currently is in LotV. Indeed the argument that is used, is that the turtling tactic should be more viable.
Apart from the fact this slows down the game, it also encourages 200-200 battles. If a 3 base player has an economic advantage that he cannot capitalize on reasonably soon, over a 2 basing turtler that is trying to max out, neither side will be challenged to make plays. Think about it: the macro player can't harass because the other is turtling, and the turtler can't harass because trading armies works in the favor of the opponent.

In LotV, if someone expands you better expand too, or put on the pressure. In any case, you gotta do something FAST.
Also, imho, the whole "encouraged to expand" vs "expand or else" argument that lines all these economy proposals is just utter sophistry. It's not the economic model that makes you have to expand, it's your OPPONENT. Go play a 100 games in beta and you will see it's only semantics, and that it's still perfectly viable to be behind a base and make a big push to punish the macroing player or even win outright.

The only thing we really lose here is that turtle-to-200-and-1-big-battle style, which is exactly what one of the aims is of LotV.


Addendum:

- 6 instead of 8 patches
Out of all the new economy ideas I actually think this one has the most merit, although I can't see how it is better than the current LotV model.
The biggest thing this does is slow down the game in a meaningless way. Yes, you have to spread out earlier to more bases, so it does open more harass opportunities. But you will get to that situation slower, because of less income per second per base. One of the nice things in LotV is that the action picks up a lot earlier in the game than we are used to.

Also, I have a feeling most people forget that even though your main and natural base might be mined out quickly in LotV, more than 9 times out of 10 these bases will contain most of your production and tech buildings, which are still a prime target for harass. In other words, don't forget you're still very much 'spread out', even though those bases might no longer contain minerals.


It's nice to see some people having these thoughts too, I agree with you 100%.

I think DH does not encourage expanding enough.
the blizzard system is better in avoiding deathball games because each base is extremely important, so you can get really ahead if you attack and harass a base, of course while trying to keep your bases safe, and the player that is able to stay one effective base ahead, gets a deserved clear advantage.

the reward in attacking is too good to ignore. playing defensively is less effective, so each player ends up attacking each other far more in LotV.
badog
WhenRaxFly
Profile Joined April 2015
45 Posts
May 15 2015 23:28 GMT
#39
I think blizzard's model is best - it's simple and efficient.

The OP's proposal is just a more complicated version of Blizzard's suggestion.

DH still pretty much the same as the current HOTS model except it's more efficient mining so you need less workers to max a base.

Blizzard's model rewards worker management but doesn't over punish lack of management, so it's a pretty good compromise.
`dunedain
Profile Blog Joined April 2011
655 Posts
May 16 2015 00:17 GMT
#40
Wow, very solid write-up.
Thanks for the effort put into this, hopefully Blizz checks this out.
"In order to be created, a work of art must first make use of the dark forces of the soul." ~Albert Camus
Prev 1 2 3 4 5 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 1h 26m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
OGKoka 157
ProTech77
StarCraft: Brood War
Hyuk 1370
actioN 631
Rush 148
Leta 137
Dewaltoss 69
Rock 28
Nal_rA 20
NotJumperer 15
ajuk12(nOOB) 14
SilentControl 9
[ Show more ]
Sharp 0
Dota 2
XcaliburYe13
League of Legends
JimRising 438
Counter-Strike
olofmeister478
shoxiejesuss392
Super Smash Bros
Mew2King45
Westballz36
Other Games
summit1g7533
crisheroes332
C9.Mang0253
Happy235
Hui .175
byalli152
NeuroSwarm61
Trikslyr21
trigger2
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• Berry_CruncH229
• LUISG 29
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 2
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Upcoming Events
RSL Revival
1h 26m
Zoun vs Classic
Map Test Tournament
2h 26m
Korean StarCraft League
18h 26m
BSL Open LAN 2025 - War…
23h 26m
RSL Revival
1d 1h
Reynor vs Cure
BSL Open LAN 2025 - War…
1d 23h
RSL Revival
2 days
Online Event
2 days
Wardi Open
3 days
Monday Night Weeklies
3 days
[ Show More ]
Sparkling Tuna Cup
4 days
LiuLi Cup
5 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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.