Mercurial > wow > recipeprofit
changeset 36:1e73cfb6f363
Updated for 4.0.3 and GatherMate 2
| author | "Aaron Bregger <killermonkey99@gmail.com>" |
|---|---|
| date | Tue, 04 Jan 2011 17:49:34 -0600 |
| parents | 23b3fb8f7085 |
| children | 2891ad322db6 |
| files | RecipeProfit.toc core.lua db.lua location_cache.lua |
| diffstat | 4 files changed, 1542 insertions(+), 1679 deletions(-) [+] |
line wrap: on
line diff
--- a/RecipeProfit.toc Tue Jan 04 12:12:59 2011 -0600 +++ b/RecipeProfit.toc Tue Jan 04 17:49:34 2011 -0600 @@ -3,7 +3,7 @@ ## Notes: Use GatherMate to track Limited Supply Recipes ## Author: Vertebrate/Yuffles - Sargeras US ## Version: 3.3.5 -## Dependencies: GatherMate +## Dependencies: GatherMate2 ## SavedVariables: RECIPEPROFIT_profile core.lua
--- a/core.lua Tue Jan 04 12:12:59 2011 -0600 +++ b/core.lua Tue Jan 04 17:49:34 2011 -0600 @@ -24,7 +24,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with Foobar. If not, see <http://www.gnu.org/licenses/>. + along with this program. If not, see <http://www.gnu.org/licenses/>. Note: This program's source code is specifically designed to work with @@ -37,8 +37,10 @@ --]]--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--)) -local RecipeProfit = LibStub("AceAddon-3.0"):NewAddon("RecipeProfit", "AceEvent-3.0", "AceConsole-3.0") -local GatherMate = LibStub("AceAddon-3.0"):GetAddon("GatherMate") +local RecipeProfit = LibStub("AceAddon-3.0"):NewAddon("RecipeProfit", "AceEvent-3.0", "AceConsole-3.0", "AceTimer-3.0") + +local GatherMate = LibStub("AceAddon-3.0"):GetAddon("GatherMate2") + local tabletest = {} local db = {} local safeRecipes = {} @@ -90,88 +92,40 @@ end end -local defaultProfile = { - ["show"] = { - ["RecipeProfit"] = "always", - ["Herb Gathering"] = "never", - ["Extract Gas"] = "never", - ["Fishing"] = "never", - ["Mining"] = "never", - ["Treasure"] = "never", - }, - ["trackShow"] = "active", -} - local options = { type = "group", name = "RecipeProfit", -- addon name to import from, don't localize handler = {}, disabled = false, args = { - opt = { - order = 1, - name = "Select Database", - desc = "Show a different database", - type = "group", - guiInline = true, - args = { - faction = { - order = 0, - name = "Faction", - desc = "Show a different database.", - type = "select", - values = { - ["Alliance"] = "Alliance", - ["Horde"] = "Horde", - ["default"] = "Default", - }, - arg = "faction", - }, - - safeBuy = { - order = 1, - name = "Safe Recipe Buy", - desc = "Warn when buying a recipe not on the RecipeProfit list.", - type = "select", - values = { - --["on"] = "On", - ["off"]= "Off", - }, - arg = "safebuy", - }, - }, - get = function(k) return db.profile[k.arg]; end, - set = function(k, v) db.profile[k.arg] = v; RecipeProfit:DoMerge(); end, - }, - loadData = { - order = 8, - name = "Import Data", - desc = "Load RecipeProfit and import the data to your database.", - type = "execute", - func = function() - RecipeProfit:DoMerge() - end - }, - loadProfile = { - order = 9, - name = "Load RecipeProfit Profile", - desc = "Loads the RecipeProfit Profile into Gathermate for easy recipe tracking.", - type = "execute", - func = function() - GatherMate.db.profiles["RecipeProfit"] = GatherMate.db.profiles["RecipeProfit"] or {} - gmdb = GatherMate.db.profiles["RecipeProfit"] - for k, v in pairs(defaultProfile) do - gmdb[k] = v; - end - GatherMate:SendMessage("OnProfileChanged"); - GatherMate:GetModule("Config"):UpdateConfig() - GatherMate:SendMessage("GatherMateConfigChanged") - GatherMate.db:SetProfile("RecipeProfit") - end - }, + heading = { + order = 0, + type = "description", + name = "Thank you for using RecipeProfit for GatherMate!\n\n".. + "RecipeProfit was recently updated to work with patch 4.0.x and GatherMate 2. If you find any bugs you can report them on curse.com or curseforge.com by contacting the author 'Yuffles'. ".. + "You can also email the author at killermonkey99".. --[[anti-spambot]] "@".."gmail.com (please try to put \"RecipeProfit\" in the subject!)\n\n".. + "You can toggle the display of RecipeProfit nodes on the map and minimap by changing the options in the general GatherMate 2 menu.", + width = "full", + }, } } +--maps wowhead IDs to localization independant map ids O_O +local zidmap={[1]=27,[3]=17,[4]=19,[8]=38,[10]=34,[11]=40,[12]=30,[14]=4, + [15]=141,[16]=181,[17]=11,[28]=22,[33]=37,[38]=35,[40]=39,[41]=32,[44]=36, + [45]=16,[46]=29,[47]=26,[51]=28,[65]=488,[66]=496,[67]=495,[85]=20, + [130]=21,[139]=23,[141]=41,[148]=42,[210]=492,[215]=9,[267]=24,[331]=43, + [357]=121,[361]=182,[394]=490,[400]=61,[405]=101,[406]=81,[440]=161, + [490]=201,[493]=241,[495]=491,[616]=606,[618]=281,[1377]=261,[1497]=382, + [1519]=301,[1537]=341,[1637]=321,[1638]=362,[1657]=381,[3430]=462, + [3433]=463,[3483]=465,[3487]=480,[3518]=477,[3519]=478,[3520]=473, + [3521]=467,[3522]=475,[3523]=479,[3524]=464,[3525]=476,[3537]=486, + [3557]=471,[3703]=481,[3711]=493,[4080]=499,[4197]=501,[4395]=504, + [4709]=607,[4714]=545,[4720]=544,[4737]=605,[4755]=611,[4815]=610, + [4922]=700,[5034]=720,[5042]=640,[5095]=708,[5144]=615,[5145]=614, + [5146]=613,[5287]=673,[5339]=689,[5416]=737,[5630]=737,[5695]=772 +} + local defaults = { faction = "default", safebuy = "on", @@ -203,7 +157,7 @@ inject_options() GatherMate:GetModule("Config"):UpdateConfig() - GatherMate:GetModule("Config"):SendMessage("GatherMateConfigChanged") + GatherMate:GetModule("Config"):SendMessage("GatherMate2ConfigChanged") --[[ hook GetNameForNode for custom highlighting ]] local oldFunction = GatherMate.GetNameForNode @@ -216,11 +170,12 @@ end end - --[[ hook OnProfileChanged to fix cleanup database ]] + --[[hook OnProfileChanged to fix cleanup database ]] local oldFunction2 = GatherMate.OnProfileChanged GatherMate.OnProfileChanged = function(lself, ...) lself.db.profile.cleanupRange["RecipeProfit"] = lself.db.profile.cleanupRange["RecipeProfit"] or 15 + lself.db.profile.show["RecipeProfit"] = lself.db.profile.show["RecipeProfit"] == "never" and "never" or "always"; oldFunction2(lself, ...) end @@ -240,8 +195,8 @@ end function RecipeProfit:ShowOptions() - LibStub("AceConfigDialog-3.0"):Open("GatherMate") - LibStub("AceConfigDialog-3.0"):SelectGroup("GatherMate", "RecipeProfit") + InterfaceOptionsFrame_OpenToCategory("GatherMate 2") + LibStub("AceConfigDialog-3.0"):SelectGroup("GatherMate 2", "RecipeProfit") end function RecipeProfit:UpdateButtons(event, ...) @@ -273,16 +228,18 @@ function RecipeProfit:DoMerge() ids = {} - local selectedDB = get_faction_db(); + local alliance = get_faction_db(); GatherMate:ClearDB("RecipeProfit") - for id, note in pairs(selectedDB) do - x, y = find_good_id(note.x, note.y) - add_note(x, y, note) + for id, note in pairs(RECIPEPROFIT_database) do + if((note.a and alliance) or (note.h and not alliance)) then + x, y = find_good_id(note.x, note.y) + add_note(x, y, note) + end end GatherMate:SendMessage("GatherMateDataImport") - GatherMate:GetModule("Config"):SendMessage("GatherMateConfigChanged") + GatherMate:GetModule("Config"):SendMessage("GatherMate2ConfigChanged") end function get_note_title(note, factionTag) @@ -294,20 +251,26 @@ end function add_note(x, y, note) - local coords = GatherMate:getID(x / 100, y / 100) - local zoneID = GatherMate.zoneData[note.map][3] - local nodeID = GatherMate.nodeIDs["RecipeProfit"][get_note_title(note, factionTag)] + local coords = GatherMate.mapData:EncodeLoc(x/100, y/100, 0) + local zoneID = zidmap[note.map] + if(not zoneID) then + print("OMFG "..note.map) + return + end - GatherMate:InjectNode(zoneID, coords, "RecipeProfit", nodeID); + local nodeID = GatherMate.nodeIDs["RecipeProfit"][get_note_title(note, "")] + print(nodeID) + GatherMate:InjectNode(zoneID, coords, "RecipeProfit", nodeID) end function get_faction_db() local factionAlliance = db.profile.faction == "Alliance" or db.profile.faction == "default" and UnitFactionGroup("player") == "Alliance"; + if(factionAlliance) then - return RECIPEPROFIT_alliance, "A"; + return true, "" else - return RECIPEPROFIT_horde, "H"; + return false, "" end end @@ -374,17 +337,11 @@ GatherMate.nodeMinHarvest["RecipeProfit"] = {} local nodes = GatherMate.nodeIDs["RecipeProfit"] - for id, note in pairs(RECIPEPROFIT_alliance) do + for id, note in pairs(RECIPEPROFIT_database) do safeRecipes[note.item] = true; local id = get_next_texture_id(); - nodes[get_note_title(note, "A")] = id; - nodeLookup[id] = note; - end - - for id, note in pairs(RECIPEPROFIT_horde) do - safeRecipes[note.item] = true; - local id = get_next_texture_id(); - nodes[get_note_title(note, "H")] = id; + + nodes[get_note_title(note, "")] = id; nodeLookup[id] = note; end @@ -396,35 +353,29 @@ end function inject_options() - GatherMate:GetModule("Config").options.args.display.args.general.args.showGroup.args["showRecipeProfit"] = { - order = 6, + local acr = LibStub("AceConfigRegistry-3.0") + acr:GetOptionsTable("GatherMate 2", "dialog", "RecipeProfit-1.0").args["showRecipeProfit"] = { + order = 7, name = "Show RecipeProfit nodes.", desc = "Toggle showing nodes added by RecipeProfit.", type = "select", values = { - ["always"] = "Always show", - ["never"] = "Never show", + always = "Always show", + never = "Never show", }, arg = "RecipeProfit", } - GatherMate:GetModule("Config").options.args.display.args.general.args.iconGroup.args.tracking.args["showRecipeProfit"] = { - order = 6.5, - name = "RecipeProfit", - desc = "Color of the tracking circle.", - type = "color", - hasAlpha = true, - arg = "RecipeProfit", - } + GatherMate:GetModule("Config"):SendMessage("GatherMate2ConfigChanged") end --- TODO: Fix function get_colored_note_name(self, nodeID) local text = self.reverseNodeIDs["RecipeProfit"][nodeID] local sName, sLink, iRarity, iLevel, iMinLevel, sType, sSubType, iStackCount = GetItemInfo(nodeLookup[nodeID].itementry) if(not sLink) then - return text + RecipeProfit:ScheduleTimer("UpdateButtons", 3) + return "|cFF000000(??) |cFF66DD66" .. text .. "|cFFFF0000 Please Wait (Querying Server)..." end local count = GetItemCount(sLink, true)
--- a/db.lua Tue Jan 04 12:12:59 2011 -0600 +++ b/db.lua Tue Jan 04 17:49:34 2011 -0600 @@ -9,8 +9,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Goretusk Liver Pie', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -23,8 +23,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Redridge Goulash', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -37,8 +37,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Succulent Pork Ribs', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -51,8 +51,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Seasoned Wolf Kabob', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -65,8 +65,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Beer Basted Boar Ribs', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -79,8 +79,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Crocolisk Steak', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -93,8 +93,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Blood Sausage', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -107,8 +107,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Murloc Fin Soup', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -121,8 +121,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Crocolisk Gumbo', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -135,8 +135,8 @@ vendor = 'Keena', item = 'Recipe: Curiously Tasty Omelet', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -149,8 +149,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Curiously Tasty Omelet', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -163,8 +163,8 @@ vendor = 'Nerrist', item = 'Recipe: Curiously Tasty Omelet', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -177,8 +177,8 @@ vendor = 'Kendor Kabonka', item = 'Recipe: Gooey Spider Cake', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -191,8 +191,8 @@ vendor = 'Super-Seller 680', item = 'Recipe: Big Bear Steak', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -205,8 +205,8 @@ vendor = 'Vendor-Tron 1000', item = 'Recipe: Hot Lion Chops', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -219,8 +219,8 @@ vendor = 'Zargh', item = 'Recipe: Hot Lion Chops', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -233,8 +233,8 @@ vendor = 'Ghok\'kah', item = 'Pattern: Icy Cloak', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -247,8 +247,8 @@ vendor = 'Narj Deepslice', item = 'Recipe: Barbecued Buzzard Wing', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -261,8 +261,8 @@ vendor = 'Super-Seller 680', item = 'Recipe: Barbecued Buzzard Wing', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -275,8 +275,8 @@ vendor = 'Grimtak', item = 'Recipe: Scorpid Surprise', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -289,8 +289,8 @@ vendor = 'Wunna Darkmane', item = 'Recipe: Roasted Kodo Meat', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -303,8 +303,8 @@ vendor = 'Laird', item = 'Recipe: Fillet of Frenzy', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -317,8 +317,8 @@ vendor = 'Tari\'qa', item = 'Recipe: Strider Stew', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -331,8 +331,8 @@ vendor = 'Tari\'qa', item = 'Recipe: Crispy Lizard Tail', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -345,8 +345,8 @@ vendor = 'Vendor-Tron 1000', item = 'Recipe: Lean Venison', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -359,8 +359,8 @@ vendor = 'Heldan Galesong', item = 'Recipe: Clam Chowder', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -373,8 +373,8 @@ vendor = 'Kriggon Talsone', item = 'Recipe: Clam Chowder', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -387,8 +387,8 @@ vendor = 'Defias Profiteer', item = 'Recipe: Rage Potion', stock = 2, - a = True, - h = False + a = true, + h = false }, @@ -401,8 +401,8 @@ vendor = 'Hagrus', item = 'Recipe: Rage Potion', stock = 2, - a = False, - h = True + a = false, + h = true }, @@ -415,8 +415,8 @@ vendor = 'Ranik', item = 'Recipe: Rage Potion', stock = 2, - a = True, - h = True + a = true, + h = true }, @@ -429,8 +429,8 @@ vendor = 'Xandar Goodbeard', item = 'Recipe: Rage Potion', stock = 2, - a = True, - h = False + a = true, + h = false }, @@ -443,8 +443,8 @@ vendor = 'Kor\'geld', item = 'Recipe: Free Action Potion', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -457,8 +457,8 @@ vendor = 'Soolie Berryfizz', item = 'Recipe: Free Action Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -471,8 +471,8 @@ vendor = 'Ulthir', item = 'Recipe: Free Action Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -485,8 +485,8 @@ vendor = 'Hagrus', item = 'Recipe: Great Rage Potion', stock = 2, - a = False, - h = True + a = false, + h = true }, @@ -499,8 +499,8 @@ vendor = 'Ulthir', item = 'Recipe: Great Rage Potion', stock = 2, - a = True, - h = False + a = true, + h = false }, @@ -513,8 +513,8 @@ vendor = 'Andrew Hilbert', item = 'Pattern: Red Linen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -527,8 +527,8 @@ vendor = 'Gina MacGregor', item = 'Pattern: Red Linen Bag', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -541,8 +541,8 @@ vendor = 'Mahu', item = 'Pattern: Red Linen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -555,8 +555,8 @@ vendor = 'Rathis Tomber', item = 'Pattern: Red Linen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -569,8 +569,8 @@ vendor = 'Amy Davenport', item = 'Pattern: Red Woolen Bag', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -583,8 +583,8 @@ vendor = 'Borya', item = 'Pattern: Red Woolen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -597,8 +597,8 @@ vendor = 'Jennabink Powerseam', item = 'Pattern: Red Woolen Bag', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -611,8 +611,8 @@ vendor = 'Lizna Goldweaver', item = 'Pattern: Red Woolen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -625,8 +625,8 @@ vendor = 'Mahu', item = 'Pattern: Red Woolen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -639,8 +639,8 @@ vendor = 'Millie Gregorian', item = 'Pattern: Red Woolen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -653,8 +653,8 @@ vendor = 'Rann Flamespinner', item = 'Pattern: Red Woolen Bag', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -667,8 +667,8 @@ vendor = 'Wrahk', item = 'Pattern: Red Woolen Bag', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -681,8 +681,8 @@ vendor = 'Zixil', item = 'Pattern: Red Woolen Bag', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -695,8 +695,8 @@ vendor = 'Andrew Hilbert', item = 'Pattern: Murloc Scale Belt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -709,8 +709,8 @@ vendor = 'Gina MacGregor', item = 'Pattern: Murloc Scale Belt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -723,8 +723,8 @@ vendor = 'Mavralyn', item = 'Pattern: Murloc Scale Belt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -737,8 +737,8 @@ vendor = 'Andrew Hilbert', item = 'Pattern: Murloc Scale Breastplate', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -751,8 +751,8 @@ vendor = 'Gina MacGregor', item = 'Pattern: Murloc Scale Breastplate', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -765,8 +765,8 @@ vendor = 'Mavralyn', item = 'Pattern: Murloc Scale Breastplate', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -779,8 +779,8 @@ vendor = 'Blixrez Goodstitch', item = 'Pattern: Thick Murloc Armor', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -793,8 +793,8 @@ vendor = 'Christoph Jeffcoat', item = 'Pattern: Thick Murloc Armor', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -807,8 +807,8 @@ vendor = 'Blixrez Goodstitch', item = 'Pattern: Murloc Scale Bracers', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -821,8 +821,8 @@ vendor = 'Helenia Olden', item = 'Pattern: Murloc Scale Bracers', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -835,8 +835,8 @@ vendor = 'Hammon Karwn', item = 'Pattern: Barbaric Leggings', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -849,8 +849,8 @@ vendor = 'Keena', item = 'Pattern: Barbaric Leggings', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -863,8 +863,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Giant Clam Scorcho', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -877,8 +877,8 @@ vendor = 'Krinkle Goodsteel', item = 'Plans: Golden Scale Coif', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -891,8 +891,8 @@ vendor = 'Hula\'mahi', item = 'Recipe: Holy Protection Potion', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -905,8 +905,8 @@ vendor = 'Kzixx', item = 'Recipe: Holy Protection Potion', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -919,8 +919,8 @@ vendor = 'Xandar Goodbeard', item = 'Recipe: Holy Protection Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -933,8 +933,8 @@ vendor = 'Christoph Jeffcoat', item = 'Recipe: Shadow Protection Potion', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -947,8 +947,8 @@ vendor = 'Drovnar Strongbrew', item = 'Recipe: Frost Protection Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -961,8 +961,8 @@ vendor = 'Glyx Brewright', item = 'Recipe: Frost Protection Potion', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -975,8 +975,8 @@ vendor = 'Alchemist Pestlezugg', item = 'Recipe: Nature Protection Potion', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -989,8 +989,8 @@ vendor = 'Bronk', item = 'Recipe: Nature Protection Potion', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1003,8 +1003,8 @@ vendor = 'Glyx Brewright', item = 'Recipe: Nature Protection Potion', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -1017,8 +1017,8 @@ vendor = 'Logannas', item = 'Recipe: Nature Protection Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1031,8 +1031,8 @@ vendor = 'Montarr', item = 'Recipe: Shadow Oil', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1045,8 +1045,8 @@ vendor = 'Borya', item = 'Pattern: Blue Linen Vest', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1059,8 +1059,8 @@ vendor = 'Constance Brisboise', item = 'Pattern: Blue Linen Vest', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1073,8 +1073,8 @@ vendor = 'Lizna Goldweaver', item = 'Pattern: Blue Linen Vest', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1087,8 +1087,8 @@ vendor = 'Tharynn Bouden', item = 'Pattern: Blue Linen Vest', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1101,8 +1101,8 @@ vendor = 'Wrahk', item = 'Pattern: Blue Linen Vest', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1115,8 +1115,8 @@ vendor = 'Andrew Hilbert', item = 'Pattern: Blue Linen Robe', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1129,8 +1129,8 @@ vendor = 'Drake Lindgren', item = 'Pattern: Blue Linen Robe', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1143,8 +1143,8 @@ vendor = 'Elynna', item = 'Pattern: Blue Linen Robe', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1157,8 +1157,8 @@ vendor = 'Ranik', item = 'Pattern: Blue Linen Robe', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -1171,8 +1171,8 @@ vendor = 'Wrahk', item = 'Pattern: Blue Linen Robe', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1185,8 +1185,8 @@ vendor = 'Alexandra Bolero', item = 'Pattern: Blue Overalls', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1199,8 +1199,8 @@ vendor = 'Borya', item = 'Pattern: Blue Overalls', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1213,8 +1213,8 @@ vendor = 'Gina MacGregor', item = 'Pattern: Blue Overalls', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1227,8 +1227,8 @@ vendor = 'Lizna Goldweaver', item = 'Pattern: Blue Overalls', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1241,8 +1241,8 @@ vendor = 'Mallen Swain', item = 'Pattern: Blue Overalls', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1255,8 +1255,8 @@ vendor = 'Elynna', item = 'Pattern: Greater Adept\'s Robe', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1269,8 +1269,8 @@ vendor = 'Jennabink Powerseam', item = 'Pattern: Greater Adept\'s Robe', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1283,8 +1283,8 @@ vendor = 'Millie Gregorian', item = 'Pattern: Greater Adept\'s Robe', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1297,8 +1297,8 @@ vendor = 'Ranik', item = 'Pattern: Greater Adept\'s Robe', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -1311,8 +1311,8 @@ vendor = 'Rann Flamespinner', item = 'Pattern: Greater Adept\'s Robe', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1325,8 +1325,8 @@ vendor = 'Sheri Zipstitch', item = 'Pattern: Greater Adept\'s Robe', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1339,8 +1339,8 @@ vendor = 'Catherine Leland', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1353,8 +1353,8 @@ vendor = 'Gretta Ganter', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1367,8 +1367,8 @@ vendor = 'Harn Longcast', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1381,8 +1381,8 @@ vendor = 'Khara Deepwater', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1395,8 +1395,8 @@ vendor = 'Lizbeth Cromwell', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1409,8 +1409,8 @@ vendor = 'Martine Tramblay', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1423,8 +1423,8 @@ vendor = 'Nyoma', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1437,8 +1437,8 @@ vendor = 'Sewa Mistrunner', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1451,8 +1451,8 @@ vendor = 'Tharynn Bouden', item = 'Recipe: Brilliant Smallfish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1465,8 +1465,8 @@ vendor = 'Kriggon Talsone', item = 'Recipe: Slitherskin Mackerel', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1479,8 +1479,8 @@ vendor = 'Martine Tramblay', item = 'Recipe: Slitherskin Mackerel', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1493,8 +1493,8 @@ vendor = 'Nessa Shadowsong', item = 'Recipe: Slitherskin Mackerel', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1507,8 +1507,8 @@ vendor = 'Tansy Puddlefizz', item = 'Recipe: Slitherskin Mackerel', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1521,8 +1521,8 @@ vendor = 'Zansoa', item = 'Recipe: Slitherskin Mackerel', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1535,8 +1535,8 @@ vendor = 'Harn Longcast', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1549,8 +1549,8 @@ vendor = 'Khara Deepwater', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1563,8 +1563,8 @@ vendor = 'Killian Sanatha', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1577,8 +1577,8 @@ vendor = 'Lizbeth Cromwell', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1591,8 +1591,8 @@ vendor = 'Naal Mistrunner', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1605,8 +1605,8 @@ vendor = 'Nyoma', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1619,8 +1619,8 @@ vendor = 'Tansy Puddlefizz', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1633,8 +1633,8 @@ vendor = 'Tharynn Bouden', item = 'Recipe: Longjaw Mud Snapper', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1647,8 +1647,8 @@ vendor = 'Khara Deepwater', item = 'Recipe: Loch Frenzy Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1661,8 +1661,8 @@ vendor = 'Catherine Leland', item = 'Recipe: Bristle Whisker Catfish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1675,8 +1675,8 @@ vendor = 'Derak Nightfall', item = 'Recipe: Bristle Whisker Catfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1689,8 +1689,8 @@ vendor = 'Kilxx', item = 'Recipe: Bristle Whisker Catfish', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -1703,8 +1703,8 @@ vendor = 'Naal Mistrunner', item = 'Recipe: Bristle Whisker Catfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1717,8 +1717,8 @@ vendor = 'Ronald Burch', item = 'Recipe: Bristle Whisker Catfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1731,8 +1731,8 @@ vendor = 'Sewa Mistrunner', item = 'Recipe: Bristle Whisker Catfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1745,8 +1745,8 @@ vendor = 'Kithas', item = 'Formula: Enchant Chest - Lesser Mana', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1759,8 +1759,8 @@ vendor = 'Lilly', item = 'Formula: Enchant Chest - Lesser Mana', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1773,8 +1773,8 @@ vendor = 'Kithas', item = 'Formula: Enchant 2H Weapon - Lesser Intellect', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1787,8 +1787,8 @@ vendor = 'Leo Sarn', item = 'Formula: Enchant 2H Weapon - Lesser Intellect', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1801,8 +1801,8 @@ vendor = 'Nata Dawnstrider', item = 'Formula: Enchant 2H Weapon - Lesser Intellect', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -1815,8 +1815,8 @@ vendor = 'Tilli Thistlefuzz', item = 'Formula: Enchant 2H Weapon - Lesser Intellect', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -1829,8 +1829,8 @@ vendor = 'Catherine Leland', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1843,8 +1843,8 @@ vendor = 'Heldan Galesong', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1857,8 +1857,8 @@ vendor = 'Killian Sanatha', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1871,8 +1871,8 @@ vendor = 'Kilxx', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -1885,8 +1885,8 @@ vendor = 'Kriggon Talsone', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1899,8 +1899,8 @@ vendor = 'Nessa Shadowsong', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1913,8 +1913,8 @@ vendor = 'Ronald Burch', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1927,8 +1927,8 @@ vendor = 'Shankys', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1941,8 +1941,8 @@ vendor = 'Stuart Fleming', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1955,8 +1955,8 @@ vendor = 'Zansoa', item = 'Recipe: Rainbow Fin Albacore', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -1969,8 +1969,8 @@ vendor = 'Heldan Galesong', item = 'Recipe: Rockscale Cod', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -1983,8 +1983,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Rockscale Cod', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -1997,8 +1997,8 @@ vendor = 'Lizbeth Cromwell', item = 'Recipe: Rockscale Cod', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -2011,8 +2011,8 @@ vendor = 'Shankys', item = 'Recipe: Rockscale Cod', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -2025,8 +2025,8 @@ vendor = 'Stuart Fleming', item = 'Recipe: Rockscale Cod', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -2039,8 +2039,8 @@ vendor = 'Tansy Puddlefizz', item = 'Recipe: Rockscale Cod', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -2053,8 +2053,8 @@ vendor = 'Wik\'Tar', item = 'Recipe: Rockscale Cod', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -2067,8 +2067,8 @@ vendor = 'Wulan', item = 'Recipe: Rockscale Cod', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -2081,8 +2081,8 @@ vendor = 'Nata Dawnstrider', item = 'Formula: Enchant Boots - Minor Agility', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2095,8 +2095,8 @@ vendor = 'Zixil', item = 'Formula: Enchant Boots - Minor Agility', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2109,8 +2109,8 @@ vendor = 'Mallen Swain', item = 'Pattern: Dark Silk Shirt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2123,8 +2123,8 @@ vendor = 'Sheri Zipstitch', item = 'Pattern: Dark Silk Shirt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2137,8 +2137,8 @@ vendor = 'Kalldan Felmoon', item = 'Pattern: Deviate Scale Cloak', stock = 2, - a = True, - h = True + a = true, + h = true }, @@ -2151,8 +2151,8 @@ vendor = 'Kalldan Felmoon', item = 'Pattern: Deviate Scale Gloves', stock = 2, - a = True, - h = True + a = true, + h = true }, @@ -2165,8 +2165,8 @@ vendor = 'Andrew Hilbert', item = 'Recipe: Smoked Bear Meat', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -2179,8 +2179,8 @@ vendor = 'Drac Roughcut', item = 'Recipe: Smoked Bear Meat', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -2193,8 +2193,8 @@ vendor = 'Xizk Goodstitch', item = 'Pattern: Crimson Silk Cloak', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2207,8 +2207,8 @@ vendor = 'Vizzklick', item = 'Pattern: Crimson Silk Robe', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2221,8 +2221,8 @@ vendor = 'Jun\'ha', item = 'Pattern: Azure Silk Cloak', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2235,8 +2235,8 @@ vendor = 'Kireena', item = 'Pattern: Azure Silk Gloves', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2249,8 +2249,8 @@ vendor = 'Wenna Silkbeard', item = 'Pattern: Azure Silk Gloves', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2263,8 +2263,8 @@ vendor = 'Clyde Ranthal', item = 'Pattern: Black Whelp Cloak', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2277,8 +2277,8 @@ vendor = 'Wenna Silkbeard', item = 'Pattern: Red Whelp Gloves', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2291,8 +2291,8 @@ vendor = 'Harlown Darkweave', item = 'Pattern: Herbalist\'s Gloves', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2305,8 +2305,8 @@ vendor = 'Zixil', item = 'Pattern: Earthen Leather Shoulders', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2319,8 +2319,8 @@ vendor = 'Jangdor Swiftstrider', item = 'Pattern: Green Whelp Bracers', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2333,8 +2333,8 @@ vendor = 'Joseph Moore', item = 'Pattern: Green Whelp Bracers', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2347,8 +2347,8 @@ vendor = 'Pratt McGrubben', item = 'Pattern: Green Whelp Bracers', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2361,8 +2361,8 @@ vendor = 'Pratt McGrubben', item = 'Pattern: Green Whelp Bracers', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2375,8 +2375,8 @@ vendor = 'Saenorion', item = 'Pattern: Green Whelp Bracers', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2389,8 +2389,8 @@ vendor = 'Gearcutter Cogspinner', item = 'Schematic: Gnomish Universal Remote', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2403,8 +2403,8 @@ vendor = 'Jinky Twizzlefixxit', item = 'Schematic: Gnomish Universal Remote', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2417,8 +2417,8 @@ vendor = 'Kzixx', item = 'Schematic: Goblin Jumper Cables', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2431,8 +2431,8 @@ vendor = 'Zixil', item = 'Schematic: Goblin Jumper Cables', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2445,8 +2445,8 @@ vendor = 'George Candarte', item = 'Pattern: Green Leather Armor', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2459,8 +2459,8 @@ vendor = 'Wenna Silkbeard', item = 'Pattern: Green Leather Armor', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2473,8 +2473,8 @@ vendor = 'Zan Shivsproket', item = 'Schematic: Gnomish Cloaking Device', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2487,8 +2487,8 @@ vendor = 'Gharash', item = 'Plans: Mithril Scale Bracers', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2501,8 +2501,8 @@ vendor = 'Harggan', item = 'Plans: Mithril Scale Bracers', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2515,8 +2515,8 @@ vendor = 'Jangdor Swiftstrider', item = 'Pattern: Turtle Scale Gloves', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2529,8 +2529,8 @@ vendor = 'Pratt McGrubben', item = 'Pattern: Turtle Scale Gloves', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2543,8 +2543,8 @@ vendor = 'Pratt McGrubben', item = 'Pattern: Turtle Scale Gloves', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2557,8 +2557,8 @@ vendor = 'Jangdor Swiftstrider', item = 'Pattern: Nightscape Shoulders', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2571,8 +2571,8 @@ vendor = 'Nioma', item = 'Pattern: Nightscape Shoulders', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2585,8 +2585,8 @@ vendor = 'Nina Lightbrew', item = 'Recipe: Elixir of Demonslaying', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2599,8 +2599,8 @@ vendor = 'Rartar', item = 'Recipe: Elixir of Demonslaying', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2613,8 +2613,8 @@ vendor = 'Algernon', item = 'Recipe: Elixir of Shadow Power', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2627,8 +2627,8 @@ vendor = 'Maria Lumere', item = 'Recipe: Elixir of Shadow Power', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2641,8 +2641,8 @@ vendor = 'Bronk', item = 'Recipe: Ghost Dye', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2655,8 +2655,8 @@ vendor = 'Logannas', item = 'Recipe: Ghost Dye', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2669,8 +2669,8 @@ vendor = 'Alchemist Pestlezugg', item = 'Recipe: Philosopher\'s Stone', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -2683,8 +2683,8 @@ vendor = 'Alchemist Pestlezugg', item = 'Recipe: Transmute Iron to Gold', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -2697,8 +2697,8 @@ vendor = 'Alchemist Pestlezugg', item = 'Recipe: Transmute Mithril to Truesilver', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2711,8 +2711,8 @@ vendor = 'Elynna', item = 'Pattern: Orange Martial Shirt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2725,8 +2725,8 @@ vendor = 'Mahu', item = 'Pattern: Orange Martial Shirt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2739,8 +2739,8 @@ vendor = 'Borya', item = 'Pattern: Lavender Mageweave Shirt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2753,8 +2753,8 @@ vendor = 'Lizna Goldweaver', item = 'Pattern: Lavender Mageweave Shirt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2767,8 +2767,8 @@ vendor = 'Outfitter Eric', item = 'Pattern: Lavender Mageweave Shirt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2781,8 +2781,8 @@ vendor = 'Borya', item = 'Pattern: Pink Mageweave Shirt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2795,8 +2795,8 @@ vendor = 'Lizna Goldweaver', item = 'Pattern: Pink Mageweave Shirt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2809,8 +2809,8 @@ vendor = 'Outfitter Eric', item = 'Pattern: Pink Mageweave Shirt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2823,8 +2823,8 @@ vendor = 'Cowardly Crosby', item = 'Pattern: Admiral\'s Hat', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2837,8 +2837,8 @@ vendor = 'Millie Gregorian', item = 'Pattern: Tuxedo Shirt', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2851,8 +2851,8 @@ vendor = 'Outfitter Eric', item = 'Pattern: Tuxedo Shirt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2865,8 +2865,8 @@ vendor = 'Millie Gregorian', item = 'Pattern: Tuxedo Pants', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2879,8 +2879,8 @@ vendor = 'Outfitter Eric', item = 'Pattern: Tuxedo Pants', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2893,8 +2893,8 @@ vendor = 'Alexandra Bolero', item = 'Pattern: White Wedding Dress', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2907,8 +2907,8 @@ vendor = 'Mahu', item = 'Pattern: White Wedding Dress', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2921,8 +2921,8 @@ vendor = 'Millie Gregorian', item = 'Pattern: Tuxedo Jacket', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -2935,8 +2935,8 @@ vendor = 'Outfitter Eric', item = 'Pattern: Tuxedo Jacket', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -2949,8 +2949,8 @@ vendor = 'Knaz Blunderflame', item = 'Schematic: Deadly Scope', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2963,8 +2963,8 @@ vendor = 'Yuka Screwspigot', item = 'Schematic: Deadly Scope', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2977,8 +2977,8 @@ vendor = 'Yuka Screwspigot', item = 'Schematic: Deadly Scope', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -2991,8 +2991,8 @@ vendor = 'Jubie Gadgetspring', item = 'Schematic: Deepdive Helmet', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3005,8 +3005,8 @@ vendor = 'Kaye Toogie', item = 'Schematic: Mithril Mechanical Dragonling', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3019,8 +3019,8 @@ vendor = 'Ruppo Zipcoil', item = 'Schematic: Mithril Mechanical Dragonling', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3033,8 +3033,8 @@ vendor = 'Narkk', item = 'Pattern: Black Swashbuckler\'s Shirt', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3047,8 +3047,8 @@ vendor = 'High Admiral "Shelly" Jorrik', item = 'Plans: Solid Iron Maul', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3061,8 +3061,8 @@ vendor = 'Jannos Ironwill', item = 'Plans: Solid Iron Maul', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3075,8 +3075,8 @@ vendor = 'Jazzrik', item = 'Plans: Solid Iron Maul', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3089,8 +3089,8 @@ vendor = 'Muuran', item = 'Plans: Solid Iron Maul', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3103,8 +3103,8 @@ vendor = 'Dalria', item = 'Formula: Enchant Cloak - Minor Agility', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3117,8 +3117,8 @@ vendor = 'Kulwia', item = 'Formula: Enchant Cloak - Minor Agility', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3131,8 +3131,8 @@ vendor = 'Dalria', item = 'Formula: Enchant Bracer - Lesser Strength', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3145,8 +3145,8 @@ vendor = 'Kulwia', item = 'Formula: Enchant Bracer - Lesser Strength', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3159,8 +3159,8 @@ vendor = 'Keena', item = 'Formula: Enchant Bracer - Lesser Deflection', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3173,8 +3173,8 @@ vendor = 'Micha Yance', item = 'Formula: Enchant Bracer - Lesser Deflection', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3187,8 +3187,8 @@ vendor = 'Banalash', item = 'Formula: Enchant Bracer - Deflection', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3201,8 +3201,8 @@ vendor = 'Mythrin\'dir', item = 'Formula: Enchant Bracer - Deflection', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3215,8 +3215,8 @@ vendor = 'Jutak', item = 'Plans: Hardened Iron Shortsword', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3229,8 +3229,8 @@ vendor = 'Kaita Deepforge', item = 'Plans: Hardened Iron Shortsword', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3243,8 +3243,8 @@ vendor = 'Punra', item = 'Plans: Hardened Iron Shortsword', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3257,8 +3257,8 @@ vendor = 'Sumi', item = 'Plans: Hardened Iron Shortsword', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3271,8 +3271,8 @@ vendor = 'Zido Helmbreaker', item = 'Plans: Hardened Iron Shortsword', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3285,8 +3285,8 @@ vendor = 'Zarena Cromwind', item = 'Plans: Moonsteel Broadsword', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3299,8 +3299,8 @@ vendor = 'Jaquilina Dramet', item = 'Plans: Massive Iron Axe', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3313,8 +3313,8 @@ vendor = 'Vharr', item = 'Plans: Massive Iron Axe', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3327,8 +3327,8 @@ vendor = 'Abigail Shiel', item = 'Recipe: Crispy Bat Wing', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3341,8 +3341,8 @@ vendor = 'Super-Seller 680', item = 'Recipe: Lean Wolf Steak', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3355,8 +3355,8 @@ vendor = 'Corporal Bluth', item = 'Recipe: Roast Raptor', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3369,8 +3369,8 @@ vendor = 'Hammon Karwn', item = 'Recipe: Roast Raptor', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3383,8 +3383,8 @@ vendor = 'Helenia Olden', item = 'Recipe: Roast Raptor', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3397,8 +3397,8 @@ vendor = 'Keena', item = 'Recipe: Roast Raptor', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3411,8 +3411,8 @@ vendor = 'Nerrist', item = 'Recipe: Roast Raptor', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3425,8 +3425,8 @@ vendor = 'Ogg\'marr', item = 'Recipe: Roast Raptor', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3439,8 +3439,8 @@ vendor = 'Vendor-Tron 1000', item = 'Recipe: Roast Raptor', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3453,8 +3453,8 @@ vendor = 'Sheendra Tallgrass', item = 'Recipe: Hot Wolf Ribs', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3467,8 +3467,8 @@ vendor = 'Super-Seller 680', item = 'Recipe: Hot Wolf Ribs', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3481,8 +3481,8 @@ vendor = 'Vivianna', item = 'Recipe: Hot Wolf Ribs', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3495,8 +3495,8 @@ vendor = 'Corporal Bluth', item = 'Recipe: Jungle Stew', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3509,8 +3509,8 @@ vendor = 'Nerrist', item = 'Recipe: Jungle Stew', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3523,8 +3523,8 @@ vendor = 'Vendor-Tron 1000', item = 'Recipe: Jungle Stew', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3537,8 +3537,8 @@ vendor = 'Banalash', item = 'Recipe: Carrion Surprise', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3551,8 +3551,8 @@ vendor = 'Kireena', item = 'Recipe: Carrion Surprise', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3565,8 +3565,8 @@ vendor = 'Ogg\'marr', item = 'Recipe: Carrion Surprise', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3579,8 +3579,8 @@ vendor = 'Vendor-Tron 1000', item = 'Recipe: Carrion Surprise', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3593,8 +3593,8 @@ vendor = 'Helenia Olden', item = 'Recipe: Mystery Stew', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3607,8 +3607,8 @@ vendor = 'Janet Hommers', item = 'Recipe: Mystery Stew', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3621,8 +3621,8 @@ vendor = 'Super-Seller 680', item = 'Recipe: Mystery Stew', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3635,8 +3635,8 @@ vendor = 'Helenia Olden', item = 'Recipe: Dragonbreath Chili', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3649,8 +3649,8 @@ vendor = 'Ogg\'marr', item = 'Recipe: Dragonbreath Chili', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3663,8 +3663,8 @@ vendor = 'Super-Seller 680', item = 'Recipe: Dragonbreath Chili', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3677,8 +3677,8 @@ vendor = 'Janet Hommers', item = 'Recipe: Heavy Kodo Stew', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3691,8 +3691,8 @@ vendor = 'Kireena', item = 'Recipe: Heavy Kodo Stew', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3705,8 +3705,8 @@ vendor = 'Vendor-Tron 1000', item = 'Recipe: Heavy Kodo Stew', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3719,8 +3719,8 @@ vendor = 'Magnus Frostwake', item = 'Plans: Storm Gauntlets', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3733,8 +3733,8 @@ vendor = 'Alchemist Pestlezugg', item = 'Recipe: Transmute Arcanite', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3747,8 +3747,8 @@ vendor = 'Tunkk', item = 'Pattern: Raptor Hide Harness', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3761,8 +3761,8 @@ vendor = 'Androd Fadran', item = 'Pattern: Raptor Hide Belt', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3775,8 +3775,8 @@ vendor = 'Jinky Twizzlefixxit', item = 'Schematic: Lovingly Crafted Boomstick', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3789,8 +3789,8 @@ vendor = 'Mazk Snipeshot', item = 'Schematic: Accurate Scope', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3803,8 +3803,8 @@ vendor = 'Gnaz Blunderflame', item = 'Schematic: Mechanical Dragonling', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3817,8 +3817,8 @@ vendor = 'Kaye Toogie', item = 'Schematic: Mechanical Dragonling', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -3831,8 +3831,8 @@ vendor = 'Kor\'geld', item = 'Recipe: Elixir of Superior Defense', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -3845,8 +3845,8 @@ vendor = 'Soolie Berryfizz', item = 'Recipe: Elixir of Superior Defense', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -3859,8 +3859,8 @@ vendor = 'Gikkix', item = 'Recipe: Spotted Yellowtail', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3873,8 +3873,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Cooked Glossy Mightfish', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3887,8 +3887,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Filet of Redgill', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3901,8 +3901,8 @@ vendor = 'Gikkix', item = 'Recipe: Grilled Squid', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3915,8 +3915,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Hot Smoked Bass', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3929,8 +3929,8 @@ vendor = 'Gikkix', item = 'Recipe: Nightfin Soup', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3943,8 +3943,8 @@ vendor = 'Gikkix', item = 'Recipe: Poached Sunscale Salmon', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3957,8 +3957,8 @@ vendor = 'Sheendra Tallgrass', item = 'Recipe: Lobster Stew', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -3971,8 +3971,8 @@ vendor = 'Vivianna', item = 'Recipe: Lobster Stew', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -3985,8 +3985,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Mightfish Steak', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -3999,8 +3999,8 @@ vendor = 'Sheendra Tallgrass', item = 'Recipe: Mightfish Steak', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4013,8 +4013,8 @@ vendor = 'Vivianna', item = 'Recipe: Mightfish Steak', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4027,8 +4027,8 @@ vendor = 'Sheendra Tallgrass', item = 'Recipe: Baked Salmon', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4041,8 +4041,8 @@ vendor = 'Vivianna', item = 'Recipe: Baked Salmon', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4055,8 +4055,8 @@ vendor = 'Qia', item = 'Pattern: Runecloth Bag', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4069,8 +4069,8 @@ vendor = 'Darnall', item = 'Pattern: Runecloth Robe', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4083,8 +4083,8 @@ vendor = 'Lorelae Wintersong', item = 'Pattern: Felcloth Pants', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4097,8 +4097,8 @@ vendor = 'Qia', item = 'Pattern: Mooncloth', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -4111,8 +4111,8 @@ vendor = 'Danielle Zipstitch', item = 'Pattern: Bright Yellow Shirt', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -4125,8 +4125,8 @@ vendor = 'Xizk Goodstitch', item = 'Pattern: Enchanter\'s Cowl', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4139,8 +4139,8 @@ vendor = 'Bro\'kin', item = 'Recipe: Frost Oil', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4153,8 +4153,8 @@ vendor = 'Rikqiz', item = 'Pattern: Gem-Studded Leather Belt', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4167,8 +4167,8 @@ vendor = 'Gagsprocket', item = 'Schematic: Minor Recombobulator', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4181,8 +4181,8 @@ vendor = 'Zannok Hidepiercer', item = 'Pattern: Heavy Scorpid Bracers', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4195,8 +4195,8 @@ vendor = 'Leonard Porter', item = 'Pattern: Wicked Leather Gauntlets', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -4209,8 +4209,8 @@ vendor = 'Werg Thickblade', item = 'Pattern: Wicked Leather Gauntlets', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -4223,8 +4223,8 @@ vendor = 'Masat T\'andr', item = 'Pattern: Green Dragonscale Breastplate', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -4237,8 +4237,8 @@ vendor = 'Blimo Gadgetspring', item = 'Pattern: Chimeric Gloves', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -4251,8 +4251,8 @@ vendor = 'Jangdor Swiftstrider', item = 'Pattern: Living Shoulders', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -4265,8 +4265,8 @@ vendor = 'Pratt McGrubben', item = 'Pattern: Living Shoulders', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -4279,8 +4279,8 @@ vendor = 'Pratt McGrubben', item = 'Pattern: Living Shoulders', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -4293,8 +4293,8 @@ vendor = 'Qia', item = 'Pattern: Frostsaber Boots', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4307,8 +4307,8 @@ vendor = 'Leonard Porter', item = 'Pattern: Stormshroud Pants', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -4321,8 +4321,8 @@ vendor = 'Werg Thickblade', item = 'Pattern: Stormshroud Pants', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -4335,8 +4335,8 @@ vendor = 'Nergal', item = 'Pattern: Devilsaur Gauntlets', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4349,8 +4349,8 @@ vendor = 'Plugger Spazzring', item = 'Pattern: Black Dragonscale Breastplate', stock = 1, - a = False, - h = False + a = false, + h = false }, @@ -4363,8 +4363,8 @@ vendor = 'Zannok Hidepiercer', item = 'Pattern: Heavy Scorpid Helm', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4377,8 +4377,8 @@ vendor = 'Xizzer Fizzbolt', item = 'Schematic: Masterwork Target Dummy', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4391,8 +4391,8 @@ vendor = 'Xizzer Fizzbolt', item = 'Schematic: Delicate Arcanite Converter', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4405,8 +4405,8 @@ vendor = 'Kaye Toogie', item = 'Schematic: Arcanite Dragonling', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4419,8 +4419,8 @@ vendor = 'Bale', item = 'Recipe: Monster Omelet', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4433,8 +4433,8 @@ vendor = 'Himmik', item = 'Recipe: Monster Omelet', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -4447,8 +4447,8 @@ vendor = 'Malygen', item = 'Recipe: Monster Omelet', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4461,8 +4461,8 @@ vendor = 'Banalash', item = 'Recipe: Spiced Chili Crab', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4475,8 +4475,8 @@ vendor = 'Kriggon Talsone', item = 'Recipe: Spiced Chili Crab', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4489,8 +4489,8 @@ vendor = 'Uthok', item = 'Recipe: Spiced Chili Crab', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4503,8 +4503,8 @@ vendor = 'Qia', item = 'Formula: Enchant Chest - Major Health', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4517,8 +4517,8 @@ vendor = 'Lorelae Wintersong', item = 'Formula: Enchant Cloak - Superior Defense', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4531,8 +4531,8 @@ vendor = 'Lorelae Wintersong', item = 'Formula: Runed Arcanite Rod', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4545,8 +4545,8 @@ vendor = 'Jabbey', item = 'Recipe: Undermine Clam Chowder', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4559,8 +4559,8 @@ vendor = 'Heldan Galesong', item = 'Recipe: Mithril Head Trout', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4573,8 +4573,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Mithril Head Trout', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -4587,8 +4587,8 @@ vendor = 'Lizbeth Cromwell', item = 'Recipe: Mithril Head Trout', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4601,8 +4601,8 @@ vendor = 'Shankys', item = 'Recipe: Mithril Head Trout', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4615,8 +4615,8 @@ vendor = 'Stuart Fleming', item = 'Recipe: Mithril Head Trout', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4629,8 +4629,8 @@ vendor = 'Tansy Puddlefizz', item = 'Recipe: Mithril Head Trout', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4643,8 +4643,8 @@ vendor = 'Wik\'Tar', item = 'Recipe: Mithril Head Trout', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4657,8 +4657,8 @@ vendor = 'Wulan', item = 'Recipe: Mithril Head Trout', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4671,8 +4671,8 @@ vendor = 'Eebee Jinglepocket', item = 'Recipe: Gingerbread Cookie', stock = -1, - a = False, - h = False + a = false, + h = false }, @@ -4685,8 +4685,8 @@ vendor = 'Hotoppik Copperpinch', item = 'Recipe: Gingerbread Cookie', stock = -1, - a = False, - h = False + a = false, + h = false }, @@ -4699,8 +4699,8 @@ vendor = 'Khole Jinglepocket', item = 'Recipe: Gingerbread Cookie', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4713,8 +4713,8 @@ vendor = 'Nardstrum Copperpinch', item = 'Recipe: Gingerbread Cookie', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4727,8 +4727,8 @@ vendor = 'Penney Copperpinch', item = 'Recipe: Gingerbread Cookie', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4741,8 +4741,8 @@ vendor = 'Wolgren Jinglepocket', item = 'Recipe: Gingerbread Cookie', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4755,8 +4755,8 @@ vendor = 'Wulmort Jinglepocket', item = 'Recipe: Gingerbread Cookie', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -4769,8 +4769,8 @@ vendor = 'Eebee Jinglepocket', item = 'Recipe: Egg Nog', stock = -1, - a = False, - h = False + a = false, + h = false }, @@ -4783,8 +4783,8 @@ vendor = 'Hotoppik Copperpinch', item = 'Recipe: Egg Nog', stock = -1, - a = False, - h = False + a = false, + h = false }, @@ -4797,8 +4797,8 @@ vendor = 'Khole Jinglepocket', item = 'Recipe: Egg Nog', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4811,8 +4811,8 @@ vendor = 'Nardstrum Copperpinch', item = 'Recipe: Egg Nog', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4825,8 +4825,8 @@ vendor = 'Penney Copperpinch', item = 'Recipe: Egg Nog', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -4839,8 +4839,8 @@ vendor = 'Wolgren Jinglepocket', item = 'Recipe: Egg Nog', stock = -1, - a = False, - h = False + a = false, + h = false }, @@ -4853,8 +4853,8 @@ vendor = 'Wulmort Jinglepocket', item = 'Recipe: Egg Nog', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4867,8 +4867,8 @@ vendor = 'Dirge Quikcleave', item = 'Recipe: Tender Wolf Steak', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -4881,8 +4881,8 @@ vendor = 'Dirge Quikcleave', item = 'Recipe: Tender Wolf Steak', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -4895,8 +4895,8 @@ vendor = 'Innkeeper Fizzgrimble', item = 'Recipe: Tender Wolf Steak', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -4909,8 +4909,8 @@ vendor = 'Truk Wildbeard', item = 'Recipe: Tender Wolf Steak', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -4923,8 +4923,8 @@ vendor = 'Rikqiz', item = 'Pattern: Shadowskin Gloves', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4937,8 +4937,8 @@ vendor = 'Shen\'dralar Provisioner', item = 'Pattern: Mooncloth Robe', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4951,8 +4951,8 @@ vendor = 'Buckslappy', item = 'Schematic: Red Firework', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -4965,8 +4965,8 @@ vendor = 'Sovik', item = 'Schematic: Red Firework', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -4979,8 +4979,8 @@ vendor = 'Vizna Bangwrench', item = 'Schematic: Red Firework', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -4993,8 +4993,8 @@ vendor = 'Buckslappy', item = 'Schematic: Green Firework', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5007,8 +5007,8 @@ vendor = 'Crazk Sparks', item = 'Schematic: Green Firework', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5021,8 +5021,8 @@ vendor = 'Gagsprocket', item = 'Schematic: Green Firework', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5035,8 +5035,8 @@ vendor = 'Buckslappy', item = 'Schematic: Blue Firework', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5049,8 +5049,8 @@ vendor = 'Darian Singh', item = 'Schematic: Blue Firework', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -5063,8 +5063,8 @@ vendor = 'Gearcutter Cogspinner', item = 'Schematic: Blue Firework', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -5077,8 +5077,8 @@ vendor = 'Blizrik Buckshot', item = 'Schematic: EZ-Thro Dynamite II', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5091,8 +5091,8 @@ vendor = 'Buckslappy', item = 'Schematic: EZ-Thro Dynamite II', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5105,8 +5105,8 @@ vendor = 'Xizzer Fizzbolt', item = 'Schematic: Gyrofreeze Ice Reflector', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5119,8 +5119,8 @@ vendor = 'Xizzer Fizzbolt', item = 'Schematic: Powerful Seaforium Charge', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -5133,8 +5133,8 @@ vendor = 'Bombus Finespindle', item = 'Pattern: Heavy Leather Ball', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -5147,8 +5147,8 @@ vendor = 'Tamar', item = 'Pattern: Heavy Leather Ball', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -5161,8 +5161,8 @@ vendor = 'Joseph Moore', item = 'Pattern: Barbaric Bracers', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -5175,8 +5175,8 @@ vendor = 'Saenorion', item = 'Pattern: Barbaric Bracers', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -5189,8 +5189,8 @@ vendor = 'Ogg\'marr', item = 'Recipe: Heavy Crocolisk Stew', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5203,8 +5203,8 @@ vendor = 'Amy Davenport', item = 'Pattern: Black Whelp Tunic', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -5217,8 +5217,8 @@ vendor = 'Alys Vol\'tyr', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5231,8 +5231,8 @@ vendor = 'Apprentice of Estulan', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5245,8 +5245,8 @@ vendor = 'Asarnan', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5259,8 +5259,8 @@ vendor = 'Bradley Towns', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5273,8 +5273,8 @@ vendor = 'Dealer Malij', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5287,8 +5287,8 @@ vendor = 'Draelan', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5301,8 +5301,8 @@ vendor = 'Egomis', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5315,8 +5315,8 @@ vendor = 'Enchantress Andiala', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5329,8 +5329,8 @@ vendor = 'Erilia', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5343,8 +5343,8 @@ vendor = 'Felannia', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5357,8 +5357,8 @@ vendor = 'Ildine Sorrowspear', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5371,8 +5371,8 @@ vendor = 'Jessara Cordell', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5385,8 +5385,8 @@ vendor = 'Johan Barnes', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5399,8 +5399,8 @@ vendor = 'Kania', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5413,8 +5413,8 @@ vendor = 'Kithas', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5427,8 +5427,8 @@ vendor = 'Leo Sarn', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5441,8 +5441,8 @@ vendor = 'Librarian Erickson', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5455,8 +5455,8 @@ vendor = 'Lilly', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5469,8 +5469,8 @@ vendor = 'Lyna', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5483,8 +5483,8 @@ vendor = 'Madame Ruby', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5497,8 +5497,8 @@ vendor = 'Modoru', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5511,8 +5511,8 @@ vendor = 'Nata Dawnstrider', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5525,8 +5525,8 @@ vendor = 'Sarah Lightbrew', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5539,8 +5539,8 @@ vendor = 'Thaddeus Webb', item = 'Formula: Minor Mana Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5553,8 +5553,8 @@ vendor = 'Tilli Thistlefuzz', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5567,8 +5567,8 @@ vendor = 'Vaean', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5581,8 +5581,8 @@ vendor = 'Yurial Soulwater', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5595,8 +5595,8 @@ vendor = 'Zoey Wizzlespark', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5609,8 +5609,8 @@ vendor = 'Zurii', item = 'Formula: Minor Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5623,8 +5623,8 @@ vendor = 'Alys Vol\'tyr', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5637,8 +5637,8 @@ vendor = 'Apprentice of Estulan', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5651,8 +5651,8 @@ vendor = 'Asarnan', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5665,8 +5665,8 @@ vendor = 'Bradley Towns', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5679,8 +5679,8 @@ vendor = 'Dealer Malij', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5693,8 +5693,8 @@ vendor = 'Draelan', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5707,8 +5707,8 @@ vendor = 'Egomis', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5721,8 +5721,8 @@ vendor = 'Enchantress Andiala', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5735,8 +5735,8 @@ vendor = 'Erilia', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5749,8 +5749,8 @@ vendor = 'Felannia', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5763,8 +5763,8 @@ vendor = 'Ildine Sorrowspear', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5777,8 +5777,8 @@ vendor = 'Jessara Cordell', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5791,8 +5791,8 @@ vendor = 'Johan Barnes', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5805,8 +5805,8 @@ vendor = 'Kania', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5819,8 +5819,8 @@ vendor = 'Kithas', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5833,8 +5833,8 @@ vendor = 'Leo Sarn', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5847,8 +5847,8 @@ vendor = 'Librarian Erickson', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5861,8 +5861,8 @@ vendor = 'Lilly', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5875,8 +5875,8 @@ vendor = 'Lyna', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5889,8 +5889,8 @@ vendor = 'Madame Ruby', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -5903,8 +5903,8 @@ vendor = 'Modoru', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5917,8 +5917,8 @@ vendor = 'Nata Dawnstrider', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5931,8 +5931,8 @@ vendor = 'Sarah Lightbrew', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5945,8 +5945,8 @@ vendor = 'Thaddeus Webb', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -5959,8 +5959,8 @@ vendor = 'Tilli Thistlefuzz', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5973,8 +5973,8 @@ vendor = 'Vaean', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -5987,8 +5987,8 @@ vendor = 'Yurial Soulwater', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6001,8 +6001,8 @@ vendor = 'Zoey Wizzlespark', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6015,8 +6015,8 @@ vendor = 'Zurii', item = 'Formula: Lesser Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6029,8 +6029,8 @@ vendor = 'Kania', item = 'Formula: Lesser Mana Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6043,8 +6043,8 @@ vendor = 'Kania', item = 'Formula: Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6057,8 +6057,8 @@ vendor = 'Alys Vol\'tyr', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6071,8 +6071,8 @@ vendor = 'Apprentice of Estulan', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6085,8 +6085,8 @@ vendor = 'Asarnan', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6099,8 +6099,8 @@ vendor = 'Bradley Towns', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6113,8 +6113,8 @@ vendor = 'Dealer Malij', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6127,8 +6127,8 @@ vendor = 'Draelan', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6141,8 +6141,8 @@ vendor = 'Egomis', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6155,8 +6155,8 @@ vendor = 'Enchantress Andiala', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6169,8 +6169,8 @@ vendor = 'Erilia', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6183,8 +6183,8 @@ vendor = 'Felannia', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6197,8 +6197,8 @@ vendor = 'Ildine Sorrowspear', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6211,8 +6211,8 @@ vendor = 'Jessara Cordell', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6225,8 +6225,8 @@ vendor = 'Johan Barnes', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6239,8 +6239,8 @@ vendor = 'Kania', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6253,8 +6253,8 @@ vendor = 'Kithas', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6267,8 +6267,8 @@ vendor = 'Leo Sarn', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6281,8 +6281,8 @@ vendor = 'Librarian Erickson', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6295,8 +6295,8 @@ vendor = 'Lilly', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6309,8 +6309,8 @@ vendor = 'Lyna', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6323,8 +6323,8 @@ vendor = 'Madame Ruby', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6337,8 +6337,8 @@ vendor = 'Modoru', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6351,8 +6351,8 @@ vendor = 'Nata Dawnstrider', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6365,8 +6365,8 @@ vendor = 'Sarah Lightbrew', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6379,8 +6379,8 @@ vendor = 'Thaddeus Webb', item = 'Formula: Minor Wizard Oil', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6393,8 +6393,8 @@ vendor = 'Tilli Thistlefuzz', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6407,8 +6407,8 @@ vendor = 'Vaean', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6421,8 +6421,8 @@ vendor = 'Yurial Soulwater', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6435,8 +6435,8 @@ vendor = 'Zoey Wizzlespark', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6449,8 +6449,8 @@ vendor = 'Zurii', item = 'Formula: Minor Wizard Oil', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6463,8 +6463,8 @@ vendor = 'Arred', item = 'Design: Amulet of the Moon', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6477,8 +6477,8 @@ vendor = 'Daniel Bartlett', item = 'Design: Amulet of the Moon', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6491,8 +6491,8 @@ vendor = 'Gelanthis', item = 'Design: Amulet of the Moon', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6505,8 +6505,8 @@ vendor = 'Mythrin\'dir', item = 'Design: Amulet of the Moon', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6519,8 +6519,8 @@ vendor = 'Dalria', item = 'Design: Wicked Moonstone Ring', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6533,8 +6533,8 @@ vendor = 'Ranik', item = 'Design: Wicked Moonstone Ring', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -6547,8 +6547,8 @@ vendor = 'Arred', item = 'Design: Heavy Golden Necklace of Battle', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6561,8 +6561,8 @@ vendor = 'Edna Mullby', item = 'Design: Heavy Golden Necklace of Battle', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6575,8 +6575,8 @@ vendor = 'Felika', item = 'Design: Heavy Golden Necklace of Battle', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6589,8 +6589,8 @@ vendor = 'Gelanthis', item = 'Design: Heavy Golden Necklace of Battle', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6603,8 +6603,8 @@ vendor = 'Jandia', item = 'Design: Pendant of the Agate Shield', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6617,8 +6617,8 @@ vendor = 'Neal Allen', item = 'Design: Pendant of the Agate Shield', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6631,8 +6631,8 @@ vendor = 'Christoph Jeffcoat', item = 'Design: Heavy Iron Knuckles', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6645,8 +6645,8 @@ vendor = 'Micha Yance', item = 'Design: Heavy Iron Knuckles', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6659,8 +6659,8 @@ vendor = 'Kireena', item = 'Design: Blazing Citrine Ring', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6673,8 +6673,8 @@ vendor = 'Micha Yance', item = 'Design: Blazing Citrine Ring', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6687,8 +6687,8 @@ vendor = 'Arred', item = 'Design: The Jade Eye', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6701,8 +6701,8 @@ vendor = 'Burbik Gearspanner', item = 'Design: The Jade Eye', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -6715,8 +6715,8 @@ vendor = 'Felicia Doan', item = 'Design: The Jade Eye', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6729,8 +6729,8 @@ vendor = 'Gelanthis', item = 'Design: The Jade Eye', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -6743,8 +6743,8 @@ vendor = '"Chef" Overheat', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6757,8 +6757,8 @@ vendor = '"Cookie" McWeaksauce', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6771,8 +6771,8 @@ vendor = 'Derak Nightfall', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6785,8 +6785,8 @@ vendor = 'Desaan', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6799,8 +6799,8 @@ vendor = 'Emrul Riknussun', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6813,8 +6813,8 @@ vendor = 'Erika Tate', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6827,8 +6827,8 @@ vendor = 'Fyldan', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6841,8 +6841,8 @@ vendor = 'Gloria Femmel', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6855,8 +6855,8 @@ vendor = 'Jim Saltit', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6869,8 +6869,8 @@ vendor = 'Karizi Porkpatty', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6883,8 +6883,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -6897,8 +6897,8 @@ vendor = 'KTC Train-a-Tron Deluxe', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6911,8 +6911,8 @@ vendor = 'KTC Train-a-Tron Deluxe', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6925,8 +6925,8 @@ vendor = 'Master Chef Mouldier', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6939,8 +6939,8 @@ vendor = 'Micha Yance', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6953,8 +6953,8 @@ vendor = 'Moro Sungrain', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6967,8 +6967,8 @@ vendor = 'Naal Mistrunner', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -6981,8 +6981,8 @@ vendor = 'Nyoma', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -6995,8 +6995,8 @@ vendor = 'Otho Moji\'ko', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7009,8 +7009,8 @@ vendor = 'Phea', item = 'Recipe: Smoked Sagefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7023,8 +7023,8 @@ vendor = 'Provisioner Lorkran', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7037,8 +7037,8 @@ vendor = 'Quelis', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7051,8 +7051,8 @@ vendor = 'Ronald Burch', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7065,8 +7065,8 @@ vendor = 'Suja', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7079,8 +7079,8 @@ vendor = 'Tarban Hearthgrain', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7093,8 +7093,8 @@ vendor = 'Wulan', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7107,8 +7107,8 @@ vendor = 'Xen\'to', item = 'Recipe: Smoked Sagefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7121,8 +7121,8 @@ vendor = '"Chef" Overheat', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7135,8 +7135,8 @@ vendor = '"Cookie" McWeaksauce', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7149,8 +7149,8 @@ vendor = 'Derak Nightfall', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7163,8 +7163,8 @@ vendor = 'Desaan', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7177,8 +7177,8 @@ vendor = 'Emrul Riknussun', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7191,8 +7191,8 @@ vendor = 'Erika Tate', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7205,8 +7205,8 @@ vendor = 'Fyldan', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7219,8 +7219,8 @@ vendor = 'Gloria Femmel', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7233,8 +7233,8 @@ vendor = 'Jim Saltit', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7247,8 +7247,8 @@ vendor = 'Karizi Porkpatty', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7261,8 +7261,8 @@ vendor = 'Kelsey Yance', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7275,8 +7275,8 @@ vendor = 'KTC Train-a-Tron Deluxe', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7289,8 +7289,8 @@ vendor = 'KTC Train-a-Tron Deluxe', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7303,8 +7303,8 @@ vendor = 'Master Chef Mouldier', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7317,8 +7317,8 @@ vendor = 'Micha Yance', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7331,8 +7331,8 @@ vendor = 'Moro Sungrain', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7345,8 +7345,8 @@ vendor = 'Naal Mistrunner', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7359,8 +7359,8 @@ vendor = 'Nyoma', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7373,8 +7373,8 @@ vendor = 'Otho Moji\'ko', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7387,8 +7387,8 @@ vendor = 'Phea', item = 'Recipe: Sagefish Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7401,8 +7401,8 @@ vendor = 'Provisioner Lorkran', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7415,8 +7415,8 @@ vendor = 'Quelis', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7429,8 +7429,8 @@ vendor = 'Ronald Burch', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7443,8 +7443,8 @@ vendor = 'Suja', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7457,8 +7457,8 @@ vendor = 'Tarban Hearthgrain', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7471,8 +7471,8 @@ vendor = 'Wulan', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7485,8 +7485,8 @@ vendor = 'Xen\'to', item = 'Recipe: Sagefish Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7499,8 +7499,8 @@ vendor = 'Vizzklick', item = 'Pattern: Soul Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7513,8 +7513,8 @@ vendor = 'Deynna', item = 'Pattern: Bolt of Imbued Netherweave', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7527,8 +7527,8 @@ vendor = 'Eiin', item = 'Pattern: Bolt of Imbued Netherweave', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7541,8 +7541,8 @@ vendor = 'Neii', item = 'Pattern: Bolt of Imbued Netherweave', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7555,8 +7555,8 @@ vendor = 'Eiin', item = 'Pattern: Imbued Netherweave Bag', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7569,8 +7569,8 @@ vendor = 'Mathar G\'ochar', item = 'Pattern: Imbued Netherweave Bag', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7583,8 +7583,8 @@ vendor = 'Borto', item = 'Pattern: Bolt of Soulcloth', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7597,8 +7597,8 @@ vendor = 'Deynna', item = 'Pattern: Bolt of Soulcloth', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7611,8 +7611,8 @@ vendor = 'Mathar G\'ochar', item = 'Pattern: Bolt of Soulcloth', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7625,8 +7625,8 @@ vendor = 'Neii', item = 'Pattern: Bolt of Soulcloth', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7639,8 +7639,8 @@ vendor = 'Ainderu Summerleaf', item = 'Pattern: Primal Mooncloth', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7653,8 +7653,8 @@ vendor = 'Nasmara Moonsong', item = 'Pattern: Primal Mooncloth', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7667,8 +7667,8 @@ vendor = 'Deynna', item = 'Pattern: Netherweave Robe', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7681,8 +7681,8 @@ vendor = 'Eiin', item = 'Pattern: Netherweave Robe', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7695,8 +7695,8 @@ vendor = 'Neii', item = 'Pattern: Netherweave Robe', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7709,8 +7709,8 @@ vendor = 'Deynna', item = 'Pattern: Netherweave Tunic', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -7723,8 +7723,8 @@ vendor = 'Eiin', item = 'Pattern: Netherweave Tunic', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -7737,8 +7737,8 @@ vendor = 'Neii', item = 'Pattern: Netherweave Tunic', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -7751,8 +7751,8 @@ vendor = 'Muheru the Weaver', item = 'Pattern: Imbued Netherweave Pants', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7765,8 +7765,8 @@ vendor = 'Zurai', item = 'Pattern: Imbued Netherweave Pants', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7779,8 +7779,8 @@ vendor = 'Muheru the Weaver', item = 'Pattern: Imbued Netherweave Boots', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7793,8 +7793,8 @@ vendor = 'Zurai', item = 'Pattern: Imbued Netherweave Boots', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7807,8 +7807,8 @@ vendor = 'Arrond', item = 'Pattern: Imbued Netherweave Robe', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -7821,8 +7821,8 @@ vendor = 'Arrond', item = 'Pattern: Imbued Netherweave Tunic', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -7835,8 +7835,8 @@ vendor = 'Borto', item = 'Pattern: Soulcloth Gloves', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7849,8 +7849,8 @@ vendor = 'Mathar G\'ochar', item = 'Pattern: Soulcloth Gloves', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7863,8 +7863,8 @@ vendor = 'Banalash', item = 'Design: Black Pearl Panther', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7877,8 +7877,8 @@ vendor = 'Helenia Olden', item = 'Design: Black Pearl Panther', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7891,8 +7891,8 @@ vendor = 'Hammon Karwn', item = 'Design: Ruby Crown of Restoration', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7905,8 +7905,8 @@ vendor = 'Keena', item = 'Design: Ruby Crown of Restoration', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7919,8 +7919,8 @@ vendor = 'Helenia Olden', item = 'Design: Truesilver Crab', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7933,8 +7933,8 @@ vendor = 'Nerrist', item = 'Design: Truesilver Crab', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7947,8 +7947,8 @@ vendor = 'Arred', item = 'Design: Opal Necklace of Impact', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7961,8 +7961,8 @@ vendor = 'Burbik Gearspanner', item = 'Design: Opal Necklace of Impact', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -7975,8 +7975,8 @@ vendor = 'Gelanthis', item = 'Design: Opal Necklace of Impact', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -7989,8 +7989,8 @@ vendor = 'Shadi Mistrunner', item = 'Design: Opal Necklace of Impact', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8003,8 +8003,8 @@ vendor = 'Mishta', item = 'Design: Emerald Crown of Destruction', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8017,8 +8017,8 @@ vendor = 'Jase Farlane', item = 'Design: Ring of Bitter Shadows', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8031,8 +8031,8 @@ vendor = 'Qia', item = 'Design: Necklace of the Diamond Tower', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8045,8 +8045,8 @@ vendor = 'Alys Vol\'tyr', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8059,8 +8059,8 @@ vendor = 'Apprentice of Estulan', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8073,8 +8073,8 @@ vendor = 'Asarnan', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8087,8 +8087,8 @@ vendor = 'Bradley Towns', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8101,8 +8101,8 @@ vendor = 'Dealer Malij', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8115,8 +8115,8 @@ vendor = 'Draelan', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8129,8 +8129,8 @@ vendor = 'Egomis', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8143,8 +8143,8 @@ vendor = 'Enchantress Andiala', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8157,8 +8157,8 @@ vendor = 'Erilia', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8171,8 +8171,8 @@ vendor = 'Felannia', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8185,8 +8185,8 @@ vendor = 'Ildine Sorrowspear', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8199,8 +8199,8 @@ vendor = 'Jessara Cordell', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8213,8 +8213,8 @@ vendor = 'Johan Barnes', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8227,8 +8227,8 @@ vendor = 'Kania', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8241,8 +8241,8 @@ vendor = 'Kithas', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8255,8 +8255,8 @@ vendor = 'Leo Sarn', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8269,8 +8269,8 @@ vendor = 'Librarian Erickson', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8283,8 +8283,8 @@ vendor = 'Lilly', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8297,8 +8297,8 @@ vendor = 'Lyna', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8311,8 +8311,8 @@ vendor = 'Madame Ruby', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8325,8 +8325,8 @@ vendor = 'Modoru', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8339,8 +8339,8 @@ vendor = 'Nata Dawnstrider', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8353,8 +8353,8 @@ vendor = 'Sarah Lightbrew', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8367,8 +8367,8 @@ vendor = 'Thaddeus Webb', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8381,8 +8381,8 @@ vendor = 'Tilli Thistlefuzz', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8395,8 +8395,8 @@ vendor = 'Vaean', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8409,8 +8409,8 @@ vendor = 'Yurial Soulwater', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8423,8 +8423,8 @@ vendor = 'Zoey Wizzlespark', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8437,8 +8437,8 @@ vendor = 'Zurii', item = 'Pattern: Enchanted Mageweave Pouch', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8451,8 +8451,8 @@ vendor = 'Kania', item = 'Pattern: Enchanted Runecloth Bag', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8465,8 +8465,8 @@ vendor = 'Egomis', item = 'Formula: Superior Mana Oil', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8479,8 +8479,8 @@ vendor = 'Lyna', item = 'Formula: Superior Mana Oil', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8493,8 +8493,8 @@ vendor = 'Madame Ruby', item = 'Formula: Superior Mana Oil', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8507,8 +8507,8 @@ vendor = 'Egomis', item = 'Formula: Superior Wizard Oil', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8521,8 +8521,8 @@ vendor = 'Lyna', item = 'Formula: Superior Wizard Oil', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8535,8 +8535,8 @@ vendor = 'Madame Ruby', item = 'Formula: Superior Wizard Oil', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8549,8 +8549,8 @@ vendor = 'Egomis', item = 'Formula: Large Prismatic Shard', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8563,8 +8563,8 @@ vendor = 'Lyna', item = 'Formula: Large Prismatic Shard', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8577,8 +8577,8 @@ vendor = 'Madame Ruby', item = 'Formula: Large Prismatic Shard', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8591,8 +8591,8 @@ vendor = 'Fazu', item = 'Recipe: Crunchy Spider Surprise', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -8605,8 +8605,8 @@ vendor = 'Master Chef Mouldier', item = 'Recipe: Crunchy Spider Surprise', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -8619,8 +8619,8 @@ vendor = 'Alchemist Gribble', item = 'Recipe: Elixir of Camouflage', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8633,8 +8633,8 @@ vendor = 'Altaa', item = 'Recipe: Elixir of Camouflage', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8647,8 +8647,8 @@ vendor = 'Apothecary Antonivich', item = 'Recipe: Elixir of Camouflage', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8661,8 +8661,8 @@ vendor = 'Melaris', item = 'Recipe: Elixir of Camouflage', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8675,8 +8675,8 @@ vendor = 'Leeli Longhaggle', item = 'Recipe: Sneaking Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8689,8 +8689,8 @@ vendor = 'Seer Janidi', item = 'Recipe: Sneaking Potion', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8703,8 +8703,8 @@ vendor = 'Haalrun', item = 'Recipe: Elixir of Major Frost Power', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8717,8 +8717,8 @@ vendor = 'Seer Janidi', item = 'Recipe: Elixir of Major Frost Power', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8731,8 +8731,8 @@ vendor = 'Daga Ramba', item = 'Recipe: Super Mana Potion', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8745,8 +8745,8 @@ vendor = 'Haalrun', item = 'Recipe: Super Mana Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8759,8 +8759,8 @@ vendor = 'Daga Ramba', item = 'Recipe: Elixir of Major Defense', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8773,8 +8773,8 @@ vendor = 'Haalrun', item = 'Recipe: Elixir of Major Defense', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8787,8 +8787,8 @@ vendor = 'Daga Ramba', item = 'Recipe: Major Dreamless Sleep Potion', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8801,8 +8801,8 @@ vendor = 'Leeli Longhaggle', item = 'Recipe: Major Dreamless Sleep Potion', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8815,8 +8815,8 @@ vendor = 'Altaa', item = 'Recipe: Transmute Primal Might', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8829,8 +8829,8 @@ vendor = 'Melaris', item = 'Recipe: Transmute Primal Might', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8843,8 +8843,8 @@ vendor = 'Skreah', item = 'Recipe: Transmute Primal Might', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8857,8 +8857,8 @@ vendor = 'Aaron Hollman', item = 'Plans: Adamantite Maul', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8871,8 +8871,8 @@ vendor = 'Arras', item = 'Plans: Adamantite Maul', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8885,8 +8885,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Maul', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -8899,8 +8899,8 @@ vendor = 'Eriden', item = 'Plans: Adamantite Maul', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8913,8 +8913,8 @@ vendor = 'Aaron Hollman', item = 'Plans: Adamantite Cleaver', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8927,8 +8927,8 @@ vendor = 'Arras', item = 'Plans: Adamantite Cleaver', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8941,8 +8941,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Cleaver', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8955,8 +8955,8 @@ vendor = 'Eriden', item = 'Plans: Adamantite Cleaver', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -8969,8 +8969,8 @@ vendor = 'Aaron Hollman', item = 'Plans: Adamantite Dagger', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -8983,8 +8983,8 @@ vendor = 'Arras', item = 'Plans: Adamantite Dagger', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -8997,8 +8997,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Dagger', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9011,8 +9011,8 @@ vendor = 'Eriden', item = 'Plans: Adamantite Dagger', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9025,8 +9025,8 @@ vendor = 'Aaron Hollman', item = 'Plans: Adamantite Rapier', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -9039,8 +9039,8 @@ vendor = 'Arras', item = 'Plans: Adamantite Rapier', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9053,8 +9053,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Rapier', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9067,8 +9067,8 @@ vendor = 'Eriden', item = 'Plans: Adamantite Rapier', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9081,8 +9081,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Plate Bracers', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9095,8 +9095,8 @@ vendor = 'Krek Cragcrush', item = 'Plans: Adamantite Plate Bracers', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9109,8 +9109,8 @@ vendor = 'Loolruna', item = 'Plans: Adamantite Plate Bracers', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9123,8 +9123,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Plate Gloves', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9137,8 +9137,8 @@ vendor = 'Krek Cragcrush', item = 'Plans: Adamantite Plate Gloves', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9151,8 +9151,8 @@ vendor = 'Loolruna', item = 'Plans: Adamantite Plate Gloves', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9165,8 +9165,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Breastplate', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9179,8 +9179,8 @@ vendor = 'Krek Cragcrush', item = 'Plans: Adamantite Breastplate', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9193,8 +9193,8 @@ vendor = 'Loolruna', item = 'Plans: Adamantite Breastplate', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9207,8 +9207,8 @@ vendor = 'Captain Samir', item = 'Plans: Lesser Ward of Shielding', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9221,8 +9221,8 @@ vendor = 'Mari Stonehand', item = 'Plans: Lesser Ward of Shielding', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9235,8 +9235,8 @@ vendor = 'Rohok', item = 'Plans: Lesser Ward of Shielding', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9249,8 +9249,8 @@ vendor = 'Feera', item = 'Schematic: Adamantite Rifle', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9263,8 +9263,8 @@ vendor = 'Viggz Shinesparked', item = 'Schematic: Adamantite Rifle', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -9277,8 +9277,8 @@ vendor = 'Yatheon', item = 'Schematic: Adamantite Rifle', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9291,8 +9291,8 @@ vendor = 'Lebowski', item = 'Schematic: Cogspinner Goggles', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9305,8 +9305,8 @@ vendor = 'Mixie Farshot', item = 'Schematic: Cogspinner Goggles', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9319,8 +9319,8 @@ vendor = 'Captured Gnome', item = 'Schematic: Ultra-Spectropic Detection Goggles', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9333,8 +9333,8 @@ vendor = 'Lebowski', item = 'Schematic: Ultra-Spectropic Detection Goggles', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9347,8 +9347,8 @@ vendor = 'Daggle Ironshaper', item = 'Schematic: Adamantite Scope', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9361,8 +9361,8 @@ vendor = 'Mixie Farshot', item = 'Schematic: Adamantite Scope', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9375,8 +9375,8 @@ vendor = 'Captured Gnome', item = 'Schematic: White Smoke Flare', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9389,8 +9389,8 @@ vendor = 'Feera', item = 'Schematic: White Smoke Flare', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9403,8 +9403,8 @@ vendor = 'Wind Trader Lathrai', item = 'Schematic: White Smoke Flare', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -9417,8 +9417,8 @@ vendor = 'Yatheon', item = 'Schematic: White Smoke Flare', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9431,8 +9431,8 @@ vendor = 'Feera', item = 'Schematic: Fel Iron Toolbox', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9445,8 +9445,8 @@ vendor = 'Wind Trader Lathrai', item = 'Schematic: Fel Iron Toolbox', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -9459,8 +9459,8 @@ vendor = 'Yatheon', item = 'Schematic: Fel Iron Toolbox', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9473,8 +9473,8 @@ vendor = 'Bryan Landers', item = 'Schematic: Titanium Toolbox', stock = 5, - a = True, - h = True + a = true, + h = true }, @@ -9487,8 +9487,8 @@ vendor = 'Fizzix Blastbolt', item = 'Schematic: Titanium Toolbox', stock = 5, - a = True, - h = True + a = true, + h = true }, @@ -9501,8 +9501,8 @@ vendor = 'Gidge Spellweaver', item = 'Pattern: Spellcloth', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9515,8 +9515,8 @@ vendor = 'Lalla Brightweave', item = 'Pattern: Spellcloth', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9529,8 +9529,8 @@ vendor = 'Haferet', item = 'Pattern: Comfortable Insoles', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9543,8 +9543,8 @@ vendor = 'Zaralda', item = 'Pattern: Comfortable Insoles', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9557,8 +9557,8 @@ vendor = 'Aaron Hollman', item = 'Plans: Adamantite Rod', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -9571,8 +9571,8 @@ vendor = 'Captain Samir', item = 'Plans: Adamantite Rod', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9585,8 +9585,8 @@ vendor = 'Captain Samir', item = 'Plans: Eternium Rod', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9599,8 +9599,8 @@ vendor = 'Mari Stonehand', item = 'Plans: Eternium Rod', stock = 1, - a = True, - h = False + a = true, + h = false }, @@ -9613,8 +9613,8 @@ vendor = 'Rohok', item = 'Plans: Eternium Rod', stock = 1, - a = False, - h = True + a = false, + h = true }, @@ -9627,8 +9627,8 @@ vendor = 'Rungor', item = 'Formula: Runed Adamantite Rod', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9641,8 +9641,8 @@ vendor = 'Vodesiin', item = 'Formula: Runed Adamantite Rod', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9655,8 +9655,8 @@ vendor = 'Madame Ruby', item = 'Formula: Runed Eternium Rod', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -9669,8 +9669,8 @@ vendor = 'Landraelanis', item = 'Recipe: Lynx Steak', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9683,8 +9683,8 @@ vendor = 'Master Chef Mouldier', item = 'Recipe: Bat Bites', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9697,8 +9697,8 @@ vendor = 'Cookie One-Eye', item = 'Recipe: Ravager Dog', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9711,8 +9711,8 @@ vendor = 'Sid Limbardi', item = 'Recipe: Ravager Dog', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9725,8 +9725,8 @@ vendor = 'Innkeeper Grilka', item = 'Recipe: Blackened Basilisk', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9739,8 +9739,8 @@ vendor = 'Supply Officer Mills', item = 'Recipe: Blackened Basilisk', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9753,8 +9753,8 @@ vendor = 'Nula the Butcher', item = 'Recipe: Roasted Clefthoof', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9767,8 +9767,8 @@ vendor = 'Uriku', item = 'Recipe: Roasted Clefthoof', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9781,8 +9781,8 @@ vendor = 'Innkeeper Grilka', item = 'Recipe: Warp Burger', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9795,8 +9795,8 @@ vendor = 'Supply Officer Mills', item = 'Recipe: Warp Burger', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9809,8 +9809,8 @@ vendor = 'Nula the Butcher', item = 'Recipe: Talbuk Steak', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9823,8 +9823,8 @@ vendor = 'Uriku', item = 'Recipe: Talbuk Steak', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9837,8 +9837,8 @@ vendor = 'Doba', item = 'Recipe: Blackened Trout', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9851,8 +9851,8 @@ vendor = 'Gambarinka', item = 'Recipe: Blackened Trout', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9865,8 +9865,8 @@ vendor = 'Doba', item = 'Recipe: Feltail Delight', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9879,8 +9879,8 @@ vendor = 'Zurai', item = 'Recipe: Feltail Delight', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9893,8 +9893,8 @@ vendor = 'Juno Dufrain', item = 'Recipe: Blackened Sporefish', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -9907,8 +9907,8 @@ vendor = 'Nula the Butcher', item = 'Recipe: Grilled Mudfish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9921,8 +9921,8 @@ vendor = 'Uriku', item = 'Recipe: Grilled Mudfish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9935,8 +9935,8 @@ vendor = 'Nula the Butcher', item = 'Recipe: Poached Bluefish', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9949,8 +9949,8 @@ vendor = 'Uriku', item = 'Recipe: Poached Bluefish', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9963,8 +9963,8 @@ vendor = 'Innkeeper Biribi', item = 'Recipe: Golden Fish Sticks', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -9977,8 +9977,8 @@ vendor = 'Rungor', item = 'Recipe: Golden Fish Sticks', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -9991,8 +9991,8 @@ vendor = 'Innkeeper Biribi', item = 'Recipe: Spicy Crawdad', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -10005,8 +10005,8 @@ vendor = 'Rungor', item = 'Recipe: Spicy Crawdad', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -10019,8 +10019,8 @@ vendor = 'Madame Ruby', item = 'Formula: Enchant Shield - Major Stamina', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -10033,8 +10033,8 @@ vendor = 'Andrion Darkspinner', item = 'Pattern: Shadowcloth', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -10047,8 +10047,8 @@ vendor = 'Linna Bruder', item = 'Pattern: Shadowcloth', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -10061,8 +10061,8 @@ vendor = 'Viggz Shinesparked', item = 'Schematic: Fused Wiring', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -10075,8 +10075,8 @@ vendor = 'Xizzer Fizzbolt', item = 'Schematic: Fused Wiring', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -10089,8 +10089,8 @@ vendor = 'Bale', item = 'Recipe: Charred Bear Kabobs', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -10103,8 +10103,8 @@ vendor = 'Malygen', item = 'Recipe: Charred Bear Kabobs', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -10117,8 +10117,8 @@ vendor = 'Bale', item = 'Recipe: Juicy Bear Burger', stock = -1, - a = False, - h = True + a = false, + h = true }, @@ -10131,8 +10131,8 @@ vendor = 'Malygen', item = 'Recipe: Juicy Bear Burger', stock = -1, - a = True, - h = False + a = true, + h = false }, @@ -10145,8 +10145,8 @@ vendor = 'Haughty Modiste', item = 'Pattern: Dress Shoes', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -10159,8 +10159,8 @@ vendor = 'Haughty Modiste', item = 'Pattern: Dress Shoes', stock = 1, - a = True, - h = True + a = true, + h = true }, @@ -10173,8 +10173,8 @@ vendor = 'Haughty Modiste', item = 'Pattern: Haliscan Jacket', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -10187,8 +10187,8 @@ vendor = 'Haughty Modiste', item = 'Pattern: Haliscan Jacket', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -10201,8 +10201,8 @@ vendor = 'Haughty Modiste', item = 'Pattern: Haliscan Pantaloons', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -10215,8 +10215,8 @@ vendor = 'Haughty Modiste', item = 'Pattern: Haliscan Pantaloons', stock = -1, - a = True, - h = True + a = true, + h = true }, @@ -10229,8 +10229,8 @@ vendor = 'Jezebel Bican', item = 'Technique: Glyph of Mana Shield', stock = 2, - a = True, - h = False + a = true, + h = false }, @@ -10243,8 +10243,8 @@ vendor = 'Kul Inkspiller', item = 'Technique: Glyph of Mana Shield', stock = 2, - a = False, - h = True + a = false, + h = true }, @@ -10257,8 +10257,8 @@ vendor = 'Larana Drome', item = 'Technique: Glyph of Mana Shield', stock = 5, - a = True, - h = True + a = true, + h = true }, @@ -10271,63 +10271,8 @@ vendor = 'Larana Drome', item = 'Technique: Glyph of Lash of Pain', stock = 6, - a = True, - h = True - }, - -} - x = 53.90, - y = 65.40, - itementry = 50166, - entry = 30734, - map = '3483', - vendor = 'Jezebel Bican', - item = 'Technique: Glyph of Mana Shield', - stock = 2, - a = True, - h = False - }, - - - [ 732] = { - x = 52.40, - y = 36.00, - itementry = 50166, - entry = 30735, - map = '3483', - vendor = 'Kul Inkspiller', - item = 'Technique: Glyph of Mana Shield', - stock = 2, - a = False, - h = True - }, - - - [ 733] = { - x = 41.70, - y = 36.90, - itementry = 50166, - entry = 28723, - map = '4395', - vendor = 'Larana Drome', - item = 'Technique: Glyph of Mana Shield', - stock = 5, - a = True, - h = True - }, - - - [ 734] = { - x = 41.70, - y = 36.90, - itementry = 50168, - entry = 28723, - map = '4395', - vendor = 'Larana Drome', - item = 'Technique: Glyph of Lash of Pain', - stock = 6, - a = True, - h = True - }, - -} + a = true, + h = true + }, + +} \ No newline at end of file
--- a/location_cache.lua Tue Jan 04 12:12:59 2011 -0600 +++ b/location_cache.lua Tue Jan 04 17:49:34 2011 -0600 @@ -42,47 +42,12 @@ Submit data to admin@drinkslurm.com ]] RECIPEPROFIT_location_cache = { - ["Aaron Hollman"] = { - ["y"] = 0.7215260863304138, - ["x"] = 0.6404642462730408, - }, - ["Madame Ruby"] = { - ["y"] = 0.7101468443870544, - ["x"] = 0.6331429481506348, - }, - ["Endora Moorehead"] = { - ["y"] = 0.5554489493370056, - ["x"] = 0.386496365070343, - }, - ["Larana Drome"] = { - ["y"] = 0.3669505119323731, - ["x"] = 0.41370689868927, - }, - ["Wind Trader Lathrai"] = { - ["y"] = 0.3077846765518189, - ["x"] = 0.7226132750511169, - }, - ["Eiin"] = { - ["y"] = 0.6892650127410889, - ["x"] = 0.6627683639526367, - }, - ["Bryan Landers"] = { - ["y"] = 0.245055764913559, - ["x"] = 0.3892331123352051, - }, - ["Fyldan"] = { - ["y"] = 0.215785413980484, - ["x"] = 0.4854764640331268, - }, - ["Ulthir"] = { - ["y"] = 0.2445829063653946, - ["x"] = 0.5585364103317261, - }, + } --[[ Replaces the X and Y coordinates in the coordinate cached database. -]] +]--] local function fix_coords(note, cdb) for name, coord in pairs(cdb) do if(note.vendor == name) then @@ -92,9 +57,9 @@ end end ---[[ +--[--[ Overwrites RECIPEPROFIT_alliance and RECIPEPROFIT_horde dbs. -]] +]--] do for _, note in pairs(RECIPEPROFIT_alliance) do fix_coords(note, RECIPEPROFIT_location_cache) @@ -104,3 +69,4 @@ fix_coords(note, RECIPEPROFIT_location_cache) end end +]]
