babosasa New Member Joined Jun 22, 2012 Messages 417 Reaction score 0 Mar 11, 2015 #1 where to get Aetheryte ID? Thanks guys
babosasa New Member Joined Jun 22, 2012 Messages 417 Reaction score 0 Mar 11, 2015 #2 and map ID as well please
D Djdave New Member Joined Feb 22, 2015 Messages 166 Reaction score 1 Mar 11, 2015 #3 https://www.thebuddyforum.com/rebor...72-creating-profiles.html?highlight=Aetheryte
y2krazy Community Developer Joined Jun 21, 2011 Messages 2,803 Reaction score 70 Mar 11, 2015 #4 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); } Click to expand... 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()); } Click to expand... Get current zone & XYZ: ClearLog(); Log("Zone Id: {0} | XYZ: {1}",WorldManager.ZoneId,Core.Player.Location); Click to expand...
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); } Click to expand... 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()); } Click to expand... Get current zone & XYZ: ClearLog(); Log("Zone Id: {0} | XYZ: {1}",WorldManager.ZoneId,Core.Player.Location); Click to expand...
B BigBudda87 Member Joined May 5, 2012 Messages 243 Reaction score 0 Mar 11, 2015 #5 check also this Link