Andrew Klamut
Chieftain
- Joined
- Jun 20, 2019
- Messages
- 6
Hi all,
New to modding Civ 6, I'm looking to create a mod that adds fields between "Game speed" and "Map" in any Game Setup screen. More specifically I want the fields to be integer fields just like the game/map seed fields at the bottom.
The only mod I know of that does something like this is "Got Lakes?" where it has its own map in the Map dropdown. When you select that map, it adds a ton of options to the menu. I'm just not quite sure how it works, I attached what I think are relevant files from "Got Lakes?"
My attempt at this was simple, a single xml file with the following, but it doesn't seem to do anything. I expected this to add an integer field called Private Game underneath "Game speed":
<GameInfo>
<Parameters>
<!-- Game Options -->
<Row ParameterId="Test" Name="LOC_PRIVATE_GAME" Description="" Domain="int" Hash="0" DefaultValue="0" ConfigurationGroup="Game" ConfigurationId="TEST" GroupId="GameOptions" SupportsLANMultiplayer="0" SupportsInternetMultiplayer="1" SupportsHotSeat="0" SupportsSinglePlayer="0" SortIndex="81"/>
</Parameters>
</GameInfo>
Thanks to anyone who might be able to help!!
New to modding Civ 6, I'm looking to create a mod that adds fields between "Game speed" and "Map" in any Game Setup screen. More specifically I want the fields to be integer fields just like the game/map seed fields at the bottom.
The only mod I know of that does something like this is "Got Lakes?" where it has its own map in the Map dropdown. When you select that map, it adds a ton of options to the menu. I'm just not quite sure how it works, I attached what I think are relevant files from "Got Lakes?"
My attempt at this was simple, a single xml file with the following, but it doesn't seem to do anything. I expected this to add an integer field called Private Game underneath "Game speed":
<GameInfo>
<Parameters>
<!-- Game Options -->
<Row ParameterId="Test" Name="LOC_PRIVATE_GAME" Description="" Domain="int" Hash="0" DefaultValue="0" ConfigurationGroup="Game" ConfigurationId="TEST" GroupId="GameOptions" SupportsLANMultiplayer="0" SupportsInternetMultiplayer="1" SupportsHotSeat="0" SupportsSinglePlayer="0" SortIndex="81"/>
</Parameters>
</GameInfo>
Thanks to anyone who might be able to help!!