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

How would i disable showing all loot, when looting?

Unknown Buddy

Member
Joined
May 20, 2015
Messages
603
Reaction score
17
Can someone point me in the right direction, to where the bot decides to press Alt to show all items that dropped when it goes to loot.

I know the reasoning for EB showing all loot, since the bot can get stuck trying to loot hidden items if you are using an ingame loot filter. But i have my EB filters setup very specifically so it should never get stuck. If i am running a very high IR/IQ char i would rather EB not show all loot (and use my ingame filter), because some items can be offscreen in the big loot explosions.


My first guess at adjusting this was in OldRoutine

Code:
		private bool _needsToDisableAlwaysHighlight;

		// This logic is now CR specific, because Strongbox gui labels interfere with targeting,
		// but not general movement using Move only.
		private async Task DisableAlwaysHiglight()
		{
			if (_needsToDisableAlwaysHighlight && LokiPoe.ConfigManager.IsAlwaysHighlightEnabled)
			{
				Log.InfoFormat("[DisableAlwaysHiglight] Now disabling Always Highlight to avoid skill use issues.");
				LokiPoe.Input.SimulateKeyEvent(LokiPoe.Input.Binding.highlight_toggle, true, false, false);
				await Coroutine.Sleep(16);
			}
		}

		// This logic is now CR specific, because Strongbox gui labels interfere with targeting,
		// but not general movement using Move only.
		private async Task EnableAlwaysHiglight()
		{
			if (!LokiPoe.ConfigManager.IsAlwaysHighlightEnabled)
			{
				Log.InfoFormat("[EnableAlwaysHiglight] Now enabling Always Highlight.");
				LokiPoe.Input.SimulateKeyEvent(LokiPoe.Input.Binding.highlight_toggle, true, false, false);
				await Coroutine.Sleep(16);
			}
		}

But even commenting out this section didnt seem to do anything. As the comments suggest this is probably just used for removing the Strong Box text (z by default).

So where is the "Show All Loot" code at?
 
Don't modify any highlight toggling, because that only applies to currently shown labels.

If you set via code: LokiPoe.Input.UseItemHighlight = false;

Then the bot won't hold Alt to loot items, where Alt will show all items due to client coding.

You then can set your "Key Pickup" option to "Disabled" in the client, and the bot should loot only shown items, and not press Alt.

What's not currently supported, is using the "Bound Key" to loot items, but it's not really necessary with the previous process. I will look into adding that in the near future though.
 
Actually, the next Beta will fix all that stuff, so you don't have to set it yourself anymore.
 
Is this fixed now ? My bot still bugging coz of items and sometimes even logout... (running character with 150iq + quantity from rare maps and there are tons of loot ) if its still not fixed can u help to fix it giving me some advice where I should put this code ''LokiPoe.Input.UseItemHighlight = false;''
Thanks in advance!
 
Actually, the next Beta will fix all that stuff, so you don't have to set it yourself anymore.

Is this fixed now ? My bot still bugging coz of items and sometimes even logout... (running character with 150iq + quantity from rare maps and there are tons of loot ) if its still not fixed can u help to fix it giving me some advice where I should put this code ''LokiPoe.Input.UseItemHighlight = false;''
Thanks in advance!
 
Yeap, it was fixed and tested to be working at the time of the post.

That code no longer is relevant because it was removed from the bot completely.

The default loot tasks should toggle highlighting to re-arrange labels for you on large loot explosions, but you still need a decent loot filter to hide the bulk of the loot, are you using one?
 
Yeap, it was fixed and tested to be working at the time of the post.

That code no longer is relevant because it was removed from the bot completely.

The default loot tasks should toggle highlighting to re-arrange labels for you on large loot explosions, but you still need a decent loot filter to hide the bulk of the loot, are you using one?

Now I have one :) ty for the help I apriciate it.
 
Back
Top