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

Phenix621

Recruit
Jan 13, 2007
1
0
Is there a mod out there in which if you conquer a nation's capital, you can annex it?

It a real pain to conquer all of England (they started it, not me!) and controlling the entire British Isles, but not being able to make it part of my domain.

The only thing I have left to conquer are her outlying colonies, and I really don't want to waste time and resources for such paltry returns.
 
no that is hardcoded, so not possible.
 
Havard said:
It is clearly stated in the forum description, and in the stickies marked *** Upload Forum Rules - Read Before Posting *** and *This Forum is for uploading mods and scenarios only, not for discusions* that this is a forum for uploads only. From now on all threads about other things will be deleted without mercy

Ahem.

And for the record Martin you are wrong. ;)
 
no that is hardcoded, so not possible.

Is there a mod out there in which if you conquer a nation's capital, you can annex it?

It a real pain to conquer all of England (they started it, not me!) and controlling the entire British Isles, but not being able to make it part of my domain.

The only thing I have left to conquer are her outlying colonies, and I really don't want to waste time and resources for such paltry returns.

myself i never consider such possible option( affects the REASON why i play eu2 in the first place = irealistic to have france annexing england just becouse they won A war:D)


BUT to implement such option is quiet easy to do: script an event in the ENGLISH file that IF you get to control london or/and some combination of provinces ( in the "trigger" part condition of the event) then the event TRIGGERS with an "inherit ENG" command.

so 2 events ( just need the provinces ids and a VALID ID event). in agceep you have at the bottom of each event file the range of available ids still AVAILABLE to use for future events.

an easy and very "basic" simple event as example:

#(1419-1820) Annexation Of Chimor
event = {
id = 81004
trigger = {
control = { province = 1482 data = INC } #Montana
exists = CHM
}
random = no
country = INC
name = "EVENTNAME81004" #Annexation Of Chimor
desc = "EVENTHIST81004"
#-#The Chimu people were desert dwellers who worshipped the moon. Unlike the Incas who worshipped the sun, the Chimu viewed the sun as a destroyer. They were skilled goldsmiths, and the Incas adopted many of their ceremonial customs. Much of the gold that was later looted by the Spanish was created by the skilled hands of the Chimu.

date = { day = 1 month = april year = 1419 }
offset = 10
deathdate = { year = 1820 }

action_a = {
name = "ACTIONNAME81004A" #Chimor Is Ours
command = { type = treasury value = 1000 }
command = { type = inherit which = CHM }
}
}
 
Last edited:
I once managed to script an event where the Ottomans would inherit Granada around 1420-1430 and gain an early foothold in Spain. It was a bit unrealistic, sure, but it was fun to watch and to play nonetheless.

I have to get into event scripting again since it's been more than 2 years now and I forgot all about it.
 
Last edited:
Example event I just wrote.






Code:
# French conquest of England
event = {
	id = ENTER ID NUMBER
	trigger = {
	  atwar = yes
	  
	  # the Irish/Scotish/Welsh/English provinces
	  # Either France controls the province, or its not part of England, for the trigger to be true.             
    OR = {	
      NOT = { owned = { province = 231 data = ENG }	} #Ireland
      control  = { province = 231 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 232 data = ENG }	} 
      control  = { province = 232 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 233 data = ENG }	} 
      control  = { province = 233 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 234 data = ENG }	} 
      control  = { province = 234 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 235 data = ENG }	} 
      control  = { province = 235 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 236 data = ENG }	} #the highlands
      control  = { province = 236 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 237 data = ENG }	}
      control  = { province = 237 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 238 data = ENG }	}
      control  = { province = 238 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 239 data = ENG }	}
      control  = { province = 239 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 240 data = ENG }	}
      control  = { province = 240 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 241 data = ENG }	}
      control  = { province = 241 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 242 data = ENG }	}
      control  = { province = 242 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 243 data = ENG }	}
      control  = { province = 243 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 244 data = ENG }	}
      control  = { province = 244 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 245 data = ENG }	}
      control  = { province = 245 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 246 data = ENG }	}
      control  = { province = 246 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 247 data = ENG }	} #Anglia
      control  = { province = 247 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 248 data = ENG }	}
      control  = { province = 248 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 249 data = ENG }	}
      control  = { province = 249 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 250 data = ENG }	} #Cornwall
      control  = { province = 250 data = FRA }
    }
	}
	random = no
	country = FRA
	name = "France dominates England"
	desc = "France has occupied the core of England, shall we annex them?"
	style = 1
	date = { day = 1 month = october year = 1419 }
	offset = 365
	deathdate = { day = 22 month = may year = 1820 }

	action_a ={
		name = "Annex them!"
		command = { type = inherit   which = ENG }
	}
	action_b ={
		name = "loot England"
		command = { type = treasury   value = 250 }
	}
}
 
Example event I just wrote.

Code:
# French conquest of England
event = {
	id = ENTER ID NUMBER
	trigger = {
	  atwar = yes
	  
	  # the Irish/Scotish/Welsh/English provinces
	  # Either France controls the province, or its not part of England, for the trigger to be true.             
    OR = {	
      NOT = { owned = { province = 231 data = ENG }	} #Ireland
      control  = { province = 231 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 232 data = ENG }	} 
      control  = { province = 232 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 233 data = ENG }	} 
      control  = { province = 233 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 234 data = ENG }	} 
      control  = { province = 234 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 235 data = ENG }	} 
      control  = { province = 235 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 236 data = ENG }	} #the highlands
      control  = { province = 236 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 237 data = ENG }	}
      control  = { province = 237 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 238 data = ENG }	}
      control  = { province = 238 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 239 data = ENG }	}
      control  = { province = 239 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 240 data = ENG }	}
      control  = { province = 240 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 241 data = ENG }	}
      control  = { province = 241 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 242 data = ENG }	}
      control  = { province = 242 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 243 data = ENG }	}
      control  = { province = 243 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 244 data = ENG }	}
      control  = { province = 244 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 245 data = ENG }	}
      control  = { province = 245 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 246 data = ENG }	}
      control  = { province = 246 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 247 data = ENG }	} #Anglia
      control  = { province = 247 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 248 data = ENG }	}
      control  = { province = 248 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 249 data = ENG }	}
      control  = { province = 249 data = FRA }
    }
    OR = {	
      NOT = { owned = { province = 250 data = ENG }	} #Cornwall
      control  = { province = 250 data = FRA }
    }
	}
	random = no
	country = FRA
	name = "France dominates England"
	desc = "France has occupied the core of England, shall we annex them?"
	style = 1
	date = { day = 1 month = october year = 1419 }
	offset = 365
	deathdate = { day = 22 month = may year = 1820 }

	action_a ={
		name = "Annex them!"
		command = { type = inherit   which = ENG }
	}
	action_b ={
		name = "loot England"
		command = { type = treasury   value = 250 }
	}
}

Just an aside: That event would fire if Scotland (or any combinations of countries that isn't France) had taken England and Ireland.

Aye.