• 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.

Skarion

Field Marshal
23 Badges
Jul 3, 2004
3.436
2
  • Heir to the Throne
  • Crusader Kings III
  • Crusader Kings II: Holy Fury
  • Stellaris: Distant Stars
  • Age of Wonders III
  • Stellaris - Path to Destruction bundle
  • Stellaris
  • Pillars of Eternity
  • Crusader Kings II: Way of Life
  • 500k Club
  • 200k Club
  • Magicka
  • Crusader Kings II
  • Europa Universalis IV
  • Divine Wind
  • Europa Universalis III: Chronicles
  • Europa Universalis III
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
Hey everyone, I need some help with an event. :)

I want an event that create the state of Novgorod (with the green line as border), make the Novgorod state turn Protestant and make the province of Novgorod turn protestant.

novgorodip6.jpg


Please tell me where to put in a event too, please! :)
 
Last edited:
too little input ;)

I guess you want the owner of NVG province to grant independence to NVG and then NVG gets an event about religion change :)
 
szmik said:
too little input ;)

I guess you want the owner of NVG province to grant independence to NVG and then NVG gets an event about religion change :)

Yes :)

But that the new independent NVG should get the provinces within those borders I drew, and then a event about religious change. :)

Could you make NVG a vassal of Sweden as well?
 
What you need is an event for SWE to grant independence to NVG. This event will then trigger two other events: one for NVG to convert the Novgorod province and the state religion, one for SWE to cede provinces that are not included in the NVG entry in revolt.txt.
NVG will automatically appear as a vassal of NVG.

The event can be put in any event file.

I don't know how much you know about event scripting, I could write them quickly for you if you don't know how to and are still interested. :)
 
If you are new to event scripting, I'm sure people here could help if you post what you have so far. ;)
 
Third Angel said:
What you need is an event for SWE to grant independence to NVG. This event will then trigger two other events: one for NVG to convert the Novgorod province and the state religion, one for SWE to cede provinces that are not included in the NVG entry in revolt.txt.
NVG will automatically appear as a vassal of NVG.

The event can be put in any event file.

I don't know how much you know about event scripting, I could write them quickly for you if you don't know how to and are still interested. :)

I would be highly interested if you could do it for me, please! :)
 
Skarion said:
I would be highly interested if you could do it for me, please! :)

The closest to that already existing that I remember and that could be used as a template would be when the Ottomans take over Albania and release it as a sunni vassal?
 
Code:
event = { 
	id = 5000000
	random = no 
	country = SWE 

	name = "Whatever you want"
	desc = "Whatever you want" 

	date = { day =  month =  year =  } 

	action_a = { 
		name = "Whatever you want"
		command = { type = independence which = NVG } 
		command = { type = trigger which = 5000001 } 
		command = { type = trigger which = 5000002 } 
	} 
} 

event = { 
	id = 5000001
	random = no 
	country = SWE 

	name = "Whatever you want"
	desc = "Whatever you want" 

	action_a = { 
		name = "Whatever you want"
		command = { type = secedeprovince which = NVG value = 267 } 
		command = { type = secedeprovince which = NVG value = 268 } 
		command = { type = secedeprovince which = NVG value = 269 } 
		command = { type = secedeprovince which = NVG value = 271 } 
		command = { type = secedeprovince which = NVG value = 277 } 
		command = { type = secedeprovince which = NVG value = 278 } 
		command = { type = secedeprovince which = NVG value = 280 } 
	} 
} 

event = { 
	id = 5000002
	random = no 
	country = NVG 

	name = "Whatever you want"
	desc = "Whatever you want" 

	action_a = { 
		name = "Whatever you want"
		command = { type = religion which = protestant } 
		command = { type = provincereligion which = 274 value = protestant } 
	} 
}
Just add the date (day from 0 to 29, month from january to december and year between 1419 and 1819) for the first event and the texts you want, and copy them in any event file already existing. Let me know if they work.
 
add this line with the rest of the commands in event id = 5000002

command = { type = secedeprovince which = SWE value = 275 }




If the capital of Novogorod is in Ingermanland (Ive seen this in the past) also add this line:

command = { type = capital which = 274 }