M Mooncloud Member Joined Aug 19, 2015 Messages 120 Aug 28, 2015 #1 How would I go about instructing the bot to travel to a zone that has no Aetheryte to simply teleport to?
How would I go about instructing the bot to travel to a zone that has no Aetheryte to simply teleport to?
y2krazy Community Developer Joined Jun 21, 2011 Messages 2,803 Aug 28, 2015 #2 Mooncloud said: How would I go about instructing the bot to travel to a zone that has no Aetheryte to simply teleport to? Click to expand... Tried using this custom tag? https://www.thebuddyforum.com/rebor...208767-alpha-world-traveling-teleporting.html
Mooncloud said: How would I go about instructing the bot to travel to a zone that has no Aetheryte to simply teleport to? Click to expand... Tried using this custom tag? https://www.thebuddyforum.com/rebor...208767-alpha-world-traveling-teleporting.html
P Paratax New Member Joined Nov 29, 2012 Messages 28 Aug 29, 2015 #3 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> Click to expand...
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> Click to expand...