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?
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');
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.