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

First Lieutenant
Sep 29, 2007
271
0
I welcome you too-

internationale.jpg

Music Pack and Minister Changer.

It is currently in production, and makes a few changes-

Lenin Runs the Soviet Union
The Soviet Union is Leninist
A hole new soviet Cabinet!
Some new events instead of the purges I.E, Get friendly with the allies
New Music, With A Anti-Stalinist Ring!
New background graphics.

In production, will get back to you in a few hours.
 
Last edited:

unmerged(84764)

First Lieutenant
Sep 29, 2007
271
0
Fernando Torres said:
Oh oh oh, L'Internationale !

Nice nice...
i wish you a good luck.
If you need some graphic or audio work just tell me, i'll try to give as much as i can.

Can you do a loading screen, (Which also works for a menu screen, and the scenario screen if you can do those boxes... with the following images:

http://www.marxists.org/archive/marx/works/1872/03/marx.jpg
http://library.fes.de/si-online/bild-1914-550.jpg
http://graham.thewebtailor.co.uk/archives/welsh communist manifesto.jpg
http://www.belarusguide.com/images/WWII/Red_Army_Sniper_July_1944.jpg

Please :)
 
Jan 22, 2007
619
0
Delicious. I've been waiting for a mod like this to come out for quite a while.
If you're interested, I played around with some of the early communist nations as well- I've got partially complete cabinets for:
Early Communist Tannu Tuva
Communist Hungary from the 1920s
Communist Slovakia from the 1920s
Ukranian Communist Republic
Khiva and Bukhara Peoples' Republics (Uzbek Communist nations independent for a couple of years during the RSFSR)

And for music, look no further than: http://www.sovmusic.ru/english/index.php
 

Fernando Torres

Darkest Hour Game Designer
48 Badges
Dec 2, 2006
10.182
39
rayan-nezzar.fr
  • Rome: Vae Victis
  • Penumbra - Black Plague
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Rome Gold
  • Semper Fi
  • Sengoku
  • Ship Simulator Extremes
  • Supreme Ruler 2020
  • Supreme Ruler: Cold War
  • Victoria 2
  • Victoria 2: A House Divided
  • Europa Universalis III Complete
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Elven Legacy Collection
  • Hearts of Iron II: Beta
  • Pride of Nations
  • Rise of Prussia
  • Mount & Blade: Warband
  • Mount & Blade: With Fire and Sword
  • Achtung Panzer
  • Hearts of Iron IV Sign-up
  • Hearts of Iron IV: Cadet
  • For The Glory
  • Hearts of Iron II: Armageddon
  • Cities in Motion
  • Crusader Kings II
  • Commander: Conquest of the Americas
  • Darkest Hour
  • Deus Vult
  • East India Company
  • East India Company Collection
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Europa Universalis IV
  • Arsenal of Democracy
  • For the Motherland
  • Hearts of Iron III
  • Heir to the Throne
  • Europa Universalis III Complete
  • Iron Cross
  • Legio
  • The Kings Crusade
  • Lost Empire - Immortals
  • Magicka
  • Majesty 2
  • March of the Eagles
tomdj said:
I'll have a look tomorrow but i fear 4 pictures won't be enough.
If you have other pictures to submit me it'd be nice.
 

unmerged(92459)

Second Lieutenant
2 Badges
Feb 7, 2008
132
0
  • Europa Universalis III Complete
  • Heir to the Throne
I would just like my cabinet (Soviet) replaced with Trotsky as Head of Government (or maybe state, too?) and also probably as Chief of the Army or Chief of Staff. I just have no idea how to do that myself.
 

unmerged(84764)

First Lieutenant
Sep 29, 2007
271
0

unmerged(84764)

First Lieutenant
Sep 29, 2007
271
0
Fernando Torres said:
if i move it to center, then it'll be hidden by the menu.

I just discovered this myself :rofl:

It will do, I like it myself.

Can you make a scenario screen one too please? Because right now without the translucent boxes it just looks incredibly tacky.
 

unmerged(84764)

First Lieutenant
Sep 29, 2007
271
0
Code:
#############################################
###### Introduction # 
#############################################
event = {
        id = 1000002
        random = no
        country = SOV

        name = "L'internationale"
        desc = "Welcome to L'internationale, the Mod For True Comrades"
        style = 0
        picture = "Sov_propaganda"
 
        date = { day = 1 month = january year = 1936 }
 
        action_a = {
                name = "Let us begin!"
                  command = { }
        }

}
#############################################
######  # Crossroad
#############################################
event = {
        id = 1000003
        random = no
        country = SOV
        trigger = {
		exists = GER
		exists = ENG
		exists = FRA
		NOT = {
			OR = {
				war = { country = SOV country = GER  }
				war = { country = SOV country = ENG  }
				alliance = { country = GER country = ENG }
				alliance = { country = GER country = FRA }
				alliance = { country = GER country = SOV }
				alliance = { country = ENG country = SOV }
				alliance = { country = FRA country = SOV }
				ispuppet = GER
				ispuppet = SOV
				ispuppet = ENG
				ispuppet = FRA
			}
		}
        }
 
        name = "Crossroad"
        desc = "As war looms on Europe, we must decide which path to take."
        style = 0
        picture = "Mol_Rib"
 
        date = { day = 12 month = march year = 1939 }
 
        action_a = {
                name = "Side with Germany"
                ai_chance = 40
                command = { type = sleepevent which = 1000005 }
        }
        action_b = {
                name = "Side with the Allies"
                ai_chance = 40
                command = { type = sleepevent which = 2050 }
                command = { type = trigger which = 1000004 }        }
        action_c = {
                name = "Do nothing"
                ai_chance = 20
                command = { type = sleepevent which = 1000005 }
                command = { type = sleepevent which = 2050 }
        }

}

#############################################
######  # Soviet seeks Alliance
#############################################
event = {
        id = 1000004
        random = no
        country = ENG

        name = "Soviet seeks Alliance"
        desc = "The Soviet Union wish to join our Alliance. Shall we welcome them?"
        style = 0
        picture = "Mol_Rib"
 
 
        action_a = {
                name = "Let's join arms together!"
                ai_chance = 97
                command = { type = alliance which = SOV }
                command = { type = alliance which = TAN } #Tannu Tuva comes with Russia
                command = { type = trigger which = 1000005 }
        }
        action_b = {
                name = "We don't need their help"
                ai_chance = 3
                command = { }
        }

}

#############################################
######  # UK accept Alliance!
#############################################
event = {
        id = 1000005
        random = no
        country = SOV
 
        name = "UK accept Alliance!"
        desc = "Let us crush the Fascist scum, Unite!"
        style = 0
        picture = "Mol_Rib"
 
 
        action_a = {
                name = "Lets go!"
                command = { type = relation which = ENG value = 100 }
                command = { type = relation which = FRA value = 100 }
                command = { type = relation which = GER value = -50 }        }

}

Events :)