View Single Post
04/07/20, 07:51 PM   #6
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2016
Posts: 409
Put this code in some addon you use, and it will disable improving items to gold. Just remember where the code is!

local o = ImproveSmithing
Item

ImproveSmithingItem = function(...)local params = {...}
if GetItemQuality(params[1], params[2]) > 3 then
return
end
return o(...)
end

Last edited by Dolgubon : 04/07/20 at 08:10 PM.
  Reply With Quote