Download
(5Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 11-08-23 10:33 AM
Pictures
File Info
Compatibility:
Guardians of the Dream (10.2.0)
TBC Patch (2.5.4)
Updated:11-08-23 10:33 AM
Created:05-07-13 05:59 PM
Downloads:3,679
Favorites:20
MD5:

Juwe: Gem Stats instead of Names

Version: v5.0.2
by: Tonyleila, Haselnussbomber

Juwe
Juwe modifies the Recipe List and Auction House to replace gem names with their corresponding stats.
There is also a small [ J ] button which toggles the functionality to show the original gem names again.

Credits
Credits for the original code goes to p3lim.
Uploaded as addon by Tonyleila.
Maintained since Legion by Haselnussbomber.
Thank you!

GitHub Repository

Updated for Patch 10.2.0.
Archived Files (6)
File Name
Version
Size
Author
Date
v5.0.1
6kB
Tonyleila
07-12-23 03:34 PM
v5.0.0
5kB
Tonyleila
05-07-23 10:55 AM
v4.2.0
3kB
Tonyleila
12-01-22 11:33 AM
v4.1.0
4kB
Tonyleila
11-16-22 04:32 AM
v4.0.0
4kB
Tonyleila
10-27-22 01:02 PM
3.2.1-2
4kB
Tonyleila
05-18-22 12:45 PM


Post A Reply Comment Options
Unread 10-15-20, 02:32 AM  
Barleduq
Premium Member
 
Barleduq's Avatar
Premium Member

Forum posts: 135
File comments: 742
Uploads: 0
Thank you for updating!

I just want to say, thank you very much for continuing to update here on WoWInterface.com. It makes my addon experience very much more pleasant!

-Barleduq
Report comment to moderator  
Reply With Quote
Unread 06-26-19, 12:00 PM  
Haselnussbomber
Premium Member
 
Haselnussbomber's Avatar
Premium Member

Forum posts: 0
File comments: 2
Uploads: 0
Update for 8.2

Hey there,

i updated Juwe for Patch 8.2.

The reason is that GetItemInfo() returns the wrong Item Class ID for the new gems.
It should be 3 (the value of LE_ITEM_CLASS_GEM), but they return 7 (LE_ITEM_CLASS_TRADEGOODS) instead.

I've whitelisted the following gems manually inside the addon:

[Leviathan's Eye of Agility]
[Leviathan's Eye of Intellect]
[Leviathan's Eye of Strength]
[Masterful Sea Currant]
[Quick Sand Spinel]
[Deadly Lava Lazuli]
[Versatile Dark Opal]

Happy crafting!
Report comment to moderator  
Reply With Quote
Unread 08-12-18, 09:23 PM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Haselnussbomber

Thanks again for the update for BFA
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Unread 07-24-16, 08:06 PM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Re: Re: Current Legion prepatch lua error

Originally Posted by Haselnussbomber
Hey Tonyleila,

i had some time and updated Juwe for 7.0.3:
http://pastebin.com/raw/X9b0trG2

Thanks for this addon!
Hey! Thank you very much for the update! I added you to the team (in case anything else is broken in the future) and uploaded a new version!
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Unread 07-24-16, 09:57 AM  
Haselnussbomber
Premium Member
 
Haselnussbomber's Avatar
Premium Member

Forum posts: 0
File comments: 2
Uploads: 0
Re: Current Legion prepatch lua error

Hey Tonyleila,

i had some time and updated Juwe for 7.0.3:
http://pastebin.com/raw/X9b0trG2

Thanks for this addon!
Last edited by Haselnussbomber : 07-24-16 at 10:14 AM.
Report comment to moderator  
Reply With Quote
Unread 07-22-16, 02:41 PM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Current Legion prepatch lua error

Code:
1x Juwe\juwe-1.8.lua:69: hooksecurefunc(): TradeSkillFrame_Update is not a function
[C]: in function `hooksecurefunc'
Juwe\juwe-1.8.lua:69: in function <Juwe\juwe.lua:58>
[C]: in function `LoadAddOn'
FrameXML\UIParent.lua:391: in function `UIParentLoadAddOn'
FrameXML\UIParent.lua:450: in function `TradeSkillFrame_LoadUI'
FrameXML\UIParent.lua:1453: in function <FrameXML\UIParent.lua:891>

Locals:
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Last edited by Tonyleila : 07-22-16 at 02:41 PM.
Report comment to moderator  
Reply With Quote
Unread 04-14-14, 07:50 AM  
tednik
An Aku'mai Servant
 
tednik's Avatar
AddOn Author - Click to view AddOns

Forum posts: 33
File comments: 51
Uploads: 2
i play on the english client but i also use elv ui ill try turning off elv ui and see if that is the case

i got it working the button was so small that it was being hid behind the ackis recipe list button so i made some changes and moved the button placement

edit 2 the addon does not seem to work with the addon glyphed! turned on for to let you know

in red is what i changed

Code:
local f = CreateFrame('Frame')
f:RegisterEvent('ADDON_LOADED')
f:SetScript('OnEvent', function(self, event, name)
    if(name == 'Blizzard_TradeSkillUI') then
        button = CreateFrame('Button', 'SomeRandomButton123', TradeSkillFrame, 'UIPanelButtonTemplate')
        button:SetPoint('TOPRIGHT', TradeSkillFrameCloseButton, 'TOPLEFT', -35, -6)
        button:SetSize(40, 20)
        button:SetText('Stats')
        button:SetScript('OnClick', function()
            disabled = not disabled
            TradeSkillFrame_Update()
        end)

        hooksecurefunc('TradeSkillFrame_Update', Update)
    end
end)
Last edited by tednik : 04-14-14 at 09:17 PM.
Report comment to moderator  
Reply With Quote
Unread 04-14-14, 12:42 AM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Originally Posted by tednik
can anyone confirm if this is still working in 5.4.7 its in my addon list but no button in game or no change in jc window
It still works fine for me. Note it dosen't work for epic gems.

Mabye its your language? What client do you play on?
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Unread 04-13-14, 01:24 PM  
tednik
An Aku'mai Servant
 
tednik's Avatar
AddOn Author - Click to view AddOns

Forum posts: 33
File comments: 51
Uploads: 2
can anyone confirm if this is still working in 5.4.7 its in my addon list but no button in game or no change in jc window
Report comment to moderator  
Reply With Quote
Unread 05-24-13, 09:44 AM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Originally Posted by GeneralWurst
Hi,
tolles kleines addon nur hätte ich noch einen Wunsch. Wäre es möglich Juwe auch mit Skillet und Advanced Trade Skill Window zum laufen zu bringen?
Grüße
Bitte im Forum (auf englisch) an den Programierer deses addons wenden, da ich mich mit lua nicht so gut auskenne. Sollte jemand dort wissen wie man das in Juwe möglich machen kann sag mir bescheid.

http://www.wowinterface.com/forums/s...d.php?p=277730
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Unread 05-23-13, 08:26 AM  
GeneralWurst
A Defias Bandit

Forum posts: 2
File comments: 96
Uploads: 0
Hi,

tolles kleines addon nur hätte ich noch einen Wunsch. Wäre es möglich Juwe auch mit Skillet und Advanced Trade Skill Window zum laufen zu bringen?


Grüße
Report comment to moderator  
Reply With Quote
Unread 05-17-13, 02:01 AM  
Kendian
A Molten Giant
 
Kendian's Avatar
AddOn Author - Click to view AddOns

Forum posts: 614
File comments: 167
Uploads: 11
This is brilliant~

Nicht nachlassen!
__________________
Last edited by Kendian : 05-17-13 at 03:41 AM.
Report comment to moderator  
Reply With Quote
Unread 05-12-13, 06:01 AM  
Anja
A Fallenroot Satyr
 
Anja's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 37
Uploads: 3
der thread war mir bekannt, ich hatte auch versucht dir zu helfen
Report comment to moderator  
Reply With Quote
Unread 05-11-13, 05:56 PM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Originally Posted by Anja
ich hatte auch noch ein wenig rumgespielt, nur leider ist mein ergebnis nicht so wie ich es gerne hätte *g*
Dein ziel war es die Namen der Kategorien nach Gem Farbe zu färben?
Vielleicht kannst du mal hier im forum nachfragen ob jemand das für dich umsetzen kann dann werde ich das gerne ins addon integrieren
http://www.wowinterface.com/forums/s...d.php?p=277730
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Unread 05-11-13, 05:46 PM  
Anja
A Fallenroot Satyr
 
Anja's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 37
Uploads: 3
ich hatte auch noch ein wenig rumgespielt, nur leider ist mein ergebnis nicht so wie ich es gerne hätte *g*

Code:
if(button) then
            local stats = GetGemStats(button:GetID())
            if(stats) then			
                _G['TradeSkillSkill' .. buttonIndex .. 'Text']:SetText(sk_color..stats)
			else
				local title = _G['TradeSkillSkill' .. buttonIndex .. 'Text']:GetText();
				if (title == "Blaue Edelsteine") then
					sk_color = "|cFF417EB3 ";
				elseif (title == "Gelbe Edelsteine") then
					sk_color = "|cFFC7bE1A ";
				elseif (title == "Rote Edelsteine") then
					sk_color = "|cFFC71A1A ";
				elseif (title == "Orangefarbene Edelsteine") then
					sk_color = "|cFFC7821A ";
				elseif (title == "Gr\195\188ne Edelsteine") then
					sk_color = "|cFF3F942E ";
				elseif (title == "Violette Edelsteine") then
					sk_color = "|cFF942E91 ";
				end
			
			end
        end
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: