view Plugins/AuctionAddons/Others.lua @ 108:3688fdd14fef

Added tag v0.2.7-BETA for changeset aa675033abdc
author Zerotorescue
date Wed, 12 Jan 2011 20:09:11 +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