[GS] Build Multiple Instances of World Wonders

Sievelization

Chieftain
Joined
Aug 27, 2021
Messages
2
Hi all, I was trying to modify the files so that I can build multiple Panama Canals. I was able to change the MaxWorldInstance but don't know how I can change the MaxPlayerInstance so that I can build it multiple time within one civilization. Any help would be appreciated. Thank you.

<Row BuildingType="BUILDING_PANAMA_CANAL" Name="LOC_BUILDING_PANAMA_CANAL_NAME" Description="LOC_BUILDING_PANAMA_CANAL_DESCRIPTION" PrereqTech="TECH_STEAM_POWER" Cost="920" AdvisorType="ADVISOR_GENERIC" MaxWorldInstances="10" IsWonder="true" RequiresPlacement="true" ObsoleteEra="ERA_ATOMIC" Quote="LOC_BUILDING_PANAMA_CANAL_QUOTE" QuoteAudio="Play_LOC_BUILDING_PANAMA_CANAL_QUOTE"/>

I tried to just add MaxPlayerInstances="10" in the codes above, but it didn't seem to work. Did I miss something? Thanks.
 
You must use the Replace code, not Row. Here is how:
Code:
<Replace BuildingType="BUILDING_PANAMA_CANAL" Name="LOC_BUILDING_PANAMA_CANAL_NAME" Description="LOC_BUILDING_PANAMA_CANAL_DESCRIPTION" PrereqTech="TECH_STEAM_POWER" Cost="920" AdvisorType="ADVISOR_GENERIC" MaxWorldInstances="10" MaxPlayerInstances="10" IsWonder="true" RequiresPlacement="true" ObsoleteEra="ERA_ATOMIC" Quote="LOC_BUILDING_PANAMA_CANAL_QUOTE" QuoteAudio="Play_LOC_BUILDING_PANAMA_CANAL_QUOTE"/>

If you wanted to set unlimited amount in the world and per civ you could remove the MaxPlayerInstances and MaxPlayerInstances.
 
You must use the Replace code, not Row. Here is how:
Code:
<Replace BuildingType="BUILDING_PANAMA_CANAL" Name="LOC_BUILDING_PANAMA_CANAL_NAME" Description="LOC_BUILDING_PANAMA_CANAL_DESCRIPTION" PrereqTech="TECH_STEAM_POWER" Cost="920" AdvisorType="ADVISOR_GENERIC" MaxWorldInstances="10" MaxPlayerInstances="10" IsWonder="true" RequiresPlacement="true" ObsoleteEra="ERA_ATOMIC" Quote="LOC_BUILDING_PANAMA_CANAL_QUOTE" QuoteAudio="Play_LOC_BUILDING_PANAMA_CANAL_QUOTE"/>

If you wanted to set unlimited amount in the world and per civ you could remove the MaxPlayerInstances and MaxPlayerInstances.
You must use the Replace code, not Row. Here is how:
Code:
<Replace BuildingType="BUILDING_PANAMA_CANAL" Name="LOC_BUILDING_PANAMA_CANAL_NAME" Description="LOC_BUILDING_PANAMA_CANAL_DESCRIPTION" PrereqTech="TECH_STEAM_POWER" Cost="920" AdvisorType="ADVISOR_GENERIC" MaxWorldInstances="10" MaxPlayerInstances="10" IsWonder="true" RequiresPlacement="true" ObsoleteEra="ERA_ATOMIC" Quote="LOC_BUILDING_PANAMA_CANAL_QUOTE" QuoteAudio="Play_LOC_BUILDING_PANAMA_CANAL_QUOTE"/>

If you wanted to set unlimited amount in the world and per civ you could remove the MaxPlayerInstances and MaxPlayerInstances.

Thank you so much!
 
Back
Top Bottom