[BNW] How to increase city radius from 3 to 8 or 10 tiles?

Szwagierjakub

Chieftain
Joined
Nov 11, 2018
Messages
1
I remember that there was a mods which allowed you to increase city work distance and purchasing of plots up to 5 or 10 tiles away but author delete them from workshop. Is it possible to create mod which modifies these values? I heard that you need to fix dll file. I tried to do that using guides from this forum but it doesn't work. What I should do?
 
You'll need a modded DLL, either DLL-VMC, the CP or one based on those - as they have support for working more rings (up to 5 for DLL-VMC, can't say for others, but as working extra tiles adds a huge memory overhead I doubt you'll find 8 or 10)

Then you'll need a micro-mod to use the feature in the DLL, for DLL-VMC this is as simple as one line of SQL (assuming you want ALL civs to be able to work up to 5 rings)

UPDATE Technologies SET CityWorkingChange=3 WHERE Type='TECH_AGRICULTURE';
 
Back
Top Bottom