[AHK] *BETA* Auto Blue Spot Aimbot For Mining
[AHK] *BETA* Auto Blue Spot Aimbot For Mining
This basically searches for the blue spot pixel color when mining mats, and moves your mouse to it. Meaning you can put in less effort into a really easy task. This is more of a concept and a test for me to see if I could make this really simple. I hope you enjoy the 2 seconds of use you will get out of it.
AHK Code
Code:
toggle := false
loop
{
if toggle
{
MouseGetPos, xpos, ypos
PixelSearch, Px, Py, 600, 340, 1320, 742, 0xfff6d1, 3, Fast
{
MouseMove, Px - 960 + xpos, Py - 540 + ypos
}
PixelSearch, Px, Py, 600, 340, 1320, 742, 0xfff6c7, 3, Fast
{
MouseMove, Px - 960 + xpos, Py - 540 + ypos
}
}
}
z::
if toggle
{
toggle := false
}else {
toggle := true
}
x::
MouseMove, 960, 540
AHK Detected?
I doubt AHK is actually detected, but many people claim to have been banned. A simple fix is to compile the ahk program. Then use an exe scrambler to make it even less "detectable". If your really extreme you can just write this in c# or c++ and call it a day. Honestly if your that worried maybe don't come to a public cheat forum and especially for fortnite.
Is this actually useful?
Probably not, but this section is so dead it probably won't hurt. If anything this might inspire someone to make an advanced auto pickup tool with gun priority but maybe that's just a dream.
How to use?
Toggle = Z
Reset Mouse = X
Apparently the mouse doesn't move exactly with the screen so it is really hard to get everything exact. Also the mouse movements are not proportional so it is off. Hopefully pressing x will resolve most of the issues you might have.

