• 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(15893)

Forest of Metaphors
Mar 31, 2003
1.649
0
Here is where we will have ALL Information about Russia, The Russian Civil War, and The Eastern European Former Soviet Nations, including Events, Leaders/Ministers, etc.

I've decided that regional threads (Like CORE has), is a good idea, and shall be implemented now. I will soon post more details :D
 

unmerged(20048)

The Crazy Modder
Sep 25, 2003
644
6
Visit site
Why not a complete civil war(It's so much more fun and both sides could be supported by different alliances). It could be triggered by the Moscow goverment giving Chechnya independence. This the Nationalists/Communists/Military-Leadership would hate and you would have the perfect setup for a civil war.
 

unmerged(15893)

Forest of Metaphors
Mar 31, 2003
1.649
0
Originally posted by vcarter707
having both is a great idea! it would suck to be ukraine and have an event that says "you got annexed"

Yes, that WOULD suck!

Well, we'd have a event for Russia stating, "Do you want to take Ukraine?" With;
Choice A - "Yes" #trigger peaceful annex
Choice B - "Don't fuel tensions" #lowers U.S. and CTF war entry

and for Ukraine would have;
Choice A - "We must accept peaceful annex" #GAME OVER!
Choice B - "Fight to the death!" #WAR!

Repeat event for each ex-soviet nation.

Sounds good?
 

unmerged(10371)

Music To Your Ears
Jul 25, 2002
1.677
0
Visit site
check it out. this was my first time using annexations and such so.....

Code:
#Created by vcarter707
#########################################################################
#  Expanding the Empire
#########################################################################
event = {
	id = xxx
	random = no
	country = xxx
	trigger = {
		exists = UKR
		atwar = no
		NOT = {
			atwar = UKR
                        exist = RUS
		}
	}
	name = "Expanding the Empire"
	desc = "After the facist rise to power the countries of the former USSR began to join the new government, however some chose to resist."
	style = 0

	date = { day = 20 month = March year = 2003 }
	offset = 90 # Check 3 months
	deathdate = { day = 30 month = december year = 2014 }

	action_a = {
		name = "They must join the Empire" # Annex them
		command = { type = trigger which = 90001 }
	}
	action_b = {
		name = "We must refrain" # No war
		command = { type = warentry which = USA value = -5 }
		command = { type = warentry which = GER value = -5 }
		command = { type = warentry which = FRA value = -5 }
                command = { type = dissent value = 5 }
		}
}
#########################################################################
#  Expanding the Empire- Russia chooses annex
#########################################################################
event = {
	id = 90001
	random = no
	country = UKR
        #triggered by event xxx_a
	
        name = "Joining the Empire"
	desc = "After the facist rise to power the countries of the former USSR began to join the new government, however some chose to resist. Russia has chosen to either have you join the Empire peacefully or through war."
	style = 0

	date = { day = 20 month = March year = 2003 }
	offset = 90 # Check 3 months
	deathdate = { day = 30 month = december year = 2014 }

	action_a = {
		name = "We have no choice (game over)" # game over
		command = { type = trigger which = xx1 }
	}
	action_b = {
		name = "We fight to the death!" #war
                command = { type = war which = xxx }
		}
}
#########################################################################
#  Expanding the Empire- Annexation
#########################################################################
event = {
	id = xx1
	random = no
	country = xxx
        #triggered by event 90001_a
	
        name = "Expanding the Empire"
	desc = "After the facist rise to power the countries of the former USSR began to join the new government, however some chose to resist. They have chosen to join the empire peacefully."
	style = 0

	date = { day = 20 month = March year = 2003 }
	offset = 90 # Check 3 months
	deathdate = { day = 30 month = december year = 2014 }

	action_a = {
		name = "excellent" # ukraine is gone
		command = { type = inherit which = UKR }
	}
}