
Originally Posted by
lorzore
i do not want to use a realm relay script but an AHK script.
That should be easy.
1. Get a program to find (x,y) on your screen (so you can customize with fsv3 or whatever)
2. Find out where your health bar is.
3. Edit this code to your liking (Credits go to @
dg123)
Code:
^L::Loop
{
PixelGetColor, red, 695, 310
sleep 1
if red = 0x545454
{
SendEvent {Shift}
} }
a. In line one change 'L' to what ever you want for starting the script.
b. In line three change '695, 310' to you x,y coords of your health bar
c. In line seven change 'Shift' to what ever your Auto nexus key is in the game client. Or change your key in the client to shift.
4. Ctrl + L to start (Or if you changed it then whatever you changed it to)
5. Test on mule
GL
Edit: I took this from an old post and I feel that it should be noted that a (I would say) competent coder said that ahk will never be as fast as a modded client. I've died with the modded client at auto nexus 40% so obviously there is some risk to using this. My suggestion is to only use his when you have to (that lag time between updates on kabam and here). Have fun and GL, hope this helped.