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

Castellon

★Paradox Forum Manager★
Administrator
Paradox Staff
110 Badges
Mar 12, 2002
43.218
1.812
  • Europa Universalis IV
  • 200k Club
  • 500k Club
  • Hearts of Iron II: Beta
  • Victoria 2 Beta
  • Humble Paradox Bundle
  • Paradox Order
Try Useing the color tag with code segments so that they show up better. Like this:
Originally posted by Prince Eugene
5) The Russia event can be triggered any time after 1520

Code:
[color=white]

#The Empire of Russia#
event = {

	id = 3403
	trigger = {
		owned = {
			province = 270 # Moscow
			data = -1
		}
		OR = {
			owned = { province = 268 data = -1 } # Vologda
			owned = { province = 272 data = -1 } # Nizhgorod
		}	
		OR = {
			owned = { province = 448 data = -1 } # Ryazan
			owned = { province = 271 data = -1 } # Vladimir
			owned = { province = 274 data = -1 } # Novgorod
			owned = { province = 277 data = -1 } # Pskov
			owned = { province = 278 data = -1 } # Tver
		}
		NOT = {
			exists = RUS
		}
		atwar = no
	}
	random = no
	country = MOS
	name = "EVENTNAME3403"
	desc = "EVENTHIST3403"
	style = 2

	date = { day = 1 month = january year = 1520 }
	offset = 30
	deathdate = { day = 30 month = december year = 1820 }

	action_a ={				#Take over the Byzantine Mantle#
		name = "ACTIONNAME3403A"
		command = { type = vp value = 200 }
		command = { type = stability value = 3 }
		command = { type = population which = 270 value = 5000 }
		command = { type = country which = RUS }
	}
	action_b ={				#Leave it on the Floor#
		name = "ACTIONNAME3403B"
		command = { type = vp value = -100 }
		command = { type = stability value = -3 }
	}
}
[/color]

6) lol!