Experimental ESP Source Code (Work in Progress)
Just wanted to share what i have gotten so far for an esp, im staying on the ahk route because its not really detectable. Its very rough and early, doesnt work that well. Im gonna be updating it eventually once i figure out some stuff. expecially the 3d to 2d stuff
here it is:
Code:
; Start image search
CoordMode, Tooltip
CoordMode, Pixel
CoordMode, Mouse
Loop {
ImageSearch, , , 960, 541, 960, 1080, *100 1.png
if ErrorLevel = 0
{
Loop {
ImageSearch, , , 960, 541, 960, 1080, *100 1.png
if ErrorLevel = 0
{
tooltip, Enemy!
break
}
else if ErrorLevel = 1
{
tooltip
continue
}
else if ErrorLevel = 2
{
MsgBox, Something went wrong!
break
}
}
}
else if ErrorLevel = 1
{
tooltip
continue
}
else if ErrorLevel = 2
{
MsgBox, Error Retrace
break
}
}