Tumble files around a bit

This commit is contained in:
2025-05-16 10:20:19 +02:00
parent 0e3166a410
commit 003f90126d
1595 changed files with 75381 additions and 70006 deletions

View File

@@ -0,0 +1,19 @@
function()
results = C_AuctionHouse.GetBrowseResults()
-- DevTools_Dump(results)
for k,v in ipairs(results) do
local itemID = v.itemKey.itemID
local itemName = GetItemInfo(itemID)
if aura_env.sellPriceThresholds[itemID] then
if v.minPrice > aura_env.sellPriceThresholds[itemID] then
print(itemName, "too expensive")
SendChatMessage("POKE", "WHISPER", nil, UnitName("player"))
end
elseif aura_env.buyPriceThresholds[itemID] then
if v.minPrice < aura_env.buyPriceThresholds[itemID] then
print(itemName, "too cheap")
SendChatMessage("POKE", "WHISPER", nil, UnitName("player"))
end
end
end
end

View File

@@ -0,0 +1,6 @@
function()
if not aura_env.last or aura_env.last < GetTime() - aura_env.throttleTime then
aura_env.last = GetTime()
AuctionHouseFrame.SearchBar.FavoritesSearchButton:Click()
end
end

View File

@@ -0,0 +1,17 @@
aura_env.throttleTime = 10
aura_env.sellPriceThresholds = {
[168446] = 5000 * 100 * 100, -- Accord of Critical Strike
[168447] = 5000 * 100 * 100, -- Accord of Haste
[168448] = 5000 * 100 * 100, -- Accord of Mastery
[168449] = 5000 * 100 * 100, -- Accord of Versatility
[168592] = 4500 * 100 * 100, -- Oceanic Restoration
[168496] = 4500 * 100 * 100, -- Force Multiplier
[168593] = 4500 * 100 * 100, -- Machinist's Brilliance
[168598] = 4500 * 100 * 100, -- Naga Hide
}
aura_env.buyPriceThresholds = {
[152576] = 5 * 100 * 100, -- Tidesrpay Linen
[152877] = 500 * 100 * 100, -- Veiled Crystal
}

View File

@@ -0,0 +1,3 @@
/run AuctionHouseFrame.SearchBar.FavoritesSearchButton:Click()
/dump C_AuctionHouse.GetBrowseResults()