<!--======================================================================================-->
<!-- http://www.reddit.com/r/ffxiv/comments/1mp5ze/speedrun_fishing_from_150_in_30_hours/
Bait to use: Glowworms
Gathering insufficient at 193. No problems at 213.
-->
<If Condition="Core.Player.ClassLevel > 44 and Core.Player.ClassLevel < 50">
<If Condition="not IsOnMap(156)"> <!-- Mor Dhona -->
<TeleportTo Name="Revenant's Toll" AetheryteId="24" />
</If>
<Fish Mooch="2" Stealth="True" Condition="Core.Player.ClassLevel < 50">
<FishSpots>
<FishSpot XYZ="149.0704, -27.12939, -440.4542" Heading="6.210228" />
<FishSpot XYZ="204.3336, -21.95234, -408.4005" Heading="5.248875" />
</FishSpots>
</Fish>
</If>
<!--======================================================================================-->
<!-- https://www.thebuddyforum.com/rebornbuddy-forum/community-developer-forum/209604-aetheryte-id-logging.html
Get Map ID: Log("{0} {1}",WorldManager.ZoneId,Core.Player.Location);
Get Aetheryte: foreach(var item in WorldManager.LocationKey) { Log("Id:{0} Location:{1}",item.Key,item.Value); }
Fishspots: string location = Core.Player.Location.ToString().Remove(0, 1);
location = location.Remove(location.Length - 1, 1);
Log("<FishSpot XYZ=\"" + location + "\" Heading=\"" + Core.Player.Heading + "\" />");
-->