• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 10:37
CET 16:37
KST 00:37
  • 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!44$5,000+ WardiTV 2025 Championship7[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 StarCraft, SC2, HotS, WC3, Returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close" TL.net Map Contest #21: Winners Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament Constellation Cup - Main Event - Stellar Fest $5,000+ WardiTV 2025 Championship 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
FlaSh on: Biggest Problem With SnOw's Playstyle BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ Where's CardinalAllin/Jukado the mapmaker? [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[ASL20] Grand Finals [BSL21] RO32 Group A - Saturday 21:00 CET [Megathread] Daily Proleagues [BSL21] RO32 Group B - Sunday 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
Stormgate/Frost Giant Megathread Nintendo Switch Thread 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
The Games Industry And ATVI US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread
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 Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
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
Learning my new SC2 hotkey…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1366 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
Denmark3453 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
LAN Event
15:00
Stellar Fest: Day 3
ByuN vs Zoun
TBD vs TriGGeR
Clem vs TBD
IndyStarCraft 173
EnkiAlexander 52
Liquipedia
WardiTV Korean Royale
12:00
Group Stage 1 - Group A
WardiTV1072
Rex125
IntoTheiNu 27
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Reynor 286
IndyStarCraft 173
Rex 125
MindelVK 38
Railgan 13
StarCraft: Brood War
firebathero 6804
Sea 3328
JulyZerg 798
GuemChi 641
Mini 550
Soma 366
Barracks 269
PianO 173
Hyun 133
hero 129
[ Show more ]
Last 121
Larva 54
ggaemo 47
Backho 35
ToSsGirL 30
Terrorterran 24
zelot 18
HiyA 17
scan(afreeca) 13
Dota 2
qojqva3075
Dendi980
syndereN174
BananaSlamJamma141
LuMiX1
Counter-Strike
byalli342
Heroes of the Storm
Khaldor390
Other Games
gofns3275
singsing2407
B2W.Neo1507
Mlord605
Hui .301
Sick195
RotterdaM185
XcaliburYe80
goatrope65
QueenE57
Organizations
StarCraft 2
ComeBackTV 638
UrsaTVCanada245
StarCraft: Brood War
Kim Chul Min (afreeca) 14
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Adnapsc2 6
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2728
• WagamamaTV508
• Ler88
Upcoming Events
IPSL
2h 23m
JDConan vs WIZARD
WolFix vs Cross
BSL 21
4h 23m
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
OSC
7h 23m
OSC
17h 23m
Wardi Open
20h 23m
Replay Cast
1d 7h
WardiTV Korean Royale
1d 20h
Replay Cast
2 days
Kung Fu Cup
2 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
3 days
[ Show More ]
The PondCast
3 days
RSL Revival
3 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
3 days
WardiTV Korean Royale
3 days
Replay Cast
4 days
RSL Revival
4 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
4 days
CranKy Ducklings
5 days
RSL Revival
5 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
5 days
BSL 21
6 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
6 days
RSL Revival
6 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
6 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
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...

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.