Starting Locations?

Slarki

Warlord
Joined
Aug 5, 2011
Messages
232
What are the preferred starting locations for all civs? I couldn't find something online and the manual doesn't provide anything.
 
What are the preferred starting locations for all civs? I couldn't find something online and the manual doesn't provide anything.
In the map script 'erebus.py' there are starting location preferences for many nations. Dont know/remember if there are any other such preferences elsewhere.
You can see them with a text editor like:
<snip>
pref = CivPreference(GetInfoType("CIVILIZATION_MALAKIM"))
pref.idealMoisture = 0.1
pref.idealAltitude = 0.25
pref.altitudeWeight = 0.25
pref.distanceWeight = 0.25
pref.needCoastalStart = False
pref.allowForestStart = False
civPreferenceList.append(pref)
<snip>
 
In the map script 'erebus.py' there are starting location preferences for many nations. Dont know/remember if there are any other such preferences elsewhere.
You can see them with a text editor like:
<snip>
pref = CivPreference(GetInfoType("CIVILIZATION_MALAKIM"))
pref.idealMoisture = 0.1
pref.idealAltitude = 0.25
pref.altitudeWeight = 0.25
pref.distanceWeight = 0.25
pref.needCoastalStart = False
pref.allowForestStart = False
civPreferenceList.append(pref)
<snip>
Thank you very much! That is what I was looking for
 
Top Bottom