• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:49
CEST 17:49
KST 00:49
  • 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: Summer's End0Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7
Community News
GSTL Returns in 2026!40Weekly Cups (Aug 3-9): Protoss get shut out7RSL goes to London! 2026 Offline Finals Nov 21-2212Weekly Cups (July 27-Aug 2): SHIN's big week0SC4ALL II: Brood War - $2500 - Dec 5-611
StarCraft 2
General
GSTL Returns in 2026! Balance hotfix patch 5.0.16b (July 16) SC4ALL: II Talent Announcement! Protoss AoE skill expression Weekly Cups (Aug 3-9): Protoss get shut out
Tourneys
2026 KungFu Cup Announcement PIG STY FESTIVAL 8.0! (13 - 23 August) Sparkling Tuna Cup - Weekly Open Tournament 2026 GSTL Announcement Sea Duckling Open (Global, Bronze-Diamond)
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 538 Media Blackout The PondCast: SC2 News & Results Mutation # 537 Hostile Territory Mutation # 536 Railroad Switch
Brood War
General
BW General Discussion Best Games Kespa era [ASL22] Ro24 Preview: Summer's End Your past clans ASL22 General Discussion
Tourneys
CSLAN 4 is Coming! [ASL22] Ro24 Group A Small VOD Thread 2.0 Escore Tournament - Season 3
Strategy
Odyssey Mineral Stack Saturation Fighting Spirit mining rates Any training maps people recommend? Simple Questions, Simple Answers
Other Games
General Games
General RTS Discussion Thread Nintendo Switch Thread Anyone here play Quakeworld back in the day? Stormgate/Frost Giant Megathread 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
Artificial Intelligence Thread US Politics Mega-thread Russo-Ukrainian War Thread European Politico-economics QA Mega-thread The Letting Off Steam Thread
Fan Clubs
MarineLorD Fan Club The ShoWTimE Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! Anime Discussion Thread Series you have seen recently... [Req][Books] Good Fantasy/SciFi books
Sports
MLB/Baseball 2023 Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion Formula 1 Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Simple Questions Simple Answers FPS when play League Of Legend on laptop
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
LOCKPICKING NOOB
LUCKY_NOOB
Chinese Gen Z: Between Dream…
TrAiDoS
Cathedral Of CS And NY pizza a…
FuDDx
Please support my new stand…
Peanutsc
Hello guys!
LIN1s
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7510 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
France2025 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
Denmark3533 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
Netherlands7032 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
657 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
PiG Sty Festival
12:00
PiGfest 8.0 Group D
PiGStarcraft1619
IntoTheiNu 903
ComeBackTV 624
IndyStarCraft 189
Rex148
BRAT_OK 130
3DClanTV 93
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft1619
IndyStarCraft 189
Rex 148
BRAT_OK 130
SHIN 31
EmSc Tv 7
StarCraft: Brood War
Light 363
Snow 157
Mong 97
soO 71
Hyun 61
ToSsGirL 50
Sexy 43
ZZZero.O 37
zelot 26
Free 25
[ Show more ]
Rock 23
Bale 23
scan(afreeca) 20
NaDa 17
Terrorterran 17
Sacsri 13
Noble 6
Dota 2
qojqva4497
Counter-Strike
fl0m5284
ScreaM1765
kRYSTAL_257
Super Smash Bros
Mew2King222
Chillindude27
Other Games
singsing1501
Liquid`RaSZi973
B2W.Neo936
KnowMe72
Organizations
StarCraft 2
TaKeTV 208
EmSc Tv 7
EmSc2Tv 7
[ Show 15 non-featured ]
StarCraft 2
• poizon28 32
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• HerbMon 32
• Michael_bg 9
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV1154
League of Legends
• Jankos1963
• Nemesis1713
Other Games
• Shiphtur154
Upcoming Events
IPSL
12m
OSC
8h 12m
Afreeca Starleague
18h 12m
Rush vs Hm
Bisu vs Shuttle
WardiTV Weekly
19h 12m
The Patches Monday
1d
Afreeca Starleague
1d 18h
Sharp vs Shinee
Action vs Shine
GSL
1d 19h
PiGosaur Cup
2 days
Replay Cast
2 days
Afreeca Starleague
2 days
BeSt vs Paralyze
Jaedong vs Speed
[ Show More ]
Kung Fu Cup
2 days
Replay Cast
3 days
The PondCast
3 days
KCM Race Survival
3 days
Replay Cast
4 days
PiG Sty Festival
4 days
CranKy Ducklings
5 days
PiG Sty Festival
5 days
Sparkling Tuna Cup
6 days
PiG Sty Festival
6 days
Liquipedia Results

Completed

Escore Tournament S3: W7
CranK Gathers Season 4: BW vs SC2 Team League
Eternal Conflict S2 Finale

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
Acropolis #5
CSLAN 4
RSL Revival: Season 6
PiG Sty Festival 8.0
META DYMY #4
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

ASL Season 22
CSL Season 22: Qualifier 1
Escore Tournament S3: W8
CSL Season 22: Qualifier 2
CSL 2026 AUTUMN (S22)
Acropolis #5 - TRS
Blizzard Classic Cup 2026
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Big Dog Cup 2026 Div 1
Stake Ranked Episode 5
PGL Masters Bucharest 2026
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
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.