Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
m (→‎External links: clean up, replaced: wowwiki.com/WoWWiki: → wowpedia.org/Wowpedia:)
 
(playerName changed from boolean to String.)
 
Line 1: Line 1:
  +
{{wowapi}}
−
<onlyinclude>{{tooltip
 
−
|mode={{{mode|}}}
 
−
|arg={{{arg|}}}
 
−
|durability=30
 
−
|sell={{cost||7|8}}
 
−
|armor=48
 
−
|icon=INV_Belt_02
 
−
|quality=Uncommon
 
−
|bind=BoE
 
−
|type=Leather
 
−
|slot=Waist
 
−
|itemid=9801
 
−
|ilvl=25
 
−
|name=Superior Belt
 
−
|level=20
 
−
|attrib=<span class="qc-uncommon">&lt;Random Enchantment&gt;</span>}}</onlyinclude>
 
   
  +
invoiceType, itemName, playerName, bid, buyout, deposit, consignment = GetInboxInvoiceInfo(index);
−
==Random enchantments==
 
−
{| class="darktable"
 
−
|-
 
−
!Item Suffix
 
−
!Stats Bonus
 
−
|-
 
−
| of Arcane Wrath
 
−
| +9-10 Arcane Spell Damage
 
−
|-
 
−
| of the Whale
 
−
| +4-5 Stamina, +4-5 Spirit
 
−
|-
 
−
| of the Owl
 
−
| +4-5 Intellect, +4-5 Spirit
 
−
|-
 
−
| of the Boar
 
−
| +4-5 Strength, +4-5 Spirit
 
−
|-
 
−
| of the Eagle
 
−
| +4-5 Intellect, +4-5 Stamina
 
−
|-
 
−
| of the Falcon
 
−
| +4-5 Intellect, +4-5 Agility
 
−
|-
 
−
| of Defense
 
−
| +6-7 Defense Rating
 
−
|-
 
−
| of Healing
 
−
| +13-15 Healing Spells and +5 Damage Spells
 
−
|-
 
−
| of the Bear
 
−
| +4-5 Stamina, +4-5 Strength
 
−
|-
 
−
| of the Tiger
 
−
| +4-5 Strength, +4-5 Agility
 
−
|-
 
−
| of the Wolf
 
−
| +4-5 Spirit, +4-5 Agility
 
−
|-
 
−
| of the Monkey
 
−
| +4-5 Stamina, +4-5 Agility
 
−
|-
 
−
| of Intellect
 
−
| +6-7 Intellect
 
−
|}
 
   
  +
Returns information about an auction house invoice.
   
  +
----
−
==Source==
 
  +
;''Arguments''
−
{{Stub/Item}}
 
   
  +
:(index)
−
==External links==
 
  +
:;index : Number - the index of the message (1 is the first message)
−
<!-- Read http://www.wowpedia.org/Wowpedia:External_links before posting your links here.
 
−
Links that do not conform to the rules will be DELETED.
 
−
Repeat violations may result in a BAN.
 
−
Have a nice day. :) -->
 
−
{{elinks-item|9801}}
 
   
  +
----
−
[[Category:World of Warcraft leather waist items]]
 
  +
;''Returns''
−
[[Category:World of Warcraft uncommon items]]
 
  +
  +
invoiceType, itemName, playerName, bid, buyout, deposit, consignment
  +
  +
:;invoiceType : String - type of invoice ("buyer", "seller", or "seller_temp_invoice").
  +
:;itemName : String - The name of the item sold/bought.
  +
:;playerName : String - The player that sold/bought the item.
  +
:;bid : Number - The amount of money bid on the item.
  +
:;buyout : Number - The amount of money set as buyout for the auction.
  +
:;deposit : Number - The amount paid as deposit for the auction.
  +
:;consignment : Number - The fee charged by the auction house for selling your consignment.
  +
  +
==Notes==
  +
  +
Patch 2.1 introduced a 1 hour delay on payment messages from the auction house, and in the meantime a message with subject "Sale Pending: [item name]" is sent to you with a 1 hour expiry. Although the message in the blizzard UI only shows the amount pending, the message can be queried with GetInboxInvoiceInfo() to determine the bid, buyout, deposit and consignment fee amounts, which can then be used to calculate the amount pending. This is useful, since GetInboxHeaderInfo() for that message (correctly) reports 0 money attached.

Revision as of 10:04, 4 November 2010

invoiceType, itemName, playerName, bid, buyout, deposit, consignment = GetInboxInvoiceInfo(index);

Returns information about an auction house invoice.


Arguments
(index)
index
Number - the index of the message (1 is the first message)

Returns

invoiceType, itemName, playerName, bid, buyout, deposit, consignment

invoiceType
String - type of invoice ("buyer", "seller", or "seller_temp_invoice").
itemName
String - The name of the item sold/bought.
playerName
String - The player that sold/bought the item.
bid
Number - The amount of money bid on the item.
buyout
Number - The amount of money set as buyout for the auction.
deposit
Number - The amount paid as deposit for the auction.
consignment
Number - The fee charged by the auction house for selling your consignment.

Notes

Patch 2.1 introduced a 1 hour delay on payment messages from the auction house, and in the meantime a message with subject "Sale Pending: [item name]" is sent to you with a 1 hour expiry. Although the message in the blizzard UI only shows the amount pending, the message can be queried with GetInboxInvoiceInfo() to determine the bid, buyout, deposit and consignment fee amounts, which can then be used to calculate the amount pending. This is useful, since GetInboxHeaderInfo() for that message (correctly) reports 0 money attached.