Thread Tools Display Modes
05-15-20, 04:39 PM   #1
doofus
A Chromatic Dragonspawn
Join Date: Feb 2018
Posts: 158
Determine active essences

Is there a way to find out the currently active essences on the necklace?
  Reply With Quote
05-15-20, 05:01 PM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,877
I haven't played with the new changes to the Azerite system yet for nUI but the old way is still working for me so I haven't needed to expand further yet.

But .. I saw this and there are some potential items to look into.

https://www.townlong-yak.com/framexm...eEssenceUI.lua
__________________
  Reply With Quote
05-16-20, 01:23 AM   #3
doofus
A Chromatic Dragonspawn
Join Date: Feb 2018
Posts: 158
OK thanks for the pointers. The following code stores your equipped essences, in case anyone wants to know.

Code:
  local essences = C_AzeriteEssence.GetEssences();
  BA_Data["function LogTextLine"](string.format("**** essences ****"));
  for _, ve in pairs(essences) do
    local eid = ve["ID"];
    local name = ve["name"];
    local rank = ve["rank"];
    local unlocked = ve["unlocked"];
    local valid = ve["valid"];
    local icon = ve["icon"];
    -- BA_Data["function LogTextLine"](string.format("essence id: %d - name: %s - rank: %d - unl: %s - valid: %s ",eid,name,rank,tostring(unlocked),tostring(valid)));
  end
  local wornEssences = { };
  local milestones = C_AzeriteEssence.GetMilestones();
  for _, vm in pairs(milestones) do
    local mid = vm["ID"];
    local slot = vm["slot"];
    if ( slot ) then 
      local essenceID = C_AzeriteEssence.GetMilestoneEssence(mid);
      for _, ve in pairs(essences) do
        local eid = ve["ID"];
        if ( eid == essenceID ) then
          wornEssences[#wornEssences+1] = { essenceID, ve["name"], ve["rank"], slot };
          break;
        end
      end
    end
  end
 for _, we in pairs(wornEssences) do
    BA_Data["function LogTextLine"](string.format("essence id: %d - [%s] - rank: %d - slot: %d",we[1],we[2],we[3],we[4]));
  end
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » Determine active essences

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off