Looking for a Mod That allows Arsenal and Encampment Districts in same city

LethalLeigh

Prince
Joined
Feb 5, 2016
Messages
350
I am looking for a couple of mods that I can't seems to find. So I am not sure if they exist.

First - A mod that allows you to build The Arsenal District and Encampment District in the same city. Also the Entertainment Complex and Water Park. If There is one.

Second - A mod that allows you to choose more than one secret society if there is one.

Last - A mod that allows you to choose more Pantheon (1) and or Religion (4) choices.

Anyone able to Help?
 
What is the Arsenal district?
 
What is the Arsenal district?
A district from another mod called something like "More water structures" or something like that. It's basically an Encampment on sea, similar to how the Water Park is an Entertainment District on sea.

@OP: I'm not familiar with any such mods in existence. Allowing the districts in the same city will be fairly straightforward to code - it's just a matter of removing a tag that makes them conflicting. The secret societies may be possible to do in the same way, I don't know that. The religion thing I doubt is possible within the current code access.
 
What is the Arsenal district?
More Maritime: Seaside Sectors is the name of the mod. it gives you 2 new districts you can build on water. one is a sea base encampment called the "Arsenal" . The other is a sea Based Neighborhood called a "Waterfront".

A district from another mod called something like "More water structures" or something like that. It's basically an Encampment on sea, similar to how the Water Park is an Entertainment District on sea.

@OP: I'm not familiar with any such mods in existence. Allowing the districts in the same city will be fairly straightforward to code - it's just a matter of removing a tag that makes them conflicting. The secret societies may be possible to do in the same way, I don't know that. The religion thing I doubt is possible within the current code access.
Thanks. I wasn't sure if they existed, as I have been unable to find them. Now with civ 7 announced I was getting back in to the game after a couple of years.
 
Thanks. I wasn't sure if they existed, as I have been unable to find them. Now with civ 7 announced I was getting back in to the game after a couple of years.
The part you want to look into looks like this in the mod file:
Code:
INSERT INTO MutuallyExclusiveDistricts
            (    District,                        MutuallyExclusiveDistrict                )    VALUES
                
            (    'DISTRICT_IKANDA',                'DISTRICT_ARSENAL'                        ),
            (    'DISTRICT_ENCAMPMENT',            'DISTRICT_ARSENAL'                        ),
            (    'DISTRICT_ARSENAL',                'DISTRICT_ENCAMPMENT'                    ),
            (    'DISTRICT_ARSENAL',                'DISTRICT_IKANDA'                        );
 
If you search steam workshop for "arsenal", first match is mod that you are looking for.
 
Top Bottom