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

Zone/Aetheryte ID's for new HW Zones?

pieboy

Member
Joined
Jan 24, 2013
Messages
112
Reaction score
0
Howdy! Im trying to get myself into creating custom orderbot profiles for the new HW content and being a newcomer to this I dont know where to even begin looking for Zone/Aetheryte ID's. Any ideas? Thanks! :D





Edit: Added attachment profile in question
 

Attachments

Last edited:
Howdy! Im trying to get myself into creating custom orderbot profiles for the new HW content and being a newcomer to this I dont know where to even begin looking for Zone/Aetheryte ID's. Any ideas? Thanks! :D
PM'd.
 
Awesome! Thanks man :) I got the ID's I needed!
But for some odd reason my orderbot profile wont attack the mobs I need now.
It will run to the correct spot but then get [17:44:54.371 D] No viable path from <416.0255, 166.77, 303.0363> to <0, 0, 0> in 00:00:00.9556110 ms


Heres my code -

<Profile>
<Name>[OrderBot] Deepeye Tears Farm</Name>
<KillRadius>60</KillRadius>
<GrindAreas>
<GrindArea name="Riversmeet">
<Hotspots>
<HotSpots Radius="90" XYZ="416.0255, 166.77, 303.0363"/>
</Hotspots>
<TargetMobs>
<TargetMob Id="3471"/>
</TargetMobs>
<MinLevel>50</MinLevel>
<MaxLevel>50</MaxLevel>
</GrindArea>
</GrindAreas>
<Order>
<If Condition="not IsOnMap(397)">
<TeleportTo AetheryteId="71" Name="Falcon's Nest"/>
</If>
<If Condition="IsOnMap(397)">
<NoCombatMoveTo XYZ="416.0255, 166.77, 303.0363" Name="Rivers Meet"/>
<While Condition="True">
<Grind Grindref="Rivers Meet"/>
</While>
</If>
</Order>
</Profile>
 
Awesome! Thanks man :) I got the ID's I needed!
But for some odd reason my orderbot profile wont attack the mobs I need now.
It will run to the correct spot but then get [17:44:54.371 D] No viable path from <416.0255, 166.77, 303.0363> to <0, 0, 0> in 00:00:00.9556110 ms
You may have to add smaller HotSpots and/or some BlackSpots as mobs may be off the mesh.
 
To get AethryteID's from RebornConsole:
Code:
foreach (var Id in DataManager.AetheryteCache)
{
Log(Id);
}

Code:
[0, ]
[1, ]
[2, New Gridania]
[3, Bentbranch Meadows]
[4, The Hawthorne Hut]
[5, Quarrymill]
[6, Camp Tranquil]
[7, Fallgourd Float]
[8, Limsa Lominsa Lower Decks]
[9, Ul'dah - Steps of Nald]
[10, Moraby Drydocks]
[11, Costa del Sol]
[12, Wineport]
[13, Swiftperch]
[14, Aleport]
[15, Camp Bronze Lake]
[16, Camp Overlook]
[17, Horizon]
[18, Camp Drybone]
[19, Little Ala Mhigo]
[20, Forgotten Springs]
[21, Camp Bluefog]
[22, Ceruleum Processing Plant]
[23, Camp Dragonhead]
[24, Revenant's Toll]
[25, ]
[26, ]
[27, ]
[28, ]
[29, ]
[30, ]
[31, ]
[32, ]
[33, ]
[34, ]
[35, ]
[36, ]
[37, ]
[38, ]
[39, ]
[40, ]
[41, ]
[42, ]
[43, ]
[44, ]
[45, ]
[46, ]
[47, ]
[48, ]
[49, ]
[50, ]
[51, ]
[52, Summerford Farms]
[53, Black Brush Station]
[54, ]
[55, Wolves' Den Pier]
[56, Estate Hall (Free Company)]
[57, Estate Hall (Free Company)]
[58, Estate Hall (Free Company)]
[59, Estate Hall (Private)]
[60, Estate Hall (Private)]
[61, Estate Hall (Private)]
[62, The Gold Saucer]
[63, ]
[64, ]
[65, ]
[66, ]
[67, ]
[68, ]
[69, ]
[70, Foundation]
[71, Falcon's Nest]
[72, Camp Cloudtop]
[73, Ok' Zundu]
[74, Helix]
[75, Idyllshire]
[76, Tailfeather]
[77, Anyx Trine]
[78, Moghome]
[79, Zenith]
[80, ]
[81, ]
[82, ]
[83, ]
[84, ]
[85, ]
[86, ]
[87, ]
[88, ]
[89, ]
[90, ]
 
Also looking for the HW map Id's. Not sure where to find them.

????I would like to know this also I have the list for all the ARR ones just need the Heavensward ones.
 
See Y2's answer below.

Much better formatted than the answer I provided. :D
 
Last edited:
????I would like to know this also I have the list for all the ARR ones just need the Heavensward ones.
397 - Coerthas Western Highlands (Falcon's Nest)
398 - The Dravanian Forelands (Anyx Trine, Tailfeather)
399 - The Dravanian Hinterlands
400 - The Churning Mists (Moghome, Zenith)
401 - The Sea of Clouds (Camp Cloudtop, Ok' Zundu)
402 - Azys Lla (Helix)
418 - Foundation
478 - Idyllshire
 
Back
Top