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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Location & Map ID's for use when creating Orderbot profiles

garretjax

New Member
Joined
Mar 14, 2014
Messages
56
View attachment location & map ID's for aetheryte.txt

I made this list for myself but thought I would share in case anyone else is making orderbot profiles.

This is a list of Aetheryte and map id's for use when creating profiles.
Aetheryte id's were pretty easy to pull as i got them all at once.
Map id's I had to teleport to each Aetheryte to get the id for that zone.
Not sure if there was an easier way but it was the only way i knew how.


These are used to teleport yourself to different areas in your orderbot profile.

Such as
<Order>
<If Condition="not IsOnMap(152)">
<TeleportTo Name="Wineport" AetheryteId="4" />
</If>
</Order>
 
Last edited:
Just wanted to say thanks for this info. It's helped me a lot.
 
sorry sir , i got map 156 and how can i get the map name?
<TeleportTo Name="??="?" />
156 <40.29912, 20.295, -660.3459>
 
sorry sir , i got map 156 and how can i get the map name?
<TeleportTo Name="??="?" />
156 <40.29912, 20.295, -660.3459>

Name doesn't actually matter as far as I know, most people use the Aetheryte name they are teleporting to there.

The code should look like:

<TeleportTo Name="Little Ala Mhigo" AetheryteId="19" />
 
Amazing share, i used your list every time to make a profile, thanks you bro <3
 
Anyone tried teleporting to their personal house? Here is what I'm trying.

<If Condition="not IsOnMap(354)">
<TeleportTo Name="Personal Housing" AetheryteId="59" />
</If>

I got the map ID and AetheryteID from the console so I'm sure those are right. In the Name attribute I've tried "Personal Housing" and "Estate Hall (Private)" with no success. I'm getting this error:

[20:11:16.407 D] Exception during scheduling Pulse: System.Exception: Player missing AetheryteId:59 Zone:personal housing
at ff14bot.NeoProfiles.TeleportTo.OnStart()
at ff14bot.NeoProfiles.ProfileBehavior.Start()
at ..()
at ff14bot.NeoProfiles.NeoProfileManager.UpdateCurrentProfileBehavior()
at ff14bot.BotBases.OrderBot.(Object , EventArgs )
at ff14bot.Behavior.BrainBehavior.()

I'm very new to this, so I apologize in advance if I'm missing something obvious.
 
How did you get the AethertyeID? I think there are a bunch of Aetheryte's on that map, and you may have gotten one that you don't have permission to teleport to.
 
I was using this code from the console.

foreach(var item in WorldManager.LocationKey)
{
Log("Id:{0} Location:{1}",item.Key,item.Value);
}
 
Тell me how to know AethertyeID ?
This Code does not work

foreach(var item in WorldManager.LocationKey)
{
Log("Id:{0} Location:{1}",item.Key item.Value);
}

Error
1) "ff14bot.Managers.WorldManager ' does not contain a definition for "LocationKey"
 
Replace WorldManager.LocationKey with DataManager.AetheryteCache.
 
Back
Top