安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






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?
Best solution to this I can see is to either 3 pops per district, i think that could be a sweet spot... is there any way I can go into the mod myself and change that?