added ignore owner settings

This commit is contained in:
Manuel Simon Hirsig
2016-03-25 02:13:49 +01:00
parent 8258ef019d
commit 4bd18e8a10
4 changed files with 20 additions and 17 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
## Interface: 11200
## Title: Aux
## SavedVariablesPerCharacter: aux_recent_searches, aux_favorite_searches, aux_post_mode, aux_price_per_unit, aux_tooltip_daily, aux_tooltip_vendor_buy, aux_tooltip_vendor_sell, aux_tooltip_disenchant_value, aux_tooltip_disenchant_distribution, aux_tooltip_disenchant_source
## SavedVariablesPerCharacter: aux_ignore_owner, aux_recent_searches, aux_favorite_searches, aux_post_mode, aux_price_per_unit, aux_tooltip_daily, aux_tooltip_vendor_buy, aux_tooltip_vendor_sell, aux_tooltip_disenchant_value, aux_tooltip_disenchant_distribution, aux_tooltip_disenchant_source
## SavedVariables: aux_datasets, aux_items, aux_item_ids, aux_auctionable_items, aux_merchant_buy, aux_merchant_sell
slash.lua
+1 -1
View File
@@ -135,7 +135,7 @@ function public.auction(index, type)
hyperlink = hyperlink,
itemstring = item_info.itemstring,
item_key = item_id..':'..suffix_id,
search_signature = Aux.util.join({item_id, suffix_id, enchant_id, start_price, buyout_price, bid_price, aux_quantity, duration, high_bidder and 1 or 0, owner or '?'}, ':'),
search_signature = Aux.util.join({item_id, suffix_id, enchant_id, start_price, buyout_price, bid_price, aux_quantity, duration, high_bidder and 1 or 0, not aux_ignore_owner and owner or '?'}, ':'),
name = name,
texture = texture,
+1 -1
View File
@@ -99,7 +99,7 @@ function private.wait_for_list_results(k)
end
function private.owner_data_complete()
if private.current_thread().params.no_wait_owner then
if private.current_thread().params.no_wait_owner or aux_ignore_owner then
return true
end
local count, _ = GetNumAuctionItems(private.current_thread().params.type)
+17 -14
View File
@@ -1,44 +1,47 @@
SLASH_AUX1 = '/aux'
function SlashCmdList.AUX(parameter)
if parameter == 'clear history' then
function SlashCmdList.AUX(command)
if command == 'clear history' then
Aux.persistence.load_dataset().history = nil
Aux.log('History cleared.')
elseif parameter == 'clear post' then
elseif command == 'clear post' then
Aux.persistence.load_dataset().post = nil
Aux.log('Post settings cleared.')
elseif parameter == 'clear datasets' then
elseif command == 'clear datasets' then
aux_datasets = {}
Aux.log('Datasets cleared.')
elseif parameter == 'clear merchant buy' then
elseif command == 'clear merchant buy' then
aux_merchant_buy = {}
Aux.log('Merchant buy prices cleared.')
elseif parameter == 'clear merchant sell' then
elseif command == 'clear merchant sell' then
aux_merchant_sell = {}
Aux.log('Merchant sell prices cleared.')
elseif parameter == 'clear item cache' then
elseif command == 'clear item cache' then
aux_items = {}
aux_item_ids = {}
aux_auctionable_items = {}
Aux.log('Item cache cleared.')
elseif parameter == 'populate wdb' then
elseif command == 'populate wdb' then
Aux.cache.populate_wdb()
elseif parameter == 'tooltip daily' then
elseif command == 'tooltip daily' then
aux_tooltip_daily = not aux_tooltip_daily
Aux.log('Market value in tooltip '..(aux_tooltip_daily and 'enabled' or 'disabled')..'.')
elseif parameter == 'tooltip vendor buy' then
elseif command == 'tooltip vendor buy' then
aux_tooltip_vendor_buy = not aux_tooltip_vendor_buy
Aux.log('Vendor buy price in tooltip '..(aux_tooltip_vendor_buy and 'enabled' or 'disabled')..'.')
elseif parameter == 'tooltip vendor sell' then
elseif command == 'tooltip vendor sell' then
aux_tooltip_vendor_sell = not aux_tooltip_vendor_sell
Aux.log('Vendor sell price in tooltip '..(aux_tooltip_vendor_sell and 'enabled' or 'disabled')..'.')
elseif parameter == 'tooltip disenchant value' then
elseif command == 'tooltip disenchant value' then
aux_tooltip_disenchant_value = not aux_tooltip_disenchant_value
Aux.log('Disenchant value in tooltip '..(aux_tooltip_disenchant_value and 'enabled' or 'disabled')..'.')
elseif parameter == 'tooltip disenchant distribution' then
elseif command == 'tooltip disenchant distribution' then
aux_tooltip_disenchant_distribution = not aux_tooltip_disenchant_distribution
Aux.log('Disenchant distribution in tooltip '..(aux_tooltip_disenchant_distribution and 'enabled' or 'disabled')..'.')
elseif parameter == 'tooltip disenchant source' then
elseif command == 'tooltip disenchant source' then
aux_tooltip_disenchant_source = not aux_tooltip_disenchant_source
Aux.log('Disenchant source in tooltip '..(aux_tooltip_disenchant_source and 'enabled' or 'disabled')..'.')
elseif command == 'ignore owner' then
aux_ignore_owner = not aux_ignore_owner
Aux.log('Ignoring of owner '..(aux_ignore_owner and 'enabled' or 'disabled')..'.')
end
end