Help with custom game!!

Katorok

Chieftain
Joined
Jul 9, 2008
Messages
13
Alright so I make a custom game.. Me and 17 other AI's on the map Earth2 or something.. Now the problem is that we all start on the same continent -.-, EVERYTIME, which gets annoying.. Is there any way to make it so we are more spread out, or will it always be like this?

Thanks in advance...
 
I will integer this script in the Full of Resources script (check the map script section) and make that an option like for the earth script.

If you want that players may begin anywhere :

_ copy and rename the script.
_ edit the script with notepad ++ or python.
_ and comment (add some "#" before the lines) :

Spoiler :
Code:
##def minStartingDistanceModifier():
##    return -15
##
##def findStartingPlot(argsList):
##	[playerID] = argsList
##
##	def isValid(playerID, x, y):
##		map = CyMap()
##		pPlot = map.plot(x, y)
##		
##		if (pPlot.getArea() != map.findBiggestArea(False).getID()):
##			return False
##
##		return True
##	
##	return CvMapGeneratorUtil.findStartingPlot(playerID, isValid)

Tcho !
 
here the file put it in the BtS PublicMaps folder .

Tcho !

Edit : file removed (should have been downloaded !?)
 
Back
Top Bottom