How to change religion number?

yogiebere

Civilization City Planner
Joined
Jan 7, 2010
Messages
406
Location
Seattle, WA
I've been running small frontier 8 civs low tide for the performance benefits.

But only 4 religions are allowed.
 
Documents > My Games > Sid Meier's Civilization V > MODS > (2) Community Balance Patch > Worlds > WorldSizes.sql = MaxActiveReligions
 
If you want to use a mod to permanently reduce the number of religions, you can use the "Change VP Options" mod template from the Mods Repository, and then add some code (it's easy to do it manually but then you'll need to re-type it after every new beta version).
https://forums.civfanatics.com/threads/change-vp-options.620079/

Add this code to the SQL file to modify the number of religions:
UPDATE Worlds SET MaxActiveReligions = '2' WHERE Type = 'WORLDSIZE_TINY';
UPDATE Worlds SET MaxActiveReligions = '3' WHERE Type = 'WORLDSIZE_SMALL';
UPDATE Worlds SET MaxActiveReligions = '4' WHERE Type = 'WORLDSIZE_STANDARD';
UPDATE Worlds SET MaxActiveReligions = '5' WHERE Type = 'WORLDSIZE_LARGE';
UPDATE Worlds SET MaxActiveReligions = '6' WHERE Type = 'WORLDSIZE_HUGE';
 
Hmm I was hoping it would change my current game but it didn't.

If I save a seed will it still load the same game (despite the small code tweaks)? I really liked that game but it was frustrating with 10% city penalties and 4 religions.

Also how do I get my seed number? After about 30 minutes of trying I haven't had success. Most online answers are about civ6 now.
 
Top Bottom