mirror of
https://github.com/NathanHandley/mod-ah-bot-plus.git
synced 2026-02-07 04:47:48 +00:00
Removed filter flags
This commit is contained in:
@@ -37,23 +37,6 @@ AuctionHouseBot::AuctionHouseBot()
|
|||||||
AHBSeller = false;
|
AHBSeller = false;
|
||||||
AHBBuyer = false;
|
AHBBuyer = false;
|
||||||
|
|
||||||
//Begin Filters
|
|
||||||
|
|
||||||
Vendor_Items = false;
|
|
||||||
Loot_Items = false;
|
|
||||||
Other_Items = false;
|
|
||||||
Vendor_TGs = false;
|
|
||||||
Loot_TGs = false;
|
|
||||||
Other_TGs = false;
|
|
||||||
|
|
||||||
No_Bind = false;
|
|
||||||
Bind_When_Picked_Up = false;
|
|
||||||
Bind_When_Equipped = false;
|
|
||||||
Bind_When_Use = false;
|
|
||||||
Bind_Quest_Item = false;
|
|
||||||
|
|
||||||
//End Filters
|
|
||||||
|
|
||||||
_lastrun_a = time(NULL);
|
_lastrun_a = time(NULL);
|
||||||
_lastrun_h = time(NULL);
|
_lastrun_h = time(NULL);
|
||||||
_lastrun_n = time(NULL);
|
_lastrun_n = time(NULL);
|
||||||
@@ -695,21 +678,6 @@ void AuctionHouseBot::InitializeConfiguration()
|
|||||||
AHBplayerAccount = sConfigMgr->GetOption<uint32>("AuctionHouseBot.Account", 0);
|
AHBplayerAccount = sConfigMgr->GetOption<uint32>("AuctionHouseBot.Account", 0);
|
||||||
AHBplayerGUID = sConfigMgr->GetOption<uint32>("AuctionHouseBot.GUID", 0);
|
AHBplayerGUID = sConfigMgr->GetOption<uint32>("AuctionHouseBot.GUID", 0);
|
||||||
ItemsPerCycle = sConfigMgr->GetOption<uint32>("AuctionHouseBot.ItemsPerCycle", 200);
|
ItemsPerCycle = sConfigMgr->GetOption<uint32>("AuctionHouseBot.ItemsPerCycle", 200);
|
||||||
|
|
||||||
//Begin Filters
|
|
||||||
|
|
||||||
Vendor_Items = sConfigMgr->GetOption<bool>("AuctionHouseBot.VendorItems", false);
|
|
||||||
Loot_Items = sConfigMgr->GetOption<bool>("AuctionHouseBot.LootItems", true);
|
|
||||||
Other_Items = sConfigMgr->GetOption<bool>("AuctionHouseBot.OtherItems", false);
|
|
||||||
Vendor_TGs = sConfigMgr->GetOption<bool>("AuctionHouseBot.VendorTradeGoods", false);
|
|
||||||
Loot_TGs = sConfigMgr->GetOption<bool>("AuctionHouseBot.LootTradeGoods", true);
|
|
||||||
Other_TGs = sConfigMgr->GetOption<bool>("AuctionHouseBot.OtherTradeGoods", false);
|
|
||||||
|
|
||||||
No_Bind = sConfigMgr->GetOption<bool>("AuctionHouseBot.No_Bind", true);
|
|
||||||
Bind_When_Picked_Up = sConfigMgr->GetOption<bool>("AuctionHouseBot.Bind_When_Picked_Up", false);
|
|
||||||
Bind_When_Equipped = sConfigMgr->GetOption<bool>("AuctionHouseBot.Bind_When_Equipped", true);
|
|
||||||
Bind_When_Use = sConfigMgr->GetOption<bool>("AuctionHouseBot.Bind_When_Use", true);
|
|
||||||
Bind_Quest_Item = sConfigMgr->GetOption<bool>("AuctionHouseBot.Bind_Quest_Item", false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AuctionHouseBot::IncrementItemCounts(AuctionEntry* ah)
|
void AuctionHouseBot::IncrementItemCounts(AuctionEntry* ah)
|
||||||
|
|||||||
@@ -730,21 +730,6 @@ private:
|
|||||||
ObjectGuid::LowType AHBplayerGUID;
|
ObjectGuid::LowType AHBplayerGUID;
|
||||||
uint32 ItemsPerCycle;
|
uint32 ItemsPerCycle;
|
||||||
|
|
||||||
//Begin Filters
|
|
||||||
|
|
||||||
bool Vendor_Items;
|
|
||||||
bool Loot_Items;
|
|
||||||
bool Other_Items;
|
|
||||||
bool Vendor_TGs;
|
|
||||||
bool Loot_TGs;
|
|
||||||
bool Other_TGs;
|
|
||||||
|
|
||||||
bool No_Bind;
|
|
||||||
bool Bind_When_Picked_Up;
|
|
||||||
bool Bind_When_Equipped;
|
|
||||||
bool Bind_When_Use;
|
|
||||||
bool Bind_Quest_Item;
|
|
||||||
|
|
||||||
std::set<uint32> DisableItemStore;
|
std::set<uint32> DisableItemStore;
|
||||||
|
|
||||||
//End Filters
|
//End Filters
|
||||||
|
|||||||
Reference in New Issue
Block a user