Av! Some Imperator news for you all! My name is Thomas and Im a Studio Manager here at Paradox, some of you probably know me from the old days when I worked on EU4 among other things. Recently one of my side activities has been to coordinate a small effort around Imperator:Rome. Its now been a while since the release of Anniversary Patch 2.0.4 Augustus. In fact, its been a little over half a year now! We were thrilled by the incredible community support for that labor of love, crafted by some of our developers here at Paradox in collaboration with some exceptionally talented modders. Building on that and a continuous collaboration with parts of our fantastic modding community, we dedicated some additional resources and weve got another patch for you! Patch 2.0.5 is now available on the open beta branch. Like 2.0.4, its primary focus is on providing modders with more tools and greater freedom in the game. But thats not allit also includes several quality-of-life improvements that should enhance your vanilla experience as well. Were excited to hear what you think of this patch, which we plan to release in full in the (near-ish) future. If you encounter any issues while trying out the beta, please let us know! Your feedback is invaluable in helping us fine-tune this update and ensure its as stable and polished as possible for its final release. Additionally, Im not making any promises here, but dont hesitate to suggest additional improvements for future updates if we manage to get to that point. Special thanks to Katten & Sir Rogers who did most of the heavy lifting for this update, it would not have happened without them!. They will also hang around here and pick up on your feedback!
Credits
Imperator: [strike](Patch name not decided)[/strike] (2.0.5)
- Thomas Johansson - Studio Manager
- Niels Uiterwijk - Technical Director
- Benjamin Larsson - Build Engineer
- Vjola Velikaj - Build Engineer
- Erik Jakobsson - Community Manager
- Peter Nicholson - Game Director
- Erik Nikko - Tech Lead
- Milica Maricic - Producer
- Roger Webber - Programming Consultant
Modders who supported the release
- Joshua Lilly Zorgoball
- Robbe Vander Kerken Snowlet
- Izn Hasan Naqvi LinkLuver
- Carlos Austin-Gonzalez
- Pureon
New Defines
BATTLE_COMMANDER_ESCAPE_CAPTURE
- If the loser army was not overrun, a random integer will do a module check against this value
- If the rolled value is less than the charisma of the army leader, they will charm their way out of the situation and avoid capture
BATTLE_COMMANDER_CAPTURE_MARTIAL_CHECK
- This check is done if no charming out of the situation has happened before, and is only done if the winning army has a valid leader. If there are no leaders on the winning side this check is not done
- Mercenaries cannot be captured this way and are excluded from this check
- If the loser army was overrun OR if a random rolled integer with a modulo against this define is smaller than half the martial value of the highest martial winning commander, the loser commander gets captured
BATTLE_MIN_CASUALTIES_IMPACT
- Casualties impact is always the difference of tactics between the armies of the countries involved
- This defines a minimum amount of casualties that will always happen regardless of the difference
BATTLE_NO_POPULARITY_LOSS_IF_RATIO_AS_ATTACKER
- If the attacker has this many times more units than the defender and loses, there is no popularity loss
BATTLE_NO_POPULARITY_LOSS_IF_RATIO_AS_DEFENDER
- If the defender has this many times more units than the attacker and loses, there is no popularity loss
END_OF_COMBAT_STRENGTH_RATIO_MODIFIER
- This amplifies the strength ratio by the given define, so it increases or decreases the impact that the ratio has for end of combat morale boost
END_OF_COMBAT_MORALE_BOOST_MAX
- This defines up to how much of the total morale a unit can regain at the end of combat
MINIMUM_LOSS_RATIO_THRESHOLD_FOR_BATTLE_RESULT
- The battle result is only stored if this number is surpassed for losses in combat
OVERRUN_FACTOR_FOR_INITIAL_CHECK
- This is checked once at the start of combat, if the difference is equal to or bigger than this the enemy army is instantly overrun
New Effects
Scope: Character
set_can_inherit = bool
- The game plays as usual when this is set to true for a character. However when set to false the character cannot inherit anything anymore unless it is set to true again. This includes worldly possessions as well as leadership of a country. When this is set to false successors for the country are instantly recalculated.
- The game plays as usual when this is set to true for a character. However this allows modders to play around with marriage, as setting this to false means the character can never marry, unless it is set to true again.
Scope: Country
allow_trade_goods = goods disallow_trade_goods = goods
- These two allow/disallow the AI from trading away the goods specified. This allows modders to add more interesting gameplay elements around trade.
- This instantly calls an omen for the given deity category. The same way a player would do it from the UI, but there is no cost associated with it.
- This instantly ends the truce that the scope country has with the target country. Truces are unilateral in nature, so both countries may have a truce with one another or it is possible for only one if the countries involved to have a truce with the other.
- This allows you to start an interaction with the target character, as a player usually would via the UI. This allows mods to further customize the experience without necessarily having to touch the UI, or by making actions available that were previously only available through UI or with cumbersome scripts.
Scope: CountryCulture
set_levy_template = template
- This allows you to change the levy template for a culture in a specific country without touching the same culture in other countries, allowing you to reward players for specific behavior. It is important to note here that there are various tooltips in the game that show a cultures composition that will not properly reflect changes from this, as they have no context for which country the composition is being displayed. The Raise Levy tooltip will always reflect the proper value.
Scope: Province
start_building_construction = building cancel_building_construction = building
- These two start/cancel the construction of a building in the given province.
- You can change the climate of the province to one of the following: mild_winter, normal_winter, severe_winter, arid and none
Scope: War
war_score_value = { target = country, local_var = name }
- This will save the war score of the target country that is a participant in the war scope that you are in to the local variable with the name provided. The variable does not have to exist yet. So if you are ROM, fighting against TRE, and you fetch the war score value of TRE, it will save their war score against the enemy war leader (ROM in this case if you are the war leader). So it will be the inverse of what you see as a player of ROM.
New Triggers
Scope: Character
can_inherit = bool
- Simple trigger that returns the value previously set by can_inherit. It returns true by default.
- This checks against the value that has previously been set by set_can_marry, but it also checks the default marriage conditions. This has allowed us to improve some of the script for the game, to simplify the marriage checks and unify them. To make it easier for modders to adopt the changes, here is a document that has all of the relevant script changes from the base game:
- https://docs.google.com/document/d/1Ft_BPHm-dWB-IuJ9o8UG4cAutb79tP7jzsVffxvsCXA
Scope: Country
has_claim = province
- Checks if the country has a claim on the given province.
- Checks if the given trade goods are allowed to be traded away by the scope country. This can be modified with the effects listed above.
Scope: Province
is_holy_site_of_deity = deity
- Checks if the given province is a holy site for the given deity.
- Checks if the given province is a holy site for the given religion.
General Modding
- Added modifier script access, on the scopes that have modifiers: country, character & province. Accessible via modifier:modifier_name
- Added MakeScopeBool, MakeScopeFlag, MakeScopeValue
- Added SetVariableIf, SetOrToggle, ClearVariableIf, ClearMultipleVariables to the VariableSystem
- Added support for optional exists equality operator ?=
- Added support for save_scope_value_as and save_temporary_scope_value_as
- Added script list region_governorship
- The automatic legacy character setup conversion has been moved to a console command: legacy_character_setup_conversion
- The setup editor no longer automatically saves every time a province is selected. It now uses the console command only.
- Made religion_category customizable, so mods can add new categories. Also made it localizable: religion_category_X and religion_pantheon_X where X is the category name
- Religions can now also be customized with is_monotheistic
- Added error logs to the set_party_leader effect
- Fixed every_province, random_province and any_province: they now work properly
GUI
- SetHighlightGovernorship = governorship and SetHighlightState = state have been added
- PdxGuiWidget.CountVisibleChildren and PdxGuiWidget.GetChildrenCount have been added
- GetGlobalVariable and GetGlobalList have been added
- AddList has been added
- Added GetLevyTemplate to CountryCulture, as unlike the one from a country, this takes into account the one set via set_levy_template
- Other
- has_culture_group and set_country_religion now support more than just hardcoded values, they now have scope support
- Added Log.ClearAll & Log.ClearErrorLog console commands
- Overlords can now construct buildings in certain subject types, set with can_build in the subject type
The Rest
AI
- The AI now disbands units created via create_unit effect and will no longer keep them around forever and unnecessarily hurt its own economy
Multiplayer
- Moving pops too quickly, like mass moving slaves would previously cause you to pay for the move but not actually move any pops. This has been fixed, it will now always move the pop if it can, and if it cannot, like if the player clicked more often than pops are available to move, then no cost will be deducted
Combat Simulator
Fixed up combat simulator crashes. Also enhanced functionality:
- location = province has moved to being defined once per simulation instead of per unit.
- is_player_attacker = bool has been added so choosing a battle side is now possible that way.
- enemy = country has been added. This means you can simulate combat against other nations. If those are non-barbarian nations and no war exists, a war will be declared automatically.
GUI
- The Find dialog will now also return governorships and states in addition to the previous result types
- Added climate map mode
Other
- Overlords can now construct buildings in certain subject types
- Holdings are now removed properly when characters move countries or the province changes owners. This fixes an issue where third party country provinces are dragged into an unrelated war. Also only owner-controlled provinces join civil wars now.
- Fixed location of Sparta so that it does not visually disappear when a road is built through the province
- Various script fixes related to marriage checks, and adjusted to the new can_marry trigger
- Arrange marriage now available in countries with custom ruler setups, it is now allowed for the ruler family instead of just close relatives
- Mercenaries can no longer be marriage targets
- Fixed a crash that would occur for players using mods that do not have certain gfx assets available, for example from the free DLC
- Revolt countries now instantly recalculate their cached data, this fixes various issues like integrated cultures and levies now being correct instead of only being at the right value at the next monthly tick
- Fixed tooltip that stated achievements would only work with no mods enabled. The tooltips now represent the correct state, which was changed with 2.0.4, as they can be gained with mods
- Fixed 3D map objects like forts and ports not being removed when a province is decolonized. Also now instantly recalculates province dominant culture, religion and modifiers when pops are removed
- Fixed governor policies script bug with country cultures
- Fixed befriending script bug not being removed properly on ruler change
- Fixed DECLWAROTHER_MAP being displayed unlocalized on the map, this only worked correctly in the French language before
- When switching from a government with a co-ruler to a government without one. The existing co-ruler is now removed properly, and will no longer stick around forever causing issues
- Fixed crash on peace offer, when the country to receive a state was not the same as the one making the offer, and the offering country had no province in the area
- Secondary war participants now also see peace deals as popups
[ 2024-12-06 14:42:07 CET ] [ Original post ]
- Imperator: Rome Linux [246.09 M]
- Imperator: Rome Launcher Linux [141.66 M]
- Imperator: Rome Launcher Content Linux [531 ]
- Imperator: Rome - Deluxe Edition Upgrade Pack
- Imperator: Rome - Complete Soundtrack
- Imperator: Rome - The Punic Wars Content Pack
- Imperator: Rome - Magna Graecia Content Pack
- Imperator: Rome - Heirs of Alexander Content Pack
Imperator: Rome is the newest grand strategy title from Paradox Development Studio. Set in the tumultuous centuries from Alexander’s Successor Empires in the East to the foundation of the Roman Empire, Imperator: Rome invites you to relive the pageantry and challenges of empire building in the classical era. Manage your population, keep an eye out for treachery, and keep faith with your gods.
Imperator: Rome’s features include:
Character Management:
A living world of characters with varying skills and traits that will change over time. They will lead your nation, govern your provinces and command your armies and fleets. We also introduce our new, more human-like character art.Diverse Populations:
Citizens, freemen, tribesmen and slaves - each population with its own culture and religion. Whether they fill your armies, fill your coffers or fill your colonies, keep an eye on their happiness - your success depends on their satisfaction.Battle Tactics:
Choose your approach before battle to counter the stratagems of your foes.Military Traditions:
Each culture has a unique way of waging war. Romans and Celts have different options available to them. Unlock unique bonuses, abilities and units.Different Government Types:
Manage the senate in a Republic, hold your court together in a monarchy, answer to the clans in a tribal system.Barbarians and Rebellions:
Migrating barbarians may sack or settle your best land, while disloyal governors or generals can turn against you - taking their armies with them!Trade:
Goods provide bonuses to their home province. Will you take advantage of stockpiles for local strength or trade excess goods to spread the wealth around?Provincial Improvement:
Invest in buildings, roads and defences to make your kingdom stronger and richer.- OS: Ubuntu 20.04
- Processor: Intel iCore i3-550 or AMD Phenom II X6 1055TMemory: 4 GB RAM
- Memory: 4 GB RAM
- Graphics: Nvidia GeForce GTX 460 or AMD Radeon HD 6970
- OS: Ubuntu 20.04
- Processor: Intel iCore i5- 3570K or AMD Ryzen 3 2200GMemory: 6 GB RAM
- Memory: 6 GB RAM
- Graphics: Nvidia GeForce GTX 660 or AMD Radeon R9 380
[ 6132 ]
[ 2625 ]