Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem









I'm thinking about lowering the pop requirement because of the adjustments
Here is a more common version:
Max( (80 * Source.EraLevel ^ 1.7),
(200 * ((4 * (Target.ExtensionDistrictsCount - 10 * Source.FameGainBonus - Target.TerritoryCount) - max(1, Target.Population)) / 4) ^ 1.75)
(80 * Source.EraLevel ^ 1.7)
max (200 * ((4 * (Target.ExtensionDistrictsCount - 10 * Source.FameGainBonus - Target.TerritoryCount) - 1 max Target.Population) / 4) ^ 1.75)
/********************************************************************/
(80 * Source.EraLevel ^ 1.7) <- this part is fine. It's a constant. I understand it.
then I multiply it? There is no multiplication sign.
max(200...)
There is only one term in the parenthesis. max implies you are taking the maximum of 2 or more values. max(x,y) or max(array) returns the maximum value among the choices.
max Target.Population? There are multiple targets to choose from?