View Full Version : Script Request


Nahtanoj
Sep 04, 2009, 06:59 PM
Are there any map scripts that place players on smaller islands with one large landmass? I would think this would be an interesting map, having capitals separated from the bulk of the rest of the civlization.

Thanks in advance

Tholish
Sep 05, 2009, 06:18 PM
Nathtanoj, you should have put this in the script request sticky...
Ha, there isn't one. At least please rename the thread to PeripheralStarts.

There's the line in Terra that forces all start positions to be on the largest landmass. Maybe that could be reversed so that you cannot start on the largest land mass.

In the part about verifying starting locations are OK

if (pPlot.getArea() != map.findBiggestArea(False).getID()):
return False

becomes

if (pPlot.getArea() == map.findBiggestArea(False).getID()):
return False

then you place that in the script of your choice.

Here I put it in the Fractal script. I can put it in another script if you like.