taxidriveer / Examiner

Fan update for WoW Classic
https://www.curseforge.com/wow/addons/examiner
9 stars 9 forks source link

To inspect talents via Details #12

Closed IanByun closed 4 years ago

IanByun commented 4 years ago
  1. World of Warcraft/classic/Interface/AddOns/Examiner/Examiner.lua edit line number around 178 as follows
    function ex:PLAYER_TARGET_CHANGED(event)  
    if (cfg.autoInspect) and (UnitExists("target")) then  
        self:DoInspect("target");  
        Details:ShowTalentsPanel()
  2. (same file as 1) World of Warcraft/classic/Interface/AddOns/Examiner/Examiner.lua edit line number around 755 as follows
    if (openFlag ~= false) and (not self:IsShown()) then
    self:Display();
    InspectFrame = Examiner
    Details:ShowTalentsPanel()
    end
  3. (if using ExaminerButton) World of Warcraft/classic/Interface/AddOns/ExaminerButton/ExaminerButton.xml edit line number around 28, 68, 108 as follows
    InspectUnit("target");
    InspectFrame = Examiner
    Details:ShowTalentsPanel()
IanByun commented 4 years ago

result:

image

vanillalad commented 4 years ago

Thanks, been looking for this. I've tested it and everything works fine, switching targets etc.

Why not create a pull request with this fix?

IanByun commented 4 years ago

@vanillalad hey good thing you found it useful I use some modified version of Examiner, so I left as a note here rather than PR