What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

@pushedx - What is looting items?

Unknown Buddy

Member
Joined
May 20, 2015
Messages
603
Reaction score
17
Can you tell me what is looting items when ItemFilterEditor is disabled (or even completely removed from EB).

Fresh install with no additional plugins to interfere. Somewhere there is code picking up currencies, rare items, gems, and a few other basic items but i cant find the cause of this looting. I asked around in discord, but no one knew.

Is there anyway to disable this "ghost" looting? Its not a major issue, just a slight annoyance. Its most noticeable when an item filter is installed, and you pause / unpause the bot mid-run (for a trade, to chat, whatever the reason). When you restart the bot, it will run around picking up tons of items near you that it shouldnt be.

Is it possible for an end user to disable this looting, or is it something hard-coded somewhere we are not able to access?
 
ItemFilterEditor overrides the default item evaluator, which is DefaultItemEvaluator. That filter has some basic looting rules in place, which is what you are observing.

If you want nothing to be looted, you have a few options:
1. Implement your own IItemEvaluator that loots nothing, but you still should implement handling of the other filter categories if you still need them.
2. Remove all the looting rules for ItemFilterEditor.
3. Remove the looting tasks/logic from whatever bot base you're using.

Key takeaway though is, IItemEvaluator is not specifically for looting, it's for all types of item evaluation (pickup, save, sell, buy, id), so you should probably go with #2 and change your pickup rules unless you want to implement custom logic for the other stuff used!
 
Back
Top