Usually, when i'm looking at an .xml file for someone, i just download it and view it via the browser. On the one you linked, I couldn't do that. So first I ammended:
Code:
<!-->
Grinding Levels 1-50
Author: Nesarthin
Level 1-15 Credit to kagamihiiragi17, This + the mining profile helped
me to get through problems i was having.
V:1.0.1
Required Teleport Locations:
Bentbranch Meadows
Aleport - Upper LaNoscea
Quarrymill
Little Ala Mhigo
Wineport
Camp Dragonhead
Camp Drybone
Required User Interaction:
Very little, stop the bot periodically to repair, or download RePear
Make Sure to upgrade Gear, Use Quack to log you out Once in a while,
Otherwise this should be AFKable
Required Setup:
Set class and hit go. It will check your level and take you to the
correct spot
Recomended Plugins / Addons
Magitek
ExCombat Assist
RePear
Gourmetguy
Quack
For level one Leave through Blue Badger Gate and start your Grinding Adventure
-->
so that the initial line looked like this:
and not this:
When adding notes open with "<!--" and close the note with "-->". Now the browser can read it.
As for the teleport, if you look at the <Order> part of the .xml, at the current level range you've stipulated, you'll find this:
Code:
<If Condition="Core.Player.ClassLevel < 30">
<If Condition="not IsOnMap(146)">
<TeleportTo Name="Little Ala Mhigo" AetheryteId="19" />
</If>
</If>
<Grind grindRef="Southern Thanalan" while="Core.Player.ClassLevel < 30" />
This is telling the bot that <IF> you're less than level 30, to teleport to Aetheryte 19... Which is "Little Ala Mhigo". The "not IsOnMap" statement is not needed, so I changed It.
to this:
Code:
<If Condition="Core.Player.ClassLevel < 30">
<TeleportTo Name="Little Ala Mhigo" AetheryteId="19" />
</If>
<Grind grindRef="Southern Thanalan" while="Core.Player.ClassLevel < 30" />
This way it'll teleport you to Little Ala Mhigo irrespective of what Map you're on. So if you stop the bot and restart it, it'll teleport you back to Little Ala Mhigo.
As an addendum:
I would also suggest that you log on, and hit Return. If it takes you to Forgotten Springs, that's the main problem. If you're bound to Forgotten Springs you'll return there upon death, and the "not IsOn Map" is irrelevant, as both Forgotten Springs & Little Ala Mhigo are on map (146) and the bot will continue to the grind reference, plotting a course thru the Amaal'Ja. Because, well, that's what it's been told to do.
If this is the case, rebind to Little Ala Mhigo's Aetheryte. And maybe add force statements to the teleports. Although, if you're bound to forgotten springs, this won't matter and the bot will still think you're where you're supposed to be and until you restart the profile, will keep doing exactly that.