Thread Tools Display Modes
06/29/18, 01:13 AM   #1
Qhival
Join Date: Apr 2014
Posts: 2
Addon search / request

My wife just started playing, and I had no idea skills were locked & hidden now until you do specific things to unlock them. It really confused her.

Is there an addon that adds these locked skills to the skills window, perhaps greyed out and with a tooltip that explains how to unlock each skill? If not, I would like to request one. I posted a comment on harvens improved skills window, but it's been years since I was active, So I don't know if he is active anymore.
  Reply With Quote
06/29/18, 03:46 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
Afaik it's not possible to do this without rebuilding the whole game code like it was before they patched it to this disturbung way of skill "exploration"... And I can't think of any dev who would like to invest weeks to build and maintain this, sorry.

I used to write /bug into the chat ingame and told the game devs that this is wrong and annoys the users.
I also asked them to add more explanations and hints, that one realizes how it works (same with "you must wear at least 3 medium/light/heavy armor parts to unlock the armor skills...). It sucks in my opinion and users should be able to change this in the settings between "old way" and "new way".

I'd rather tell you to complain on the official forums as there are already ppl who do, and only the mass will make a change happen (maybe).
  Reply With Quote
06/29/18, 04:11 PM   #3
SilverWF
 
SilverWF's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 55
Yes, it's only ZOS can do.

You would be wondered, but they hid all skills just to... no confuse new players with such tons of skills
  Reply With Quote
06/30/18, 12:16 AM   #4
SDPhantom
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 47
I managed to hack GetSkillLineInfo() to have the UI show hidden skills. So far, the best way with the least work is to have it set the advised flag if a hidden skill has unlock instructions. Not all hidden skills do, but this too could be worked on. Unlock instructions seem to always be a string, either empty or containing text.

Lua Code:
  1. local GetSkillLineInfo=GetSkillLineInfo;
  2. function _G.GetSkillLineInfo(...)
  3.     local name,rank,avail,_1,advised,unlock,_2,_3=GetSkillLineInfo(...);
  4.     if not avail then advised=advised or unlock~=""; end
  5.     return name,rank,avail,_1,advised,unlock,_2,_3;
  6. end

_1, _2, and _3 are unused. _1 is a number while _2 and _3 are boolean. If I were to guess, I'd say _2 is if the skill can be discovered by the character and _3 is if it has been discovered. That would make _3 a duplicate of avail if so. I'll have to dig around old sources to be sure, if they were ever used at all.



Edit: Digging around, I found this. Guess that answers my question. Though active isn't set on a few hidden skills that should. Ledgermain, Vampire/Werewolf, Guilds, and AvA skills are ones that I found.
* GetSkillLineInfo(*[SkillType|#SkillType]* _skillType_, *luaindex* _skillIndex_)
** _Returns:_ *string* _name_, *luaindex* _rank_, *bool* _available_, *integer* _skillLineId_, *bool* _advised_, *string* _unlockText_, *bool* _active_, *bool* _discovered_

Last edited by SDPhantom : 06/30/18 at 02:09 AM.
  Reply With Quote

ESOUI » AddOns » AddOn Search/Requests » Addon search / request

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