Thread Tools Display Modes
02/05/16, 10:57 AM   #1
Godzynon
 
Godzynon's Avatar
Join Date: Sep 2015
Posts: 4
An addon that shows what level the morphs of your skills are

I consistently level all my skills while leveling my toons, morphing them and then maxing that morph's level, then swapping it with another skill on my bar.

I don't remember which morphs I've leveled to max and which ones I still haven't leveled, and I can't see that without putting points into the skill, which is wasteful of my skill points and gold for respecs.

Is there an addon that shows what both of your skill morph's levels are, even if you haven't taken those morphs or skills?
  Reply With Quote
02/05/16, 11:53 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,962
I'm not sure if this is exactly what you are looking for but give it a try:
http://www.esoui.com/downloads/info4...llsWindow.html
  Reply With Quote
02/05/16, 12:05 PM   #3
Godzynon
 
Godzynon's Avatar
Join Date: Sep 2015
Posts: 4
Originally Posted by Baertram View Post
I'm not sure if this is exactly what you are looking for but give it a try:
http://www.esoui.com/downloads/info4...llsWindow.html
It looks like people in the comments are saying they wished the addon did what I am requesting, so unfortunately it looks like there isn't an addon that shows levels of morphs, even when not activated.
  Reply With Quote
02/05/16, 12:37 PM   #4
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
To add it, addon need to have the skill unlockable, because the info isn't given, I'll maybe add it in some adon.. need to see how. or if someone wants to do this.
  Reply With Quote
02/05/16, 07:34 PM   #5
Godzynon
 
Godzynon's Avatar
Join Date: Sep 2015
Posts: 4
Originally Posted by Ayantir View Post
To add it, addon need to have the skill unlockable, because the info isn't given, I'll maybe add it in some adon.. need to see how. or if someone wants to do this.
I understand that the addon would have to "remember" the morphs it saw when they were active, and until that point it would have an "unknown" on that morph's level, but even just that would be useful. I would gladly go through all my skills to store that information in the addon.
  Reply With Quote
02/07/16, 04:06 AM   #6
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view addons
Join Date: May 2015
Posts: 23
I looked this up for a friend the other day. The only way to track it is to have the information by unlocking those skills in the first place, and then store it in SavedVariables. There's no way to get the level of a morph from the API -- it just gives you the rank of the skill instead, which is usually 4.
  Reply With Quote
02/07/16, 06:26 AM   #7
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
Just tried it and it really only returns data for the currently visible ability:
Lua Code:
  1. local function PrintAbilityInfo(abilityId)
  2.         local name = GetAbilityName(abilityId)
  3.         local icon = GetAbilityIcon(abilityId)
  4.         local hasProgression, progressionIndex, lastRankXp, nextRankXp, currentXp, atMorph = GetAbilityProgressionXPInfoFromAbilityId(abilityId)
  5.         if(hasProgression and nextRankXp > 0) then -- not maxed
  6.             local rank = GetAbilityProgressionRankFromAbilityId(abilityId)
  7.             local percent = currentXp / nextRankXp * 100
  8.             df("%d: %s |t100%%:100%%:%s|t: %d (%.2f%%)", abilityId, name, icon, rank, percent)
  9.             return GetAbilityProgressionAbilityId(progressionIndex, 1, 1), GetAbilityProgressionAbilityId(progressionIndex, 2, 1)
  10.         end
  11.     end
  12.  
  13.     for i = 1, GetNumAbilities() do
  14.         local morphA, morphB = PrintAbilityInfo(GetAbilityIdByIndex(i))
  15.         if(morphA) then PrintAbilityInfo(morphA) end
  16.         if(morphB) then PrintAbilityInfo(morphB) end
  17.     end
  Reply With Quote
02/08/16, 01:07 PM   #8
Tonyleila
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 288
Woud like to have an addon like this too. Woud be very usefull.
  Reply With Quote

ESOUI » AddOns » AddOn Search/Requests » An addon that shows what level the morphs of your skills are

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