Auctioneer/Data file format/Orig Description
From Norganna's AddOns
Contents |
File sections
At a first look, even an unexperienced observer can identify different file sections top-level hierarchy:
- bids
- stats
- data
- filters
- classes
- info
- version
- fixedprice
- sbuy
- players
- snap
- SavedSearches
bids
We're detailing the section:
["bids"] = {
["ToonName1"] = {
["e1157189383"] = "10041:0:0:Dreamweave Circlet:1:50000:69900:2044848068
|50000|0|Hypericon|unknown",
},
["ToonName2"] = {
["e1152055419"] = "6037:0:0:Truesilver Bar:6:11000:11000:0|11000|1
|Snowman|unknown",
},
["ToonName3"] = {
["e1135332955"] = "7076:0:0:Essence of Earth:2:51200:100000:0|62000|0
|Blindmag|unknown",
},
["ToonName4"] = {
["e1146140186"] = "3020:0:0:Enduring Cap:1:15082:25000:0|25000|1
|Lolladinius|unknown",
},
},
There is one subsection for each toon that has scanned the Auction House.
The following explanation partially uses the faq for the tool Auctioneer2CVS (see this post on the forum). It was developed by Karavirs
["e1146140186"] = "3020:0:0:Enduring Cap:1:15082:25000:0|25000|1|Lolladinius|unknown",
The key portion of the entry comprises:
- e: The character "e" means Epoch
- 1146140186: A unix timestamp (see above link)
The value portion is a pipe seperated list of 5 pieces of data:
- 3020:0:0:Enduring Cap:1:15082:25000:0: This is the unique key that auctioneer uses to identify an individual auction (see AuctionSignature) It is comprised of the following identifiers, seperated by colon characters: itemID, randomPropertyID, enchantmentID, itemName, stackSize, minimumBidPrice, buyoutPrice, objectID
- 25000: The bid amount
- 1: A binary field representing if this bid constituted a buyout bid (1) or just an ordinary non-buyout bid (0)
- Lolladinius: The auctionOwner (the character which is auctioning the item)
- unknown: The current high bidder at the time of your bid (note: the server always returns "unknown" for this value, unless it's your auction)
stats
We're talking about:
["stats"] = {
["histcount"] = {
["Bronzebeard-Horde"] = {
["9774:1845:0"] = 1,
["1608:1806:0"] = 2,
},
["Sunstrider-Alliance"] = {
["16714:0:929"] = 3,
["1917:0:0"] = 0,
},
["Sunstrider-Neutral"] = {
["3927:0:0"] = 1,
["6037:0:0"] = 0,
},
},
["snapmed"] = {
["Bronzebeard-Horde"] = {
["9907:1964:0"] = 18324,
["7355:1956:0"] = 10000,
},
["Sunstrider-Alliance"] = {
["17011:0:0"] = 530000,
["15562:941:0"] = 10000,
},
["Sunstrider-Neutral"] = {
["10548:0:0"] = 50000,
["2749:0:0"] = 1200,
},
},
["histmed"] = {
["Bronzebeard-Horde"] = {
["1608:1806:0"] = 47500,
["16714:0:929"] = 210000,
},
["Sunstrider-Alliance"] = {
["11997:2112:0"] = 17500,
["18731:0:0"] = 11601.5,
},
["Sunstrider-Neutral"] = {
["3927:0:0"] = 600,
["10548:0:0"] = 40000,
},
},
["snapcount"] = {
["Bronzebeard-Horde"] = {
["14214:772:0"] = 1,
["15516:935:0"] = 1,
},
["Sunstrider-Alliance"] = {
["17011:0:0"] = 8,
["15562:941:0"] = 1,
},
["Sunstrider-Neutral"] = {
["12711:0:0"] = 1,
["2750:0:0"] = 5,
},
},
},
This section provides four subsections, which looks a bit messed up in the file, but I am going to re-sort them:
- histmed
- histcount
- snapmed
- snapcount
Each subsection provides realm-faction separated data.
histmed / snapmed
The *med subsections show medians for items.
Median prices are stored in the usual Auctioneer format, that is: you have to split it in three chunks, starting from right towards left, you will find:
- 2 chars is the copper value
- 2 chars is the silver value
- remaining chars are is the gold value
So, for example, ["9907:1964:0"] = 18324, means that item with ID "9907:1964:0" has a median price of 1 gold, 83 silver and 24 copper.
| Open Point: Don't understand what the row with ["18731:0:0"] = 11601.5, means... how could it be 0.5 copper? It's not fake data, I've extracted it from my own Auctioneer.lua file. This is because of the calculations made here. For example 5/2 would yield 2.5. Same with the median. |
histcount / snapcount
The *count subsections show counts (that is: times seen at AH) for items.
The section looks quite straightforward. So, for example, ["17011:0:0"] = 8, means that item with ID "17011:0:0" has been seen 8 times during last scan.
data
This section contains the most valuable data.
["data"] = {
["Bronzebeard-Horde"] = {
["4570:587:0"] = "13:13:18978:0:0:13:42337|1500x2:1600:2000x2:2950
:3000x3:3688:5000:6099:7000",
["19715:0:0"] = "7:7:830311:2:255200:7:991667|80000:100000x2:150000
:151667:160000:250000",
},
["Sunstrider-Alliance"] = {
["15215:1190:0"] = "11:11:348324:0:0:10:508776|27800:30000x3:40000:50000
:60000:66976:70000:104000",
["10376:1215:0"] = "17:17:552836:0:0:16:766840|25000:30000:32000:35000x2
:39000:40000:47040:57000:58800x2:59200:60000x3:70000",
},
["Sunstrider-Neutral"] = {
["12784:0:1900"] = "1:1:7509554:0:0:1:8000000|8000000",
["15610:856:0"] = "1:1:10000:0:0:1:10000|10000",
},
["Sunstrider-neutral"] = {
},
},
We have realm-faction subsections here too.
Data Format
Again a part of that was compiled from the faq for the Auctioneer2CVS tool.
["4570:587:0"] = "13:13:18978:0:0:13:42337|1500x2:1600:2000x2:2950:3000x3 :3688:5000:6099:7000"
- ["4570:587:0"]: Unique item-key existing out of itemID, randomPropertyID and enchantmentID In this case it points to an item which has not been included in the simplified data that is listed above (actually none of the data is pointing to one of the items listed, so no "live" example could be used. But if it had been ["10041:0:0"] it would have pointed to Dreamweave Circlet).
| To Do: Fix the sample data so that it is still consistent data |
- 13:13:18978:0:0:13:42337:
- 13 : Number of times seen by Auctioneer
- 13 : Number of times seen with a minimum bid price.
- 18978: Sum of the minimum bid-prices.
- 0 : Number of auctions with active bid.
- 0 : Sum of the active bid prices.
- 13 : Number of auctions with buyout price.
- 42337: Sum of the buyout prices.
- 1500x2:1600:2000x2:2950:3000x3:3688:5000:6099:7000: These are the prices seen by auctioneer. Auctioneer stores up to 35 recent scans. It stores the lowest price scanned first and than adds higher prices, thus you cannot say from this that the current value is 1500 or 7000. Thus Auctioneer has scanned for this item 15silver 0 copper for a stack of 2 (the "2x" string); 1x 16 silver; 2x 20 silver; 29silver 50 coppers; 3x 30 silver; 36 silver 88; 50 silver; 60 silver and 70 silver. But again this is not the sequence in which Auctioneer has scanned the values.
| Open Point: Some Auctioneer guru should confirm / correct the above, or remove this OpenPoint row if it's correct. |
| To Do: Enhance and correct |
filters
["filters"] = {
["pct-maxless"] = 30,
["scan-class1"] = "on",
["show-verbose"] = "on",
["pct-nocomp"] = 2,
["auction-click"] = "on",
["scan-class8"] = "on",
["scan-class2"] = "on",
["protect-window"] = 1,
["scan-class3"] = "on",
["show-stats"] = "on",
["scan-class10"] = "on",
["show-link"] = "off",
["autofill"] = "on",
["show-embed-blankline"] = "off",
["scan-class4"] = "on",
["scan-class5"] = "on",
["show-median"] = "on",
["pct-bidmarkdown"] = 20,
["scan-class6"] = "on",
["locale"] = "default",
["finish"] = 0,
["embed"] = "off",
["askprice-guild"] = "off",
["printframe"] = 1,
["askprice-vendor"] = "off",
["askprice-smart"] = "off",
["show-average"] = "on",
["pct-undermkt"] = 20,
["askprice-trigger"] = "?",
["askprice-party"] = "off",
["scan-class9"] = "on",
["auction-duration"] = 3,
["scan-class7"] = "on",
["last-auction-duration"] = 480,
["show-suggest"] = "on",
["also"] = "Sunstrider-Alliance",
["show-warning"] = "on",
["askprice-ad"] = "off",
["pct-markup"] = 300,
["askprice"] = "off",
["all"] = "on",
["pct-underlow"] = 5,
["warn-color"] = "on",
},
The section hosts Auctioneer user settings. Refer to Auctioneer/Commands for a description of their meaning.
classes
["classes"] = {
[1] = {
[1] = "One-Handed Axes",
[2] = "Two-Handed Axes",
[3] = "Bows",
[4] = "Guns",
[5] = "One-Handed Maces",
[6] = "Two-Handed Maces",
[7] = "Polearms",
[8] = "One-Handed Swords",
[9] = "Two-Handed Swords",
[10] = "Staves",
[11] = "Fist Weapons",
[12] = "Miscellaneous",
[13] = "Daggers",
[14] = "Thrown",
[15] = "Crossbows",
[16] = "Wands",
[17] = "Fishing Pole",
["name"] = "Weapon",
},
[2] = {
[1] = "Miscellaneous",
[2] = "Cloth",
[3] = "Leather",
[4] = "Mail",
[5] = "Plate",
[6] = "Shields",
[7] = "Librams",
[8] = "Idols",
[9] = "Totems",
["name"] = "Armor",
},
[3] = {
[1] = "Bag",
[2] = "Soul Bag",
[3] = "Herb Bag",
[4] = "Enchanting Bag",
["name"] = "Container",
},
[4] = {
["name"] = "Consumable",
},
[5] = {
["name"] = "Trade Goods",
},
[6] = {
[1] = "Arrow",
[2] = "Bullet",
["name"] = "Projectile",
},
[7] = {
[1] = "Quiver",
[2] = "Ammo Pouch",
["name"] = "Quiver",
},
[8] = {
[1] = "Book",
[2] = "Leatherworking",
[3] = "Tailoring",
[4] = "Engineering",
[5] = "Blacksmithing",
[6] = "Cooking",
[7] = "Alchemy",
[8] = "First Aid",
[9] = "Enchanting",
[10] = "Fishing",
["name"] = "Recipe",
},
[9] = {
["name"] = "Reagent",
},
[10] = {
["name"] = "Miscellaneous",
},
},
These values come from the category and sub-category listing on the left-hand side of the Auction House Search tab. They are used in the Info section to tell Auctioneer to what class-type the armor belongs
info
["info"] = {
["15350:1025:0"] = "2|Headhunter's Slippers of the Whale",
["9774:1845:0"] = "2|Greenweave Vest of Shadow Wrath",
},
This section gives Auctineer information of the name and class-type of the item.
- ["15350:1025:0"]: the unique item-key.
- 2: class-type, in this case armor. The sub-class is not displayed.
- Greenweave Vest of Shadow Wrath: name of the item
version
["version"] = 30600,
This means the file has been produced by Auctioneer versione 3.6
fixedprice
["fixedprice"] = {
["Bronzebeard-Horde"] = {
["3197:1203:0"] = "15000:20000:1:1440",
["12361:0:0"] = "40000:50000:1:120",
},
["Sunstrider-Alliance"] = {
["15275:1136:0"] = "62720:69000:1:480",
["13056:0:0"] = "120000:150000:1:1440",
},
["Sunstrider-Neutral"] = {
["12431:0:0"] = "30000:50000:3:480",
},
},
These are the user's custom prices, that is the prices set by hand by the user in the Post Auctions tab, setting fixed price in the Price Based On listbox and checking the Remember price checkbox. Refer to Autctioneer/Interface Usage for details.
So, for example, the row ["3197:1203:0"] = "15000:20000:1:1440", means:
- ["3197:1203:0"] is the item ID
- 15000 is the bid price
- 20000 is the buyout price
- 1 is the stack size, that is the number of items
- 1440 is the length of the auction, in minutes (1440=24 hours*60 minutes)
sbuy
["sbuy"] = {
["Bronzebeard-Horde"] = {
["14270:1884:0"] = 7315,
["10121:872:0"] = "30000x2",
["14047:0:0"] = "750x20:760x5:775:800x7:825:830x10:850x3:875x5:895
:900x12:950x5:975:1000x72:1010:1167:1250:3000:49500x3",
},
["Sunstrider-Alliance"] = {
["15350:1025:0"] = 14500,
["9920:216:0"] = "9000x2",
},
["Sunstrider-Neutral"] = {
["15226:678:0"] = "15500x2",
["21213:0:0"] = 2300,
},
},
There are realm-faction subsections.
| To Do: Someone completes this |
players
["players"] = {
[1] = "ToonName3",
[2] = "ToonName4",
[3] = "ToonName1",
[4] = "ToonName2",
},
This straightforward section contains the names of the playing characters of the account that this Auctioneer.lua file belongs to.
snap
Here's another core section of the file.
["snap"] = {
["Bronzebeard-Horde"] = {
[1] = {
["4567:93:0:Merc Sword of Agility:1:3356:4196:100604066"] = "0;0;11;2;4
;1157273766;1157273766;|cff1eff00|Hitem:4567:0:93:100604066
|h[Merc Sword of Agility]|h|r;Mutske",
["1722:0:0:Thornstone Sledgehammer:1:100000:100000:0"] = "0;0;37;3;4
;1157273761;1157273761;|cff0070dd|Hitem:1722:0:0:0
|h[Thornstone Sledgehammer]|h|r;Tolstop",
},
[2] = {
["9770:1954:0:Greenweave Cloak of Frozen Wrath:1:4524:4600:1400529338"]
= "0;0;15;2;4;1157273681;1157273681;|cff1eff00|Hitem:9770:0:1954
:1400529338|h[Greenweave Cloak of Frozen Wrath]|h|r;Skullcrasher",
["7051:0:0:Earthen Vest:1:9576:13720:358419206"] = "0;0;29;2;4
;1157273726;1157273726;|cff1eff00|Hitem:7051:0:0:358419206
|h[Earthen Vest]|h|r;Bolders",
},
[3] = {
["3914:0:0:Journeyman's Backpack:1:45060:50050:0"] = "0;0;1;1;1
;1157189311;1157273540;|cffffffff|Hitem:3914:0:0:0
|h[Journeyman's Backpack]|h|r;Daudur",
["14155:0:0:Mooncloth Bag:1:193600:229500:1983967582"] = "0;0;1;2;3
;1157273841;1157273841;|cff1eff00|Hitem:14155:0:0:1983967582
|h[Mooncloth Bag]|h|r;Tohtori",
},
[4] = {
["3388:0:0:Strong Troll's Blood Potion:5:9600:12000:921182658"] = "0;0
;15;1;4;1157273766;1157273766;|cffffffff|Hitem:3388:0:0:921182658
|h[Strong Troll's Blood Potion]|h|r;Bannyfatter",
["3829:0:0:Frost Oil:1:20225:25000:275441907"] = "0;0;30;1;4
;1157273706;1157273710;|cffffffff|Hitem:3829:0:0:275441907
|h[Frost Oil]|h|r;Bloodstain",
},
[5] = {
["2589:0:0:Linen Cloth:20:3090:6000:0"] = "0;0;1;1;3;1157273630
;1157273635;|cffffffff|Hitem:2589:0:0:0|h[Linen Cloth]|h|r;Corvax",
["2934:0:0:Ruined Leather Scraps:8:166:208:0"] = "0;0;1;1;4;1157273746
;1157273746;|cffffffff|Hitem:2934:0:0:0|h[Ruined Leather Scraps]
|h|r;Ceix",
},
[6] = {
["10512:0:0:Hi-Impact Mithril Slugs:200:3000:3500:1633370333"] = "0;0
;37;2;4;1157273836;1157273836;|cff1eff00|Hitem:10512:0:0:1633370333
|h[Hi-Impact Mithril Slugs]|h|r;Glanzkopf",
["15997:0:0:Thorium Shells:200:10000:15000:117907015"] = "0;0;52;2;2
;1157273545;1157273545;|cff1eff00|Hitem:15997:0:0:117907015
|h[Thorium Shells]|h|r;Afterswish",
},
[7] = {
["8218:0:0:Thick Leather Ammo Pouch:1:30000:40000:1378824204"] = "0;0
;40;2;4;1157189120;1157273710;|cff1eff00|Hitem:8218:0:0:1378824204
|h[Thick Leather Ammo Pouch]|h|r;Sake",
["8217:0:0:Quickdraw Quiver:1:17920:22400:91162115"] = "0;0;40;2;4
;1157273771;1157273771;|cff1eff00|Hitem:8217:0:0:91162115
|h[Quickdraw Quiver]|h|r;Wildox",
},
[8] = {
["21099:0:0:Recipe: Smoked Sagefish:1:5762:7203:0"] = "0;0;1;1;4
;1157273726;1157273726;|cffffffff|Hitem:21099:0:0:0
|h[Recipe: Smoked Sagefish]|h|r;Bolders",
["7360:0:0:Pattern: Dark Leather Gloves:1:600:0:0"] = "0;660;1;2;4
;1157273771;1157273771;|cff1eff00|Hitem:7360:0:0:0
|h[Pattern: Dark Leather Gloves]|h|r;Maximvs",
},
[9] = {
["7075:0:0:Core of Earth:1:5000:8000:0"] = "0;0;1;1;3;1157273610
;1157273610;|cffffffff|Hitem:7075:0:0:0|h[Core of Earth]|h|r;Exila",
["6358:0:0:Oily Blackmouth:17:20000:20000:0"] = "0;0;1;1;3;1157273626
;1157273626;|cffffffff|Hitem:6358:0:0:0|h[Oily Blackmouth]|h
|r;Loweedje",
},
[10] = {
["16648:0:0:Shredder Operating Manual - Page 4:1:900:1000:0"] = "0;0;1
;1;1;1157273781;1157273781;|cffffffff|Hitem:16648:0:0:0
|h[Shredder Operating Manual - Page 4]|h|r;Twobad",
["19231:0:0:Three of Beasts:1:38750:50000:0"] = "0;0;1;3;4;1157273821
;1157273821;|cff0070dd|Hitem:19231:0:0:0|h[Three of Beasts]|h
|r;Glaedy",
},
[0] = {
["19698:0:0:Zulian Coin:4:120100:120200:0"] = "0;0;1;2;4;1157273791
;1157273791;|cff1eff00|Hitem:19698:0:0:0|h[Zulian Coin]|h|r;Hswuyer",
["19704:0:0:Sandfury Coin:1:40000:40000:0"] = "0;0;1;2;4;1157273696
;1157273696;|cff1eff00|Hitem:19704:0:0:0|h[Sandfury Coin]|h|r;Cabor",
},
},
["Sunstrider-Alliance"] = {
[1] = {
["3184:2028:0:Hook Dagger of Healing:1:3500:5000:714563344"] = "0;0
;15;2;4;1157350903;1157350903;|cff1eff00|Hitem:3184:0:2028:714563344
|h[Hook Dagger of Healing]|h|r;Silfida",
["1722:0:0:Thornstone Sledgehammer:1:169110:170000:0"] = "0;0;37;3;3
;1157309249;1157350752;|cff0070dd|Hitem:1722:0:0:0
|h[Thornstone Sledgehammer]|h|r;Flashpower",
},
[2] = {
["7919:0:0:Heavy Mithril Gauntlet:1:3714:10000:1614179848"] = "0;3714
;40;2;4;1157350978;1157350978;|cff1eff00|Hitem:7919:0:0:1614179848
|h[Heavy Mithril Gauntlet]|h|r;Tinkerpan",
["2973:0:0:Hunting Tunic:1:1548:1936:0"] = "0;0;12;2;4;1157351088
;1157351088;|cff1eff00|Hitem:2973:0:0:0|h[Hunting Tunic]|h|r;Ethral",
},
[3] = {
["14155:0:0:Mooncloth Bag:1:160000:177500:1202964088"] = "0;0;1;2;4
;1157350983;1157350983;|cff1eff00|Hitem:14155:0:0:1202964088
|h[Mooncloth Bag]|h|r;Liris",
["22252:0:0:Satchel of Cenarius:1:440000:460000:952174904"] = "0;0;1;2
;3;1157309304;1157350783;|cff1eff00|Hitem:22252:0:0:952174904
|h[Satchel of Cenarius]|h|r;Hilikus",
},
[4] = {
["13457:0:0:Greater Fire Protection Potion:5:115625:120000:346081582"]
= "0;0;48;1;4;1157350978;1157350978;|cffffffff|Hitem:13457:0:0
:346081582|h[Greater Fire Protection Potion]|h|r;Erazor",
["12238:0:0:Darkshore Grouper:6:300:600:0"] = "0;0;5;1;4;1157309454
;1157350848;|cffffffff|Hitem:12238:0:0:0|h[Darkshore Grouper]|h
|r;Drdruid",
},
[5] = {
["2589:0:0:Linen Cloth:20:3090:5000:0"] = "0;0;1;1;4;1157350944
;1157350948;|cffffffff|Hitem:2589:0:0:0|h[Linen Cloth]|h
|r;Bennyborgers",
["4306:0:0:Silk Cloth:20:7000:8500:0"] = "0;0;1;1;4;1157351058
;1157351058;|cffffffff|Hitem:4306:0:0:0|h[Silk Cloth]|h|r;Hattab",
},
[6] = {
["10513:0:0:Mithril Gyro-Shot:200:4000:4000:1326874502"] = "0;0;44;2;3
;1157309264;1157350762;|cff1eff00|Hitem:10513:0:0:1326874502
|h[Mithril Gyro-Shot]|h|r;Silvanos",
["18042:0:0:Thorium Headed Arrow:200:8500:9800:705475044"] = "0;0;52;2
;3;1157309284;1157350768;|cff1eff00|Hitem:18042:0:0:705475044
|h[Thorium Headed Arrow]|h|r;Iwtm",
},
[7] = {
["7372:0:0:Heavy Leather Ammo Pouch:1:11532:14416:1098066620"] = "0;0
;30;2;4;1157351098;1157351098;|cff1eff00|Hitem:7372:0:0:1098066620
|h[Heavy Leather Ammo Pouch]|h|r;Wupzank",
["7279:0:0:Small Leather Ammo Pouch:1:1000:1500:53366864"] = "0;0;1;1
;4;1157351053;1157351053;|cffffffff|Hitem:7279:0:0:53366864
|h[Small Leather Ammo Pouch]|h|r;Zadrac",
},
[8] = {
["16113:0:0:Manual: Mageweave Bandage:1:19604:24505:0"] = "0;0;1;1;4
;1157350898;1157350898;|cffffffff|Hitem:16113:0:0:0
|h[Manual: Mageweave Bandage]|h|r;Sunstream",
["18333:0:0:Libram of Focus:1:200100:250000:0"] = "0;0;50;2;2
;1157351018;1157351018;|cff1eff00|Hitem:18333:0:0:0
|h[Libram of Focus]|h|r;Wissa",
},
[9] = {
["7972:0:0:Ichor of Undeath:6:6000:8000:0"] = "0;0;1;1;2;1157351028
;1157351028;|cffffffff|Hitem:7972:0:0:0|h[Ichor of Undeath]|h
|r;Disago",
["6359:0:0:Firefin Snapper:20:15000:20000:0"] = "0;0;1;1;4;1157309394
;1157350822;|cffffffff|Hitem:6359:0:0:0|h[Firefin Snapper]|h
|r;Magosreborn",
},
[10] = {
["22526:0:0:Bone Fragments:10:59999:59999:0"] = "0;0;1;1;3;1157309143
;1157350682;|cffffffff|Hitem:22526:0:0:0|h[Bone Fragments]|h
|r;Dwarfstrike",
["22609:0:0:Craftsman's Writ - Brightcloth Pants:1:4000:5000:567058840"]
= "0;0;55;1;4;1157309529;1157350882;|cffffffff|Hitem:22609:0:0
:567058840|h[Craftsman's Writ - Brightcloth Pants]|h
|r;Thunderslock",
},
[0] = {
["20860:0:0:Silver Scarab:1:40000:45000:0"] = "0;0;1;2;4;1157350983
;1157350983;|cff1eff00|Hitem:20860:0:0:0|h[Silver Scarab]|h
|r;Spalpognator",
["20881:0:0:Idol of Strife:1:250100:260000:0"] = "0;0;1;3;3;1157309314
;1157350788;|cff0070dd|Hitem:20881:0:0:0|h[Idol of Strife]|h
|r;Rapidu",
},
},
["Sunstrider-Neutral"] = {
[1] = {
["15226:1188:0:Giant Club of the Bear:1:28016:35020:831624198"] = "0;0
;32;2;4;1156282502;1156282502;|cff1eff00|Hitem:15226:0:1188
:831624198|h[Giant Club of the Bear]|h|r;Draly",
["15322:0:0:Smoothbore Gun:1:23664:29580:0"] = "0;0;34;2;4;1156282502
;1156282502;|cff1eff00|Hitem:15322:0:0:0|h[Smoothbore Gun]|h
|r;Draly",
},
[2] = {
["10383:1045:0:Commander's Pauldrons of the Whale:1:28781:40000
:261701972"] = "0;28781;56;2;2;1156282502;1156282502;|cff1eff00
|Hitem:10383:0:1045:261701972|h[Commander's Pauldrons of the Whale]
|h|r;Marshall",
["4732:0:0:Glyphed Cloak:1:3948:5000:0"] = "1;0;32;2;2;1139694391
;1139694391;|cff1eff00|Hitem:4732:0:0:0|h[Glyphed Cloak]|h|r;Bralin",
},
[3] = {
["4245:0:0:Small Silk Pack:1:3000:6000:302038752"] = "1;3000;1;1;3
;1139694391;1139694391;|cffffffff|Hitem:4245:0:0:302038752
|h[Small Silk Pack]|h|r;Dikkedwergin",
["4245:0:0:Small Silk Pack:1:3000:0:1196187008"] = "1;0;1;1;3
;1139694391;1139694391;|cffffffff|Hitem:4245:0:0:1196187008
|h[Small Silk Pack]|h|r;Dikkedwergin",
},
[4] = {
["6657:0:0:Savory Deviate Delight:5:20100:30000:1697661230"] = "0;0;1
;1;4;1156282502;1156282502;|cffffffff|Hitem:6657:0:0:1697661230
|h[Savory Deviate Delight]|h|r;Splitz",
["6657:0:0:Savory Deviate Delight:5:20100:30000:711677132"] = "0;0;1;1
;4;1156282502;1156282502;|cffffffff|Hitem:6657:0:0:711677132
|h[Savory Deviate Delight]|h|r;Splitz",
},
[5] = {
["10548:0:0:Sniper Scope:1:37500:37500:291086464"] = "1;0;40;1;4
;1141434532;1141434532;|cffffffff|Hitem:10548:0:0:291086464
|h[Sniper Scope]|h|r;unknown",
["16203:0:0:Greater Eternal Essence:1:39999:39999:0"] = "1;0;1;2;4
;1139694391;1139694391;|cff1eff00|Hitem:16203:0:0:0
|h[Greater Eternal Essence]|h|r;Yomon",
},
[8] = {
["18332:0:0:Libram of Rapidity:1:80000:100000:0"] = "0;0;50;2;4
;1156282502;1156282502;|cff1eff00|Hitem:18332:0:0:0
|h[Libram of Rapidity]|h|r;Deity",
["15752:0:0:Pattern: Living Leggings:1:37500:90000:0"] = "1;0;1;3;3
;1139694391;1139694391;|cff0070dd|Hitem:15752:0:0:0
|h[Pattern: Living Leggings]|h|r;Allemann",
},
[9] = {
},
[10] = {
["2725:0:0:Green Hills of Stranglethorn - Page 1:2:1125:2000:0"] = "1
;0;1;1;3;1139694391;1139694391;|cffffffff|Hitem:2725:0:0:0
|h[Green Hills of Stranglethorn - Page 1]|h|r;Dikkedwergin",
["2728:0:0:Green Hills of Stranglethorn - Page 4:1:562:1500:0"] = "1;0
;1;1;3;1139694391;1139694391;|cffffffff|Hitem:2728:0:0:0
|h[Green Hills of Stranglethorn - Page 4]|h|r;Dikkedwergin",
},
[0] = {
["12435:0:0:Ice Thistle E'ko:5:100000:150000:0"] = "1;0;1;1;4
;1139694391;1139694391;|cffffffff|Hitem:12435:0:0:0
|h[Ice Thistle E'ko]|h|r;Zurui",
["12219:0:0:Unadorned Seal of Ascension:1:80000:80000:0"] = "0;0;1;1;4
;1156282502;1156282502;|cffffffff|Hitem:12219:0:0:0
|h[Unadorned Seal of Ascension]|h|r;Nerzah",
},
},
},
The section has realm-faction subsections.
Each numbered subsection corresponds to the scan category as presented by the AH interface and stored locally in the classes sub-table. It stores the list of all the auction items scanned. According to Ticket nr.295, the format of each line should be:
["ItemID:RandomProp:Enchant:itemName:StackSize:MinBid:BuyoutPrice:ServerUniqID"] = "dirtyFlag;bidAmmount;itemLevel;itemQuality;timeLeft;firstSeen ;lastSeen;itemLink;auctionOwner",
Where
- ItemID: Unique ID per item.
- RandomProp: Random Property, makes up for "of the XXXXX".
- Enchant: magical properties, e.g., "+22 int".
- itemName: The item's localized name.
- MinBid & Buyout: respective prices, measured in copper units.
- ServerUniqID: A unique ID assigned by the server for some items.
- dirtyFlag: This is an internal binary flag that indicates whether or not this record was present in the last Scan performed. This should always be "0".
- bidAmmount: This is the current bid placed on the item, measured in copper.
- itemLevel: This is a number that represents the item's level requirement.
- itemQuality: This is a number that represents the item's quality. From 0 to 6 they are "Poor" (Gray), "Common" (White), "Uncommon" (Green), "Rare" (Blue), "Epic" (Purple), "Legendary" (Orange), "Artifact" (Gold)
- firstSeen: first time seen in the auction house, measured in seconds after epoch "Jan 1st 1970".
- lastSeen: last time seen in the auction house, measured like firstSeen.
- itemLink: This is a standard Blizzard ItemLink.
- auctionOwner: This is the item's seller.
SavedSearches
["SavedSearches"] = {
["Default Buyouts"] = "2 50000 50 1 1 ",
["Great Bids"] = "1 200000 50 2 1 1 ",
["Pure Income Bids"] = "1 400000 0 2 1 1 ",
["Competitors"] = "3 500",
["Pure Income Buyouts"] = "2 400000 0 1 1 ",
["Great Buyouts"] = "2 200000 50 1 1 ",
[""] = "1 5000 30 2 1 1 ",
["Default Bids"] = "1 50000 50 2 1 1 ",
},
This section contains the search parameters to be used in the Search Auctions tab, saved by the user. See Interface Usage for more details.
Final variables
AuctionPrices = nil AuctionBids = nil AHSnapshot = nil AHSnapshotItemPrices = nil
These are leftover variables from previous versions of Auctioneer. They are there just so the user has an option to convert or not when upgrading to a recent version of Auctioneer.