Do you use the
MaxActiveReligions
on
Worlds
table? It should work just fine. But it only applies to new games, not the current ones.
Example:
SQL:
UPDATE Worlds
SET MaxActiveReligions = 2
WHERE Type = 'WORLDSIZE_DUEL';
UPDATE Worlds
SET MaxActiveReligions = 3
WHERE Type = 'WORLDSIZE_TINY';
UPDATE Worlds
SET MaxActiveReligions = 5
WHERE Type = 'WORLDSIZE_SMALL';
UPDATE Worlds
SET MaxActiveReligions = 7
WHERE Type = 'WORLDSIZE_STANDARD';
UPDATE Worlds
SET MaxActiveReligions = 9
WHERE Type = 'WORLDSIZE_LARGE';
UPDATE Worlds
SET MaxActiveReligions = 11
WHERE Type = 'WORLDSIZE_HUGE';
the Worldsizes.sql? yes, i have it like this
-- This file changes the minimum city distance for major and minor civs depending on mapsize. Change these values as desired.
-- DUEL - 3 Minimum for both
UPDATE Worlds
SET MinDistanceCities = '3', MinDistanceCityStates = '2', ReformationPercentRequired = '250', MaxActiveReligions = '6',
NumCitiesPolicyCostMod = '5', NumCitiesTourismCostMod = '5', NumCitiesTechCostMod = '5', ResearchPercent = '100',
NumCitiesUnhappinessPercent = '150'
WHERE Type = 'WORLDSIZE_DUEL';
-- Tiny - 3 Minimum for Major, 2 for Minor
UPDATE Worlds
SET MinDistanceCities = '3', MinDistanceCityStates = '2', ReformationPercentRequired = '200', MaxActiveReligions = '7',
NumCitiesPolicyCostMod = '5', NumCitiesTourismCostMod = '5', NumCitiesTechCostMod = '5', ResearchPercent = '100',
NumCitiesUnhappinessPercent = '125'
WHERE Type = 'WORLDSIZE_TINY';
-- Small - 3 Minimum for Major, 2 for Minor
UPDATE Worlds
SET MinDistanceCities = '3', MinDistanceCityStates = '2', ReformationPercentRequired = '150', MaxActiveReligions = '8',
NumCitiesPolicyCostMod = '5', NumCitiesTourismCostMod = '5', NumCitiesTechCostMod = '5', ResearchPercent = '100',
NumCitiesUnhappinessPercent = '115'
WHERE Type = 'WORLDSIZE_SMALL';
-- Standard - 3 Minimum for Major, 2 for Minor
UPDATE Worlds
SET MinDistanceCities = '3', MinDistanceCityStates = '2', ReformationPercentRequired = '100', MaxActiveReligions = '9',
NumCitiesPolicyCostMod = '5', NumCitiesTourismCostMod = '5', NumCitiesTechCostMod = '5', ResearchPercent = '100',
NumCitiesUnhappinessPercent = '100'
WHERE Type = 'WORLDSIZE_STANDARD';
-- Large - 3 Minimum for Major, 2 for Minor
UPDATE Worlds
SET MinDistanceCities = '3', MinDistanceCityStates = '2', ReformationPercentRequired = '80', MaxActiveReligions = '10',
NumCitiesPolicyCostMod = '5', NumCitiesTourismCostMod = '5', NumCitiesTechCostMod = '5', ResearchPercent = '100',
NumCitiesUnhappinessPercent = '80'
WHERE Type = 'WORLDSIZE_LARGE';
-- Huge - 3 Minimum for Major, 2 for Minor
UPDATE Worlds
SET MinDistanceCities = '3', MinDistanceCityStates = '2', ReformationPercentRequired = '60', MaxActiveReligions = '11',
NumCitiesPolicyCostMod = '5', NumCitiesTourismCostMod = '5', NumCitiesTechCostMod = '5', ResearchPercent = '100',
NumCitiesUnhappinessPercent = '60'
WHERE Type = 'WORLDSIZE_HUGE';
-- Default value that the values above can never exceed (minimally)
-- Min City Range
UPDATE Defines
SET Value = '3'
WHERE Name = 'MIN_CITY_RANGE';