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
Britain takeover-time is greatly reduced (works as intended)
France takeover-time is the standard line
u can edit their annexation in the "scripting" - LUA file if u remove their not human turn range
local function OnFactionTurnStart(context)
]if conditions.FactionName("britain", context) and not conditions.FactionIsHuman("britain", context) then
scripting.game_interface:grant_faction_handover("britain", "thirteen_colonies", 2, 4, context)
elseif conditions.FactionName("france", context) and not conditions.FactionIsHuman("france", context) then
scripting.game_interface:grant_faction_handover("france", "louisiana", 6, 15, context)
end
end
that line is pretty much at the beginning of the script right after the if conditions.FactionName("britain", context) and conditions.FactionIsHuman("britain", context) then
where only the playerfaction is affected.