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

Attack Config Problem ?!?!?

SHirty1990

New Member
Joined
Jan 19, 2014
Messages
5
Reaction score
0
hi there :)

i have been trying to set "Reave" as a "attack only at >3" so that he only use reave when 3 or more mobs are near and for single target or 2 mobs he should be use "Double Strike" but...
he dont want it.

i'm at the "C:\Users\Desktop\Bots\PoE2\Routines\Exile" Script and at the line 876 Register("Reave", ret => NumberOfMobsNear(BestTarget, 3, 3));

someone can help me? he only bashs Reave instead of using double strike
 
I think your range is too small and your targets around is too large. Using that code, I noticed the same thing you did on a new Reave character I just made.

Try using this instead:

Code:
Register("Reave", ret => NumberOfMobsNear(BestTarget, 10, 1));

That makes it use Reave when there's a total of 2 mobs near each other and one of them is the main target. Using that, I noticed the Reave skill getting used.

When it comes to distance and mobs around checks, the current code is really simple. Not all mobs are the same size, so in areas with large mobs, that type of logic doesn't work well compared to areas with smaller mobs that can grouped up.

In addition, better CR logic would pick the best target as the center most mob in a group to be able to hit as many as possible. The current code doesn't do that, so most of the time, your best target isn't the optimal target to use if you want to check mobs near it.
 
Are you sure? When you use Reave, you'll get an icon in the top of the screen for your Reave stacks. It might not last long, but you should notice it.

I leveled a double strike/reave character about 20 levels and the usage seemed correct.

What area are you botting in to where it's not working as expected?
 
Back
Top