view Plugins/AuctionAddons/Others.lua @ 118:de18ef96983b

Fixed issue with DataStore item count no including bank data.
author Zerotorescue
date Sat, 15 Jan 2011 16:24:39 +0100
parents 3bec0ea44607
children
line wrap: on
line source
do
	
	local function GetValue(link)
		return GetAuctionBuyout(link) or -1;
	end
	
	local function IsEnabled()
		return (GetAuctionBuyout);
	end
	
	IMRegisterPricingAddon("Others", GetValue, IsEnabled);
	
end