• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
Showing developer posts only. Show all posts in this thread.

Johan

Studio Manager Paradox Tinto
Administrator
Paradox Staff
Moderator
15 Badges
Dec 14, 1999
19.622
107.648
  • Diplomacy
  • Teleglitch: Die More Edition
  • War of the Roses
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis III: Collection
  • Magicka: Wizard Wars Founder Wizard
  • Hearts of Iron IV Sign-up
  • Stellaris Sign-up
  • Imperator: Rome Sign Up
  • A Game of Dwarves
  • Magicka
  • Starvoid
Another week of development has gone on In Nomine, and we have time for another sneakpeak.

In Nomine introduces a new concept called decisions. You can think of decisions as "Events at Will", where as soon as all triggers are satisfied, you are able to do a certain decision. These include forming specific countries, introducing reforms, etc.. There are 3 types of decisions, for province, country and religion. There are alerts that tell you when you can enact your decisions.

Here we see the a list of possible national decisions for Russia, where founding a Russian Patriarchate is among their historical country specific decision.
inn_5b.jpg


Here is an example of how decisions are scripted, with the decision shown in the screenshot above. Only those with all potential true will be shown in the interface for that country.
Code:
	establish_russian_patriarchate = {
		potential = {
			tag = RUS
			NOT = { has_country_modifier = russian_patriarchate }
			religion = orthodox
		}
		allow = {
			war = no
			NOT = { 151 = { owned_by = BYZ } }
			prestige = 0.2
			innovative_narrowminded = 2
		}
		effect = {
			add_country_modifier = {
				name = "russian_patriarchate"
				duration = -1
			}		}
		ai_will_do = {
			factor = 1
		}
	}

Decisions together with historical missions guide the player and AI, and here is an example of an Ottoman mission that is rather likely to get at the start.
inn_5a.jpg


Of course, negotiating with Rebels is in again, and now have restrictions of when its possible to give in to their demands.
inn_5c.jpg



And since maps are cool...

This is what happens when you hit F12 in the game.. (saved in the screenshots folder.) (From a beta multiplayer campaign, about 50 years in).

inn_mp1.jpg


Shift-F12 just saves player nations and their vassals.

inn_mp2.jpg
 
Autonomous said:
Some questions; how do you differentiate between the three types of decisions? Are they all on that page? It seems to me that if you have a large empire in which every province is eligible for a decision that listing all odf them there would cause alot of clutter.
.


3 separate interfaces.. at country, at religion and at each province.