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

unmerged(24139)

Second Lieutenant
Dec 30, 2003
192
0
Can someone make me an event modelled on the Revolution events that establishes a Radical Republic?

command = { type = constitution which = presidential_dictatorship }
command = { type = national_value which = liberty }
command = { type = party_system which = multi_party }
command = { type = executive_designation which = laws_by_decree }
command = { type = flagname which = "rad" }

Thanks. a lot.
 

Lares

First Lieutenant
46 Badges
Jul 27, 2003
229
4
Visit site
  • Europa Universalis IV: Rights of Man
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis III: Collection
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Hearts of Iron IV Sign-up
  • Hearts of Iron IV: Cadet
  • Victoria 2: Heart of Darkness
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Hearts of Iron IV: Death or Dishonor
  • Stellaris: Synthetic Dawn
  • Age of Wonders III
  • Shadowrun Returns
  • Shadowrun: Dragonfall
  • For the Motherland
  • Crusader Kings II
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sword of Islam
  • Europa Universalis III
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Hearts of Iron II: Armageddon
  • Hearts of Iron III
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Rome Gold
  • Semper Fi
  • Victoria 2
  • Victoria 2: A House Divided
I hope you don't mind the question: What's a radical republic? And what is the event supposed to do? Change government to this type?
 

aprof

Rough Writer
11 Badges
Feb 3, 2003
2.746
2
Visit site
  • Darkest Hour
  • Hearts of Iron III
  • March of the Eagles
  • Rome Gold
  • Sengoku
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • 500k Club
  • Hearts of Iron II: Beta
  • Steel Division: Normand 44 Sign-up
This is a variation of one of the events from db/events/revolution:

Code:
[color=white]
event = {
	id = xxxxx
	random = no

	name = "EVT_REVOLUTION"
	desc = "EVT_REVOLUTION_DESC"
	style = 0
 
	action_a = {
        	name = "Long live the Revolution!"
		command = { type = constitution  which = presidential_dictatorship }
		command = { type = national_value  which = liberty }
		command = { type = party_system  which = multi_party }
		command = { type = executive_designation which = laws_by_decree }
		command = { type = flagname which = "flg_rad_republic" }


		command = { type = pop_militancy which = aristocrats value = -3 where = 0 }
		command = { type = pop_militancy which = officers    value = -3 where = 0 }
		command = { type = pop_militancy which = clergymen   value = -3 where = 0 }
		command = { type = pop_militancy which = capitalists value = 1 where = 0 }
		command = { type = pop_militancy which = clerks      value = 3 where = 0 }
		command = { type = pop_militancy which = craftsmen   value = 3 where = 0 }
		command = { type = pop_militancy which = soldiers    value = 3 where = 0 }
		command = { type = pop_militancy which = farmers     value = 3 where = 0 }
		command = { type = pop_militancy which = labourers   value = 3 where = 0 }

		command = { type = pop_consciousness which = aristocrats value = -3 where = 0 }
		command = { type = pop_consciousness which = officers    value = -3 where = 0 }
		command = { type = pop_consciousness which = clergymen   value = -3 where = 0 }
		command = { type = pop_consciousness which = capitalists value = 1 where = 0 }
		command = { type = pop_consciousness which = clerks      value = 3 where = 0 }
		command = { type = pop_consciousness which = craftsmen   value = 3 where = 0 }
		command = { type = pop_consciousness which = soldiers    value = 3 where = 0 }
		command = { type = pop_consciousness which = farmers     value = 3 where = 0 }
		command = { type = pop_consciousness which = labourers   value = 3 where = 0 }

		command = { type = force_ruling_party which = liberal }

		command = { type = leave_alliance }
	}

}
[/color]