The easiest way to find maps is to look them up online: http://andorstrail.irkalla.cz/0.7.0/map/world1.html Just change 'world1' in the URL to another map name to view it.
Unfortunately that site hasn't been updated in a while, so a lot of newer areas are missing. Also, some places don't have maps, like your home where you start the game.
So next step is to lookup the source code for the game: https://github.com/Zukero/andors-trail/ ... il/res/xml Here's where all the maps are. You can't view them graphically, but they're all here (including 'home.tmx').
So we lookup 'guynmart_wood_3_hole.tmx' and find a bunch of code. If you look through these long enough, you'll eventually work out how they're structured, and then realise that the section lists the other maps that link to this one. There's only one way to get to 'guynmart_wood_3_hole', and that's from 'guynmart_wood_3'.
Since we know you've already been to 'guynmart_wood_3' (it wasn't listed as missing), check the '/andors-trail/worldmap' directory on your phone (this is where the game stores the map files you see in-game). Here you can search through the filenames to look for a specific place.
You'll find a 'guynmart_wood_3' map that should show you where to go. And look at that: there's a hole in the ground! Maybe you should explore that
Unfortunately that site hasn't been updated in a while, so a lot of newer areas are missing. Also, some places don't have maps, like your home where you start the game.
So next step is to lookup the source code for the game: https://github.com/Zukero/andors-trail/ ... il/res/xml Here's where all the maps are. You can't view them graphically, but they're all here (including 'home.tmx').
So we lookup 'guynmart_wood_3_hole.tmx' and find a bunch of code. If you look through these long enough, you'll eventually work out how they're structured, and then realise that the
Code: Select all
<objectgroup name="Mapevents">
Since we know you've already been to 'guynmart_wood_3' (it wasn't listed as missing), check the '/andors-trail/worldmap' directory on your phone (this is where the game stores the map files you see in-game). Here you can search through the filenames to look for a specific place.
You'll find a 'guynmart_wood_3' map that should show you where to go. And look at that: there's a hole in the ground! Maybe you should explore that

EDIT:
Good job! Better to find them without cheating
