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!

where to get Aetheryte ID?

Some helpful snippets to run from RebornConsole (plugin):

Get Aetheryte IDs:

ClearLog();
foreach(var item in WorldManager.LocationKey)
{
Log("Id: {0} Location: {1}",item.Key,item.Value);
}
Nearby objects (can be used for Aetheryte IDs as well):

ClearLog();
var units = GameObjectManager.GameObjects;
foreach(var unit in units.OrderBy(r=>r.Distance()))
{
Log("{0}-{2}-{1}",unit,unit.NpcId,unit.GetType());
}
Get current zone & XYZ:

ClearLog();
Log("Zone Id: {0} | XYZ: {1}",WorldManager.ZoneId,Core.Player.Location);
 
Back
Top