Page 1 of 1

custom minimal yield

Posted: Fri Mar 07, 2014 9:29 pm
by AlexPhoenix
request just in topic name.
i wanna method to set custom minimal yield for infinity resources.

Re: custom minimal yield

Posted: Mon Mar 10, 2014 6:43 pm
by kovarex
You can already do it.

crude-oil definition:

Code: Select all

minimum = 750,
normal = 7500,
This means, that the resource amount will not go under 750, while 7500 == 100%.
So if you change the 7500 to 3750, the minimum yield will produce the resource 2 times faster as 750 is 20% of 3750.

I hope I wasn't too confusing :)

Re: custom minimal yield

Posted: Tue Mar 11, 2014 6:15 am
by AlexPhoenix
ah, so
minYield=<normal>/<minimum>
for crudeoil this is
7500/750=0.1

hm, big thanks, i didnt guess that this is so simple.