+ Reply to Thread
Results 1 to 14 of 14

Thread: Things Go Away (And Maybe They Should Stay)

  1. #1

    Things Go Away (And Maybe They Should Stay)

    It seems to me that if land has been enclosed or reformed in a province, that that wouldn't change just because the province gains a new owner. Also, once land has been reclaimed from the sea it should stay reclaimed regardless of who owns the province.

    Just a suggestion. I already did it for myself, so if you don't want to go through the trouble of doing it I can post the changes to decisions and events.

  2. #2
    Captain Malicite's Avatar
    Rome GoldVictoria 2MagickaEU3: ChroniclesCrusader Kings II
    Mount & Blade: With Fire and SwordSengokuVictoria II: A House DividedWar of the Roses

    Join Date
    Apr 2012
    Location
    MEIOU Sub-Forums
    Posts
    419
    This seems like it would make sense. You should show what you did so I can copy it!

  3. #3

    How It Works

    Decisions:

    Change enact_land_reform in "D - NationalFocusProvince.txt":
    Code:
    	enact_land_reform = {
    	#FB note - DW dispenses with this decision but I don't agree
    		potential = {
    			has_national_focus = yes
    			not = { has_province_modifier = land_reform }
    		}
    		allow = {
    			owner = {
    				officials = 2
    			}
    		}
    		effect = {
    			owner = {
    				officials = -2
    			}
    			add_province_modifier = {
    				name = "land_reform"
    				duration = -1
    			}
    			set_province_flag = land_reformed	#DS
    		}
    		ai_will_do = {
    			factor = 1
    		}
    	}
    Change land_enclosure in "D - Civic.txt":
    Code:
    land_enclosure = {
    #FB note - DW dispenses with this decision but I don't agree
    	potential = {
    		owner = {
    			NOT = { has_country_flag = land_enclosure_always }	#FB decision automation
    			NOT = { has_country_flag = land_enclosure_never }	#FB decision automation
    			government_tech = 10
    		}
    		NOT = { has_province_modifier = land_inclosure }
    		base_tax = 5					#FB moved from allow
    	}
    	allow = {
    		#FB owner = { adm = 6 }
    		owner = {
    			officials = 1	#FB
    			OR = { ADM = 6 advisor = alderman advisor = sheriff } #FB
    			NOT = { has_country_modifier = "nie_pozwalam" }
    		}
    	}
    	effect = {
    		add_province_modifier = {
    			name = "land_inclosure"
    			duration = -1
    		}
    		
    		set_province_flag = land_enclosed	#DS
    		
    		owner = {
    			officials = -1
    		}
    	}
    	ai_will_do = {
    		factor = 1
    		modifier = {
    			factor = 0.0
    			nationalism = 1
    		}
    		modifier = {
    			factor = 0.0
    			revolt_risk = 2
    		}
    		modifier = {
    			factor = 0.0
    			has_owner_religion = no
    		}
    	}
    Change reclaim_land in "D - Construction.txt":
    Code:
    reclaim_land = { #MEIOU-FB large areas of the netherlands and eastern england were reclaimed from the sea
    		potential = {
    			NOT = { has_province_modifier = reclaimed_land }
    			region = reclaimable_land	#NB New Region for this decision
    			owner = { government_tech = 16 }
    		}
    		allow = {
    			owner = {
    				OR = { ADM = 5 advisor = alderman }
    				officials = 1
    				treasury = 400
    			}
    		}
    		effect = {
    			owner = {
    				treasury = -400
    				officials = -1
    			}
    			add_province_modifier = {
    				name = "reclaimed_land"
    				duration = -1
    			}
    			set_province_flag = land_reclaimed     #DS
    		}
    		ai_will_do = {
    			factor = 1
    			modifier = {
    				factor = 0
    				NOT = { owner = { treasury = 1000 } }
    			}
    		}
    	}
    Events:

    Change part of event 961032:
    Code:
    option = {
    		name = "GOOD1"
    		add_province_modifier = {
    			name = "land_inclosure"
    			duration = -1
    		}
    		owner = {
    			officials = -1
    		}
    		set_province_flag = land_enclosed	#DS
    	}
    Create a new file in the events folder called "0000250 - Province Updates":
    Code:
    #Land is already enclosed
    province_event = {
    	id = 250
    	
    	trigger = {
    		has_province_flag = land_enclosed
    		NOT = { has_province_modifier = land_inclosure }
    	}
    		
    	mean_time_to_happen = {
    		months = 3
    	}
    		
    	title = "EVTNAME250"
    	desc = "EVTDESC250"
    	
    	option = {
    		name = "GOOD1"
    		add_province_modifier = {
    			name = "land_inclosure"
    			duration = -1
    		}
    	}
    }
    
    #Land is already reformed
    province_event = {
    	id = 251
    	
    	trigger = {
    		has_province_flag = land_reformed
    		NOT = { has_province_modifier = land_reform }
    	}
    	
    	mean_time_to_happen = {
    		months = 4
    	}
    	
    	title = "EVTNAME251"
    	desc = "EVTDESC251"
    	
    	option = {
    		name = "GOOD1"
    		add_province_modifier = {
    			name = "land_reform"
    			duration = -1
    		}
    	}
    }
    
    #Land is already reclaimed
    province_event = {
    	id = 252
    	
    	trigger = {
    		has_province_flag = land_reclaimed
    		NOT = { has_province_modifier = reclaimed_land }
    	}
    	
    	mean_time_to_happen = {
    		months = 2
    	}
    	
    	title = "EVTNAME252"
    	desc = "EVTDESC252"
    	
    	option = {
    		name = "GOOD1"
    		add_province_modifier = {
    			name = "reclaimed_land"
    			duration = -1
    		}
    	}
    }
    Localisation:
    Create a new .csv text file in the localisation folder:
    Code:
    #DS.csv
    EVTNAME250;Land Enclosed;;;;;;;;;;;x
    EVTDESC250;The land in $PROVINCENAME$ was enclosed by its previous administrators.;;;;;;;;;;;x
    EVTNAME251;Land Reformed;;;;;;;;;;;x
    EVTDESC251;Land reform was enacted in $PROVINCENAME$ by its previous administrators.;;;;;;;;;;;x
    EVTNAME252;Land Reclaimed;;;;;;;;;;;x
    EVTDESC252;Land was reclaimed from the sea in $PROVINCENAME$ by its previous administrators.;;;;;;;;;;;x
    Once you've done all that, it'll work. Note that it can take several months after conquest before the province regains its modifiers, and that it regains them one at a time. If many provinces are conquered at once, it can take longer.

  4. #4
    Captain Malicite's Avatar
    Rome GoldVictoria 2MagickaEU3: ChroniclesCrusader Kings II
    Mount & Blade: With Fire and SwordSengokuVictoria II: A House DividedWar of the Roses

    Join Date
    Apr 2012
    Location
    MEIOU Sub-Forums
    Posts
    419
    Good good. I think this really is a nice idea so thanks for putting your work up here! The option names threw me at first as I wasn't aware there was a stock 'Good' option :S

  5. #5
    Dagneau, the Ultimate Diplomat gigau's Avatar
    Diplomacy PlayerEU3 OwnerEU3 Collectors Edition OwnerHoI AnthologyGalactic Assaulter
    Napoleonic MarshalDeus Vult!Europa Universalis: RomeEuropa Universalis: Rome (Collectors Edition)Finder of the Lost Empire
    Penumbra -  Black PlagueHearts of Iron 2: ArmageddonVictoria: RevolutionsEuropa Universalis III: In NomineEU3 Complete
    Rome: Vae VictisSupreme Ruler 2020Rome GoldEast India CompanyHearts of Iron III
    Majesty 2Supreme Ruler 2020 GoldFor The GloryArsenal of DemocracyHeir to the Throne
    East India Company CollectionRise of PrussiaAchtung PanzerLead and GoldMount & Blade: Warband
    200k ClubLegioSemper FiElven Legacy CollectionVictoria 2
    Commander: Conquest of the AmericasLionheartDivine WindShip Simulator ExtremesIron Cross
    MagickaCities in MotionEU3: ChroniclesSword of the StarsDarkest Hour
    Majesty II CollectionCrusader Kings IIPirates of Black CoveMount & Blade: With Fire and SwordPride of Nations
    For the MotherlandSupreme Ruler: Cold WarSengokuHearts of Iron: The Card GameSword of the Stars II
    Hearts of Iron III CollectionVictoria II: A House DividedKing Arthur IICrusader Kings II Holy KnightGettysburg: Armored Warfare
    Naval War: Arctic CircleWarlock: Master of the ArcaneStarvoidHOI3: Their Finest HourWar of the Roses
    A Game of DwarvesDungeonlandThe Showdown EffectMarch of the EaglesImpire
    Cities in Motion 2Victoria 2: Heart of DarknessLeviathan: Warships

    Join Date
    May 2005
    Location
    Hunting wolves and/or villagers... depends...
    Posts
    18,039
    Blog Entries
    9
    Good idea. These events are getting heavy, but i could add the effects of your three events in the yearly events.

    The other options would be to have these effects in "invisible" buildings (much like the terrains).
    Auretus Ornithorhynchus anatinus, in hoc signo vinces. In honorem Paradox!Awarded the SAS Award for Forum Dedication<:3 )~~~ Mice over Rabbits
    • Crusader Kings II --- Planning a map mod, the name of which remains to be determined
    • Europa Universalis III : Divine Wind --- The EUIII Master Mod List (last update 7-March-2013)
    MEIOU:Tokgawa's Destiny, a mod giving you a new map, a new experience,... - Quezako ?
    If you have zero infamy, then you're wasting everybody's forgiveness. - Zzzzz... •
    MEIOU Subforum in english --- Enfillade MEIOU en Français --- MEIOU auf Deutsch
    My AAR : Aragón and its Place in European History
    • Mount & Blade Warband : Draper in the Noble Order of the Platypus - Impatient archer, reckless infantry and ridiculous cavalier
    • Werewolf, come join the hunt here --- Wins : as seer 1/1, as villager 2/10, as wolf 1/5 - Hosted 2 WWLite,

  6. #6
    Yearly events would probably be best so that the province modifiers are still clearly displayed.

  7. #7
    Dagneau, the Ultimate Diplomat gigau's Avatar
    Diplomacy PlayerEU3 OwnerEU3 Collectors Edition OwnerHoI AnthologyGalactic Assaulter
    Napoleonic MarshalDeus Vult!Europa Universalis: RomeEuropa Universalis: Rome (Collectors Edition)Finder of the Lost Empire
    Penumbra -  Black PlagueHearts of Iron 2: ArmageddonVictoria: RevolutionsEuropa Universalis III: In NomineEU3 Complete
    Rome: Vae VictisSupreme Ruler 2020Rome GoldEast India CompanyHearts of Iron III
    Majesty 2Supreme Ruler 2020 GoldFor The GloryArsenal of DemocracyHeir to the Throne
    East India Company CollectionRise of PrussiaAchtung PanzerLead and GoldMount & Blade: Warband
    200k ClubLegioSemper FiElven Legacy CollectionVictoria 2
    Commander: Conquest of the AmericasLionheartDivine WindShip Simulator ExtremesIron Cross
    MagickaCities in MotionEU3: ChroniclesSword of the StarsDarkest Hour
    Majesty II CollectionCrusader Kings IIPirates of Black CoveMount & Blade: With Fire and SwordPride of Nations
    For the MotherlandSupreme Ruler: Cold WarSengokuHearts of Iron: The Card GameSword of the Stars II
    Hearts of Iron III CollectionVictoria II: A House DividedKing Arthur IICrusader Kings II Holy KnightGettysburg: Armored Warfare
    Naval War: Arctic CircleWarlock: Master of the ArcaneStarvoidHOI3: Their Finest HourWar of the Roses
    A Game of DwarvesDungeonlandThe Showdown EffectMarch of the EaglesImpire
    Cities in Motion 2Victoria 2: Heart of DarknessLeviathan: Warships

    Join Date
    May 2005
    Location
    Hunting wolves and/or villagers... depends...
    Posts
    18,039
    Blog Entries
    9
    My problem is that each of the yearly events are now already at least 8k lines of code long. It's becoming Hell to debug and to edit... especially as there are 19 of those events.
    Auretus Ornithorhynchus anatinus, in hoc signo vinces. In honorem Paradox!Awarded the SAS Award for Forum Dedication<:3 )~~~ Mice over Rabbits
    • Crusader Kings II --- Planning a map mod, the name of which remains to be determined
    • Europa Universalis III : Divine Wind --- The EUIII Master Mod List (last update 7-March-2013)
    MEIOU:Tokgawa's Destiny, a mod giving you a new map, a new experience,... - Quezako ?
    If you have zero infamy, then you're wasting everybody's forgiveness. - Zzzzz... •
    MEIOU Subforum in english --- Enfillade MEIOU en Français --- MEIOU auf Deutsch
    My AAR : Aragón and its Place in European History
    • Mount & Blade Warband : Draper in the Noble Order of the Platypus - Impatient archer, reckless infantry and ridiculous cavalier
    • Werewolf, come join the hunt here --- Wins : as seer 1/1, as villager 2/10, as wolf 1/5 - Hosted 2 WWLite,

  8. #8
    Simian Commissar SirkTheMonkey's Avatar
    EU3 CompleteHearts of Iron IIIHeir to the ThroneSemper FiVictoria 2
    Divine WindMagickaCrusader Kings IIFor the MotherlandVictoria II: A House Divided
    Crusader Kings II Holy KnightHOI3: Their Finest HourVictoria 2: Heart of Darkness

    Join Date
    Feb 2012
    Location
    Australia
    Posts
    3,141
    Quote Originally Posted by gigau View Post
    My problem is that each of the yearly events are now already at least 8k lines of code long. It's becoming Hell to debug and to edit... especially as there are 19 of those events.
    Isn't the only difference between each of those events the small flavour bonus/malus it awards?
    Official MEIOU support monkey, bug squisher, and procrastinator.
    AARland Fan of the Week: 3 Feb '13 (how did I have this so wrong for so long)

    Comrade Pavel Pavlovich Teterev, People's Commissar for Ideological Purity in Avindian's Tukhachevsky's Army and the Politburo -- an Interactive Soviet TFH AAR (Updates|Admin)

  9. #9
    Dagneau, the Ultimate Diplomat gigau's Avatar
    Diplomacy PlayerEU3 OwnerEU3 Collectors Edition OwnerHoI AnthologyGalactic Assaulter
    Napoleonic MarshalDeus Vult!Europa Universalis: RomeEuropa Universalis: Rome (Collectors Edition)Finder of the Lost Empire
    Penumbra -  Black PlagueHearts of Iron 2: ArmageddonVictoria: RevolutionsEuropa Universalis III: In NomineEU3 Complete
    Rome: Vae VictisSupreme Ruler 2020Rome GoldEast India CompanyHearts of Iron III
    Majesty 2Supreme Ruler 2020 GoldFor The GloryArsenal of DemocracyHeir to the Throne
    East India Company CollectionRise of PrussiaAchtung PanzerLead and GoldMount & Blade: Warband
    200k ClubLegioSemper FiElven Legacy CollectionVictoria 2
    Commander: Conquest of the AmericasLionheartDivine WindShip Simulator ExtremesIron Cross
    MagickaCities in MotionEU3: ChroniclesSword of the StarsDarkest Hour
    Majesty II CollectionCrusader Kings IIPirates of Black CoveMount & Blade: With Fire and SwordPride of Nations
    For the MotherlandSupreme Ruler: Cold WarSengokuHearts of Iron: The Card GameSword of the Stars II
    Hearts of Iron III CollectionVictoria II: A House DividedKing Arthur IICrusader Kings II Holy KnightGettysburg: Armored Warfare
    Naval War: Arctic CircleWarlock: Master of the ArcaneStarvoidHOI3: Their Finest HourWar of the Roses
    A Game of DwarvesDungeonlandThe Showdown EffectMarch of the EaglesImpire
    Cities in Motion 2Victoria 2: Heart of DarknessLeviathan: Warships

    Join Date
    May 2005
    Location
    Hunting wolves and/or villagers... depends...
    Posts
    18,039
    Blog Entries
    9
    Quote Originally Posted by SirkTheMonkey View Post
    Isn't the only difference between each of those events the small flavour bonus/malus it awards?
    Yes.

    You mean that i should just copy the whole "immediate" section instead of looking for the faulty line(s) or the lines to add in each file ?

    ...

    ...

    ...



    ...

    ...

    ...



    ...

    ...

    ...

    *leaves the room*
    Auretus Ornithorhynchus anatinus, in hoc signo vinces. In honorem Paradox!Awarded the SAS Award for Forum Dedication<:3 )~~~ Mice over Rabbits
    • Crusader Kings II --- Planning a map mod, the name of which remains to be determined
    • Europa Universalis III : Divine Wind --- The EUIII Master Mod List (last update 7-March-2013)
    MEIOU:Tokgawa's Destiny, a mod giving you a new map, a new experience,... - Quezako ?
    If you have zero infamy, then you're wasting everybody's forgiveness. - Zzzzz... •
    MEIOU Subforum in english --- Enfillade MEIOU en Français --- MEIOU auf Deutsch
    My AAR : Aragón and its Place in European History
    • Mount & Blade Warband : Draper in the Noble Order of the Platypus - Impatient archer, reckless infantry and ridiculous cavalier
    • Werewolf, come join the hunt here --- Wins : as seer 1/1, as villager 2/10, as wolf 1/5 - Hosted 2 WWLite,

  10. #10
    Simian Commissar SirkTheMonkey's Avatar
    EU3 CompleteHearts of Iron IIIHeir to the ThroneSemper FiVictoria 2
    Divine WindMagickaCrusader Kings IIFor the MotherlandVictoria II: A House Divided
    Crusader Kings II Holy KnightHOI3: Their Finest HourVictoria 2: Heart of Darkness

    Join Date
    Feb 2012
    Location
    Australia
    Posts
    3,141
    When I was last playing around in there I got even lazier and used a difference/merge program to copy across all the changes from the file I'd edited.

    I'll throw another idea out there: instead of lumping it in the events, why not make it a decision that's available if the flag is on a province but the modifier isn't. The decision would reset the modifier at no (or maybe even minimal) cost. I'm not sure what the performance impact of decisions are but the only downside I can imagine is the player having to click on lots of decisions after inheriting a big country or having a very successful war.
    Official MEIOU support monkey, bug squisher, and procrastinator.
    AARland Fan of the Week: 3 Feb '13 (how did I have this so wrong for so long)

    Comrade Pavel Pavlovich Teterev, People's Commissar for Ideological Purity in Avindian's Tukhachevsky's Army and the Politburo -- an Interactive Soviet TFH AAR (Updates|Admin)

  11. #11
    Dagneau, the Ultimate Diplomat gigau's Avatar
    Diplomacy PlayerEU3 OwnerEU3 Collectors Edition OwnerHoI AnthologyGalactic Assaulter
    Napoleonic MarshalDeus Vult!Europa Universalis: RomeEuropa Universalis: Rome (Collectors Edition)Finder of the Lost Empire
    Penumbra -  Black PlagueHearts of Iron 2: ArmageddonVictoria: RevolutionsEuropa Universalis III: In NomineEU3 Complete
    Rome: Vae VictisSupreme Ruler 2020Rome GoldEast India CompanyHearts of Iron III
    Majesty 2Supreme Ruler 2020 GoldFor The GloryArsenal of DemocracyHeir to the Throne
    East India Company CollectionRise of PrussiaAchtung PanzerLead and GoldMount & Blade: Warband
    200k ClubLegioSemper FiElven Legacy CollectionVictoria 2
    Commander: Conquest of the AmericasLionheartDivine WindShip Simulator ExtremesIron Cross
    MagickaCities in MotionEU3: ChroniclesSword of the StarsDarkest Hour
    Majesty II CollectionCrusader Kings IIPirates of Black CoveMount & Blade: With Fire and SwordPride of Nations
    For the MotherlandSupreme Ruler: Cold WarSengokuHearts of Iron: The Card GameSword of the Stars II
    Hearts of Iron III CollectionVictoria II: A House DividedKing Arthur IICrusader Kings II Holy KnightGettysburg: Armored Warfare
    Naval War: Arctic CircleWarlock: Master of the ArcaneStarvoidHOI3: Their Finest HourWar of the Roses
    A Game of DwarvesDungeonlandThe Showdown EffectMarch of the EaglesImpire
    Cities in Motion 2Victoria 2: Heart of DarknessLeviathan: Warships

    Join Date
    May 2005
    Location
    Hunting wolves and/or villagers... depends...
    Posts
    18,039
    Blog Entries
    9
    Quote Originally Posted by SirkTheMonkey View Post
    I'll throw another idea out there: instead of lumping it in the events, why not make it a decision that's available if the flag is on a province but the modifier isn't. The decision would reset the modifier at no (or maybe even minimal) cost. I'm not sure what the performance impact of decisions are but the only downside I can imagine is the player having to click on lots of decisions after inheriting a big country or having a very successful war.
    A decision will possibly increase the lag at change of month as the AI nation will be picking decisions at that moment.
    Auretus Ornithorhynchus anatinus, in hoc signo vinces. In honorem Paradox!Awarded the SAS Award for Forum Dedication<:3 )~~~ Mice over Rabbits
    • Crusader Kings II --- Planning a map mod, the name of which remains to be determined
    • Europa Universalis III : Divine Wind --- The EUIII Master Mod List (last update 7-March-2013)
    MEIOU:Tokgawa's Destiny, a mod giving you a new map, a new experience,... - Quezako ?
    If you have zero infamy, then you're wasting everybody's forgiveness. - Zzzzz... •
    MEIOU Subforum in english --- Enfillade MEIOU en Français --- MEIOU auf Deutsch
    My AAR : Aragón and its Place in European History
    • Mount & Blade Warband : Draper in the Noble Order of the Platypus - Impatient archer, reckless infantry and ridiculous cavalier
    • Werewolf, come join the hunt here --- Wins : as seer 1/1, as villager 2/10, as wolf 1/5 - Hosted 2 WWLite,

  12. #12
    I haven't had a problem with just using the events I posted. It really just looks like more decision automation to the player, and the events don't fire often enough to really hurt performance.

  13. #13
    Actually, before this thread, I was thinking that having a land reform should speed up the coring process since you'd lose it if the province gets conquered. The idea was to give it the same bonus on coring speed (10%) as having a national focus or at least half of it (5%).

    Personally, I'd rather have this than having land reforms permanent. You could say that new laws are put in place to make the distribution of land more compatible with your own systems. Which will of course make the locals become more assimilated to your population. In addition, because the lands were the national focus once, they should be even more thankful and assimilated due to the growth of their economy as well.

  14. #14
    Dagneau, the Ultimate Diplomat gigau's Avatar
    Diplomacy PlayerEU3 OwnerEU3 Collectors Edition OwnerHoI AnthologyGalactic Assaulter
    Napoleonic MarshalDeus Vult!Europa Universalis: RomeEuropa Universalis: Rome (Collectors Edition)Finder of the Lost Empire
    Penumbra -  Black PlagueHearts of Iron 2: ArmageddonVictoria: RevolutionsEuropa Universalis III: In NomineEU3 Complete
    Rome: Vae VictisSupreme Ruler 2020Rome GoldEast India CompanyHearts of Iron III
    Majesty 2Supreme Ruler 2020 GoldFor The GloryArsenal of DemocracyHeir to the Throne
    East India Company CollectionRise of PrussiaAchtung PanzerLead and GoldMount & Blade: Warband
    200k ClubLegioSemper FiElven Legacy CollectionVictoria 2
    Commander: Conquest of the AmericasLionheartDivine WindShip Simulator ExtremesIron Cross
    MagickaCities in MotionEU3: ChroniclesSword of the StarsDarkest Hour
    Majesty II CollectionCrusader Kings IIPirates of Black CoveMount & Blade: With Fire and SwordPride of Nations
    For the MotherlandSupreme Ruler: Cold WarSengokuHearts of Iron: The Card GameSword of the Stars II
    Hearts of Iron III CollectionVictoria II: A House DividedKing Arthur IICrusader Kings II Holy KnightGettysburg: Armored Warfare
    Naval War: Arctic CircleWarlock: Master of the ArcaneStarvoidHOI3: Their Finest HourWar of the Roses
    A Game of DwarvesDungeonlandThe Showdown EffectMarch of the EaglesImpire
    Cities in Motion 2Victoria 2: Heart of DarknessLeviathan: Warships

    Join Date
    May 2005
    Location
    Hunting wolves and/or villagers... depends...
    Posts
    18,039
    Blog Entries
    9
    The enclosed land and reclaimed part have been implemented (althoug i'm using the yealry events to set the modifier back).

    I'm less convinced regarding the land reforms, much like leppuno.
    Auretus Ornithorhynchus anatinus, in hoc signo vinces. In honorem Paradox!Awarded the SAS Award for Forum Dedication<:3 )~~~ Mice over Rabbits
    • Crusader Kings II --- Planning a map mod, the name of which remains to be determined
    • Europa Universalis III : Divine Wind --- The EUIII Master Mod List (last update 7-March-2013)
    MEIOU:Tokgawa's Destiny, a mod giving you a new map, a new experience,... - Quezako ?
    If you have zero infamy, then you're wasting everybody's forgiveness. - Zzzzz... •
    MEIOU Subforum in english --- Enfillade MEIOU en Français --- MEIOU auf Deutsch
    My AAR : Aragón and its Place in European History
    • Mount & Blade Warband : Draper in the Noble Order of the Platypus - Impatient archer, reckless infantry and ridiculous cavalier
    • Werewolf, come join the hunt here --- Wins : as seer 1/1, as villager 2/10, as wolf 1/5 - Hosted 2 WWLite,

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts