view Modules/ProspectMe_Value.lua @ 63:17897a788554 v2.7.1.2

Updated Auction API support to explicitly (instead of implicitly via Auctioneer API) work with TSM Fixed a bug that was left over from the transition to v2.
author Vynn <mischivin@gmail.com>
date Thu, 08 Dec 2016 23:04:44 -0500
parents 155fa49865f2
children
line wrap: on
line source
local function Initialize ()
	ProspectMe.GetItemValue = function (itemID)
		local v = nil
		
		if GetAuctionBuyout then -- if an installed addon supports Tekkub's GetAuctionBuyout API: Auctionator, AuctionLite, etc...
			v = GetAuctionBuyout(itemID)
		elseif TSMAPI then -- TSM's Support
    		v = TSMAPI:GetItemValue(itemID, "DBMinBuyout")
		elseif AucAdvanced then -- Auctioneer Support
			v = AucAdvanced.API.GetMarketValue(select(2, GetItemInfo(itemID)))
		end
		
		if v == nil then -- provides a failsafe if Auctioneer, etc is set to Load on Demand
			v = select(11, GetItemInfo(itemID))
		end
		
		if v == nil then -- provides a final failsafe - if we can't find anything, set it to 0 (TY peterwemm!)
			v = 0.0
		end

		return tonumber(v)
	end
end

local frame = CreateFrame("FRAME", "ProspectMe_Value")
frame:RegisterEvent("VARIABLES_LOADED")
--frame:SetScript("OnEvent", EventHandler)
frame:SetScript("OnEvent", Initialize)