A complete map of Ikariam for use in scripting is available here:
http://files.nikitakit.googlepages.com/ikariamMap.js
About a year ago, I obtained the original map data for use in immortalnights' script. Since then, it has found its way into various other tools. Unfortunately, the data was missing 51 islands, so I feel that I should post an update for everyone who might have used it.
This JavaScript file contains a single function which returns a large array containing the map. The array is ordered [id, good, wonder].
P.S. Here is a comparison for island (1,13) of the original data from the Ikariam test server and the parsed data. (The info has been moved around so as not to break compatibility with previous scripts). There are four mysterious pieces of data here, and I have no idea what they are. If you know, please tell me.
|
Source code
|
1
2
3
4
5
6
7
8
|
Orig(1:13): ["5228","Torautia","2","6","451","5","9","13"]
Parsed: [5228,2,6,"Torautia",5]
Orig(1:14): ["5224","Lolios","1","5","451","4","10","10"]
Parsed: [5224,1,5,"Lolios",4]
Original: [id, name, good, wonder, ??, ???, ??, ??, number of cities]
Parsed: [id, good, wonder, ???]
|