Mountain-Free Maps?

Pantastic

King
Joined
Mar 15, 2006
Messages
922
Is there a relatively easy way modify the map generator to either make no mountains or to come back and replace all mountains with hills at the end? Mountains just annoy me on random maps, they are wasted space for a city and don't generally do enough blocking to be interesting by my tastes.
 
you can try to play with my scripts if you play with vanilla/warlords and one of the script you like .

You can also try to edit the map script you want to play . Look for the generatePlotTypes function and try change the script this way :

Code:
def generatePlotTypes():

        # .....
        #some code
        #.....

        plotTypes = Something

        ## add this
        for i in range(len(plotTypes)):
                if plotTypes[i]==PlotTypes.PLOT_PEAK:
                        plotTypes[i]=PlotTypes.PLOT_HILLS
        ##

        return plotTypes

Tcho !
 
Top Bottom