Originally Posted by
hotbuns
I'm having the same issue as Zigian - here's a video I just recorded to demonstrate what's happening.
VIDEO LINK (YouTube)
I'm using passives: Hot Pursuit, Tactical Advantage, and Steady Aim. My boots have 10% movement speed. Here's a screenshot of my INI file:
PICTURE (Imgur)
Any help you guys can provide would be greatly appreciated.
try in the ini setting your pickup radius to 11 and see what it does it looks like the coords for if your pickup is under 10 is off the screen. You could also manually edit the cords for if the pickup radius is under 10 if you know how to find the coordinates yourself. The coords to edit would be in the code below
Code:
;Do a little dance because you have a low pickup radius
If $pickupRadius <= 10 Then
RandClick("middle", Round(370*$x_ratio), Round(180*$y_ratio)) ;Left
Moving(2500)
RandClick("middle", Round(1200*$x_ratio), Round(380*$y_ratio)) ;Right
Moving(1500)
Else
RandClick("middle", Round(530*$x_ratio), Round(190*$y_ratio)) ;location of sarkoth after death
Moving(2750)
Endif