Desperate request for help

matros

Chieftain
Joined
Oct 1, 2005
Messages
36
Location
Hlohovec, SK
Hi,

I previously edited several mapr for civ 4 but this time I tried to create a completely new map. I used mapview and notepad for that.

However, whenever I load my map, the game crashes. I spent days looking for where the problem is. I even removed almost everything from the map, so now it is only ocena/coast and grassland (no hills, rivers, mountains etc...) and two players (england and spain) to find the potential problem by elimination...

However, I still wasnt able to find the problem.

Please, can someone more skilled/experience in civ4 mapmaking have a look at the map and try to find the problem?

You can download the map from: https://www.dropbox.com/s/vu18juk7q57nc9c/Western Europe 2.CivBeyondSwordWBSave
or
https://dl.dropbox.com/s/vu18juk7q57nc9c/Western Europe 2.CivBeyondSwordWBSave?dl=1
 
The straight crash to desktop is in the beginmap code, also team 9 in beginplayer is missing giving python errors
Spoiler :
Code:
BeginMap
	grid width=48
	grid height=53
[COLOR="Green"]better if you start lat and long as =0 
as there are no ice caps[/COLOR]
[COLOR="Red"]	top latitude=90
	bottom latitude=90[/COLOR]
	wrap X=0
	wrap Y=0
[COLOR="Green"]crash caused by missing[/COLOR]
[COLOR="Red"] 	world size=WORLDSIZE_HUGE
	climate=CLIMATE_TEMPERATE
	sealevel=SEALEVEL_MEDIUM[/COLOR]
	num plots written=2544
EndMap

Here's the fixed start code
Spoiler :
Code:
Version=11
BeginGame
	Tutorial=0
	Era=ERA_ANCIENT
	Speed=NONE
	Calendar=CALENDAR_DEFAULT
	GameTurn=0
	MaxTurns=0
	MaxCityElimination=0
	TargetScore=0
	StartYear=-4000
	Description=Wester Europe 2
	ModPath=
EndGame
BeginTeam
	ContactWithTeam=0
EndTeam
BeginTeam
	ContactWithTeam=1
EndTeam
BeginTeam
	ContactWithTeam=2
EndTeam
BeginTeam
	ContactWithTeam=3
EndTeam
BeginTeam
	ContactWithTeam=4
EndTeam
BeginTeam
	ContactWithTeam=5
EndTeam
BeginTeam
	ContactWithTeam=6
EndTeam
BeginTeam
	ContactWithTeam=7
EndTeam
BeginTeam
	ContactWithTeam=8
EndTeam
BeginTeam
	ContactWithTeam=9
EndTeam
BeginTeam
	ContactWithTeam=10
EndTeam
BeginTeam
	ContactWithTeam=11
EndTeam
BeginTeam
	ContactWithTeam=12
EndTeam
BeginTeam
	ContactWithTeam=13
EndTeam
BeginTeam
	ContactWithTeam=14
EndTeam
BeginTeam
	ContactWithTeam=15
EndTeam
BeginTeam
	ContactWithTeam=16
EndTeam
BeginTeam
	ContactWithTeam=17
EndTeam
BeginPlayer
	Team=0
	LeaderType=LEADER_ELIZABETH
	CivType=CIVILIZATION_ENGLAND
	PlayableCiv=1
	StartingX=22, StartingY=34
EndPlayer
BeginPlayer
	Team=1
	LeaderType=LEADER_ISABELLA
	CivType=CIVILIZATION_SPAIN
	PlayableCiv=1
	StartingX=10, StartingY=14
EndPlayer                      
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=2
EndPlayer 			
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=3
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=4
EndPlayer         		
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=5
EndPlayer 			
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=6
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=7
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=8
EndPlayer 			
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=9
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=10
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=11
EndPlayer 			
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=12
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=13
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=14
EndPlayer 			
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=15
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=16
EndPlayer                         
BeginPlayer
	LeaderType=NONE
	CivType=NONE
	Team=17
EndPlayer 
BeginMap
	grid width=48
	grid height=53
	top latitude=0
	bottom latitude=0
	wrap X=0
	wrap Y=0
	world size=WORLDSIZE_HUGE
	climate=CLIMATE_TEMPERATE
	sealevel=SEALEVEL_MEDIUM
	num plots written=2544
EndMap
 
Padjur, thank you soooooooooooooooooooooooooo much...
 
Top Bottom