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

CR 'no attack zones' in regions of the screen (flasks/skills)

WhereIsMyMind

Member
Joined
Oct 12, 2013
Messages
848
Reaction score
5
hi,

Is it possible to make the flask and skill regions of the PoE client non-targetable by the bot?
Reason i ask is that the bot from time to time attempts to target a mob in the screen region that has flasks and, not tested but presumed, skills. When the mob is targetted there it brings up the flask 'tool tip/hover over' details and the bot pauses.

WIMM
 
I was going to explain the issue, and why things are setup the way they are, but all you need to do is rebind MMB/RMB to letter keys, and don't use any skill assigned to LMB. Make sure move is not on LMB either.

The mouse tooltips will still show up when it hovers over gui elements, but since you're using key presses, the mouse events that trigger those gui elements aren't firing, so everything should work as expected.

I'll be including this in the new user guide coming soon for the bot.

You can still use LMB for skills that need small ranges though, but the ExampleRoutine is not setup to handle limiting skill range per slot, so you'll have to work around that if you don't make your own CR.
 
Here is the better solution:
Code:
				if (cachedDistance > MaxArrowRange)		
				{
					var extPoint = Utility.CalculatePointAtDistanceAfterStart(LokiPoe.Me.Position, cachedPosition, 40);		
					var err = LokiPoe.InGameState.SkillBarPanel.UseAt(SingleTargetCurseShot, true, extPoint);
					if (err != LokiPoe.InGameState.UseError.None)
					{
						Log.ErrorFormat("[Logic] UseAt returned {0}.", err);
					}

Does some excellent work, hardly misses.
I have not tweeked it but worked great with the first attempt above.

WIMM
 
The original version of the CR limited how far skills could be used to avoid the issue, but then I got a lot of complaints about that. :p
 
I can't support anyone using things like that with the bot, even though I know people do it. It affects the way the client works, and the bot code is designed around a standard client without any modifications. Since we also can't allow any hacks on these forums, I have to say I don't recommend it.
 
I can't support anyone using things like that with the bot, even though I know people do it. It affects the way the client works, and the bot code is designed around a standard client without any modifications. Since we also can't allow any hacks on these forums, I have to say I don't recommend it.
Also have to note, Exilebuddy has memory altering features, if you check out greymagic, *wink* *wink*,
 
rather you wink wink towards making wireframes transparent :p

WIMM
heh, it's easier done then you think, just invest a little time into it. Also you can resize the PoE window to a much, much smaller size which helps. But if it's too small, it will break bot.
 
Back
Top