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

First Lieutenant
3 Badges
Aug 29, 2009
278
0
  • Arsenal of Democracy
  • Europa Universalis: Rome
  • Warlock: Master of the Arcane
Can anybody tell me how to spawn divisions into my actual game ?
Japan is going to overrun Burma and India cause the Brits dont have a single unit there and its just Dec 1941...I have to readjust a bit the flow of the game to stick a bit to the historical path...
Any help would be appreciated ...
 
Maybe open the savegame file and write a couple of units in there. Just copy the entry of a similar unit and paste it, then make the changes you need.
 
Could be tricky with the unit IDs.

What about events? From the HOI2WIKI

type = add_corps which = [name] value = [land/air/naval] when = [leader ID] where = [province_ID]

type = add_division which = [name] value = [div type] when = model where = [brigade type]
Brigade model is always the latest. If a preceding add_corps command has been used, the division will go to that unit, otherwise to the force pool.

Example (AI only event, needs an event ID number to work)
Code:
######################
#  AI troops when Jap attacks
######################
event = { 
	id =[B]XXX[/B]
	random = no
	country = ENG
	
	date = { day = 10 month = may year = 1940 }
	offset = 3
	deathdate = { day = 25 month = december year = 1949 }

	trigger = {
		ai = yes
		war = { country = ENG country = JAP }	
		}

	name = "AI_EVENT"
	style = 0
		
	action_a = {
		command = { type = add_corps which = "10th Indian Army" value = land where = 1299 } #Rangoon
		command = { type = add_division which = "11th Indian Infantry" value = infantry when = 3 }
		command = { type = add_division which = "12th Indian Infantry" value = infantry when = 3 }
		command = { type = add_division which = "13th Indian Infantry" value = infantry when = 3 }
		}
}
 
Could be tricky with the unit IDs.

What about events? From the HOI2WIKI



Example (AI only event, needs an event ID number to work)
Code:
######################
#  AI troops when Jap attacks
######################
event = { 
	id =[B]XXX[/B]
	random = no
	country = ENG
	
	date = { day = 10 month = may year = 1940 }
	offset = 3
	deathdate = { day = 25 month = december year = 1949 }

	trigger = {
		ai = yes
		war = { country = ENG country = JAP }	
		}

	name = "AI_EVENT"
	style = 0
		
	action_a = {
		command = { type = add_corps which = "10th Indian Army" value = land where = 1299 } #Rangoon
		command = { type = add_division which = "11th Indian Infantry" value = infantry when = 3 }
		command = { type = add_division which = "12th Indian Infantry" value = infantry when = 3 }
		command = { type = add_division which = "13th Indian Infantry" value = infantry when = 3 }
		}
}

I will give this a try..thanks !