安装 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(越南语)
Українська(乌克兰语)
报告翻译问题









That's a real shame.
I was trying to find a way to save your mod, as playing without it makes the game just less enjoyable. :/
But there is 2 possibility :
- A : have a monthly /yearly event to check state population. There is 660 states in Vic3 so it shouldn't be that much performance heavy.
- B : have a permanent modifier on every state that may be something like this :
hig_pop_land = {
value = {
value = arable_land
add = 100000
}
}
hig_pop_state_birthrate_value = {
value = {
value = state_population
divide = arable_land
}
if = {
limit = { state_population > hig_pop_land }
multiply = -0.5
}
else = {
value = 1
}
}
Theoretically it's possible to use AI only events to continuously check all states for their population and apply modifiers to them, but that's too much jank and too bad for performance.
[code]hig_pop_state_birthrate_value = {
value = {
value = state_population
divide = arable_land
}
multiply = -0.5
}
hig_pop_state = {
every_state = {
if = {
limit = {
state_population > arable_land
}
state_birth_rate_mult = hig_pop_state_birthrate_value
}
}
}[/code]
so you recreat a value that scale smoothly to -1 and then use it as a birthrate to the state you want to target
The high_pop_state static modifier that used to be in the game scaled smoothly from 0 at the defined threshold to 100% at double the pops.
It's a real shame that your mod is no longer functioning. Even "only" the resource part overhauled the game so much that I couldn't play without it :/
With this change, it's impossible for population capacity to work as intended, since population can grow pretty much infinitely.
Vanilla can't decide if arable land is supposed to be actual arable land - so places like the midwestern US or Argentina would have a lot of it, despite their comparatively low population density - or if it's supposed to provide capacity for peasants - so places like Southern China and Japan, which IRL don't have a lot of actual arable land, need to have a lot of it.
Turning arable land into population capacity and changing agricultural resources to be capped individually was my way to split these two concepts.