Edit District Radius

kragen2179

Chieftain
Joined
Oct 30, 2008
Messages
31
Is it possible, can someone make a mod to increase the District Radius from 6 to 9 or 12 tiles so that cities 6 tiles apart can get benefits from another city's district?
 
Thank you.

Will I have to do this for each district individually, or is there a global option?
 
Is it possible, can someone make a mod to increase the District Radius from 6 to 9 or 12 tiles so that cities 6 tiles apart can get benefits from another city's district?
I think you mean the buildings IN the Districts not the Districts themselves. One line of code would do it, just change XX to whatever value you want and either create a simple mod or stick it in the SQL file of an existing mod. If you wanted to change the buildings that have 9 regional range you'd need another line for them.
Code:
UPDATE Buildings SET RegionalRange = XX WHERE RegionalRange = 6;
Or, you could just do this one line that would capture everything that has a regional range except for the Estadio wonder.
Code:
UPDATE Buildings SET RegionalRange = RegionalRange + XX WHERE RegionalRange NOT IN ('0','100000');
 
Back
Top Bottom