Maniac
Apolyton Sage
What's the easiest way to make a list including only the 20 tiles of the city radius? Currently I use variations of the following, which includes four plots I don't want included:
Code:
pPlot = pCity.plot()
...
iX = pPlot.getX()
iY = pPlot.getY()
...
listcitycircle24 = []
for iiX in range(iX-2, iX+3, 1):
for iiY in range(iY-2, iY+3, 1):
pPlot2 = CyMap().plot(iiX,iiY)
if (pPlot2.blahblahblah and pPlot2.isCity() == False):
listcitycircle24.append(pPlot2)