#SingleInstance, Force SendMode Input SetWorkingDir, %A_ScriptDir% MsgBox, ***READ BEFORE USING***`nYou must have a 1440p screen for this to work. Make sure you are on 7 brightness, chromatic abberation is off, and hud opacity is max. Make sure you have interact bound to "E". Press F3 to start and F4 to stop. Does NOT work on Nessus. pToken := Gdip_Startup() F3:: { Loop, { loop, { pBitmap := Gdip_BitmapFromScreen("1243|971|37|21") pWhite := simpleColorCheck(pBitmap, 37, 21) Gdip_DisposeImage(pBitmap) if (pWhite >= 0.15) Break } Send, {e down} Sleep, 800 Send, {e Up} DllCall("mouse_event",uint,1,int,-300,int,0,uint,0,int,0) Sleep, 200 DllCall("mouse_event",uint,1,int,300,int,0,uint,0,int,0) Send, {d Down} Sleep, 100 Send, {d Up} Sleep, 100 Send, {a Down} Sleep, 100 Send, {a Up} } } Return simpleColorCheck(pBitmap, w, h) { x := 0 y := 0 white := 0 total := 0 loop %h% { loop %w% { color := (Gdip_GetPixel(pBitmap, x, y) & 0x00F0F0F0) if (color == 0xF0F0F0) white += 1 total += 1 x+= 1 } x := 0 y += 1 } pWhite := white/total return pWhite } F4::Reload #Include