About: USERAPI GetAuctionBuyout   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

GetAuctionBuyout is an API proposed by Tekkub as a standard for getting auction house buyout price recommendations from addons that are so capable. Here's a possible implementation that assumes you have an internal function call MyGetAuctionPriceByItemName. GetAuctionBuyout is supported by: * AuctionLite by Merial. * Auctionator by Zirco * AuctionMaster by Udorn

AttributesValues
rdfs:label
  • USERAPI GetAuctionBuyout
rdfs:comment
  • GetAuctionBuyout is an API proposed by Tekkub as a standard for getting auction house buyout price recommendations from addons that are so capable. Here's a possible implementation that assumes you have an internal function call MyGetAuctionPriceByItemName. GetAuctionBuyout is supported by: * AuctionLite by Merial. * Auctionator by Zirco * AuctionMaster by Udorn
dbkwik:wowwiki/pro...iPageUsesTemplate
abstract
  • GetAuctionBuyout is an API proposed by Tekkub as a standard for getting auction house buyout price recommendations from addons that are so capable. Here's a possible implementation that assumes you have an internal function call MyGetAuctionPriceByItemName. local origGetAuctionBuyout = GetAuctionBuyout; function GetAuctionBuyout(item) -- Tekkub's API local sellval; if (type(item) == "string" and MyGetAuctionPriceByItemName(item)) then sellval = MyGetAuctionPriceByItemName(item); end if (sellval == nil) then local name = GetItemInfo(item); if (name and MyGetAuctionPriceByItemName(name)) then sellval = MyGetAuctionPriceByItemName(name); end end if (sellval) then return sellval; end if (origGetAuctionBuyout) then return origGetAuctionBuyout(item); end return nil; end GetAuctionBuyout is supported by: * AuctionLite by Merial. * Auctionator by Zirco * AuctionMaster by Udorn
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software