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

ConjurerDragon

Generalissimus
79 Badges
Apr 19, 2005
5.559
611
  • Rise of Prussia
  • Hearts of Iron IV Sign-up
  • Stellaris: Galaxy Edition
  • Stellaris: Galaxy Edition
  • Stellaris
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Humble Paradox Bundle
  • Pride of Nations
  • Magicka: Wizard Wars Founder Wizard
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: El Dorado
  • Europa Universalis III: Collection
  • 500k Club
  • War of the Roses
  • Warlock: Master of the Arcane
  • Rome: Vae Victis
  • Shadowrun: Hong Kong
  • Shadowrun: Dragonfall
  • Shadowrun Returns
  • Victoria 2
  • Age of Wonders III
  • Crusader Kings Complete
  • Knights of Honor
  • Steel Division: Normandy 44 Deluxe Edition
  • Steel Division: Normandy 44
  • Crusader Kings II: Sword of Islam
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III: Chronicles
  • Europa Universalis III
  • East India Company Collection
  • Deus Vult
  • Darkest Hour
  • Europa Universalis IV: Wealth of Nations
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II
  • Hearts of Iron II: Armageddon
  • Arsenal of Democracy
  • Hearts of Iron Anthology
  • Magicka
  • Teleglitch: Die More Edition
  • Sword of the Stars
As in EU2 the demand for goods seems to be capped at 200%.
Is that value changeable or is it possible to remove that limit so that demand can rise without limit?
 
Max demand is set on a per-good basis in goods.txt.
 
Max demand is set on a per-good basis in goods.txt.

The first entry in goods.txt is

Code:
cloth = {
	base_price = 10
	
	min_demand = 0.50
	max_demand = 1.50
	
	barrack = 0.01
	
	goods = 0.01

	demand = { cotton = 0.01 } #Each cloth province increases demand for cotton

	manufactory = { type = goods income = yes }
}

What would I need to change to raise the maximum demand limit to more than 200%?
Or is the maximum limit the max_demand variable and for that product the maximum limit is 150%?
 
Or is the maximum limit the max_demand variable and for that product the maximum limit is 150%?
This is correct. min_demand is also useful if you want to e.g. make grain provinces more useful.
 
This is correct. min_demand is also useful if you want to e.g. make grain provinces more useful.

I tried to change a few values and it works like a charm. Demand of Ivory is now at 259% in my game (I have set the max demand to 1000%). Brewing beer or wodka in grain provinces allows now refineries, salt allows Naval Manufactories and Ivory luxury manufactories. :) Nice how that textfile is easily changeable.

Thankyou for your help.