Easter eggs

DeletedUser17564

Guest
Does anyone know where the easter eggs are I cant find any
 

DeletedUser

Guest
copied from my alliance forum:

400,833: Festival
93,509: 1 Chariot
256,434: 500 each wood/stone/silver
194,592: 5 Hoplites
232.157: 200 wood
798,521: Athena shield
469,834: Hera cooling
778,260: 200 silver
943,569: 5 Hoplites
481,191: 1 Chariot
99,399: 12 Hoplites
870,913: 500 Stone
367,868: Village Mood returned to 100 in all villages on island
706,345: 1 Horse
568,324: Athena Shield
387,138: 5 Slingers
552,418: 100 wood/stone/silver
953,59: 5 Archers
787,695: Festival
153,144: Administrator
 

DeletedUser

Guest
Thanks for the help. Have you guys found anymore? ive been scooling threw the world forever.
 

DeletedUser

Guest
There are no more. If you look in the source code using the Firefox "Firebug" addon, you will see the following. I have put each one on separate lines for ease of reading. If you have collected some already then you can easily tell which ones they are by the "collected" value at the end of each line - but you will need to take this bit of code again as these change from player to player.

Code:
MapEasterEggs.init({
"egg_1":{"x":400,"y":833,"island_id":18,"collected":true},
"egg_2":{"x":93,"y":509,"island_id":19,"collected":true},
"egg_3":{"x":256,"y":434,"island_id":18,"collected":true},
"egg_4":{"x":194,"y":592,"island_id":19,"collected":true},
"egg_5":{"x":232,"y":157,"island_id":19,"collected":true},
"egg_6":{"x":798,"y":521,"island_id":19,"collected":true},
"egg_7":{"x":469,"y":834,"island_id":19,"collected":true},
"egg_8":{"x":778,"y":260,"island_id":19,"collected":true},
"egg_9":{"x":943,"y":569,"island_id":21,"collected":true},
"egg_10":{"x":481,"y":191,"island_id":17,"collected":true},
"egg_11":{"x":870,"y":913,"island_id":21,"collected":true},
"egg_12":{"x":99,"y":399,"island_id":19,"collected":true},
"egg_13":{"x":367,"y":868,"island_id":21,"collected":false},
"egg_14":{"x":706,"y":345,"island_id":19,"collected":true},
"egg_15":{"x":568,"y":324,"island_id":21,"collected":true},
"egg_16":{"x":387,"y":138,"island_id":20,"collected":true},
"egg_17":{"x":552,"y":418,"island_id":18,"collected":true},
"egg_18":{"x":953,"y":59,"island_id":20,"collected":true},
"egg_19":{"x":787,"y":695,"island_id":21,"collected":true},
"egg_20":{"x":153,"y":144,"island_id":21,"collected":true}});
 
Top