What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Navigate to zone without Aetheryte?

Mooncloud

Member
Joined
Aug 19, 2015
Messages
120
Reaction score
2
How would I go about instructing the bot to travel to a zone that has no Aetheryte to simply teleport to?
 
Use it like this with the custom tag y2krazy mentioned (example for Western Thanalan):
<If Condition="not IsOnMap(140)">
<If Condition="Managers.WorldManager.HasAetheryteId(17)">
<TeleportTo Name="Horizon" AetheryteId="17" />
</If>
<If Condition="not Managers.WorldManager.HasAetheryteId(17)">
<Travel To="140" />
</If>
</If>
 
Back
Top