Hey i just made a lil tweek to the bot script so it will use the ctrl funtion to target it should fix the clicking on dead animals
#include <ImageSearch.au3>
Global $Paused
HotKeySet("{Pause}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
MsgBox(0,"starting","press ok")
sleep(2000)
While 1
$x3=0
$y3=0
$x2=0
$y2=0
$x1=0
$y1=0
$x4=0
$y4=0
$x5=0
$y5=0
Send("{ALTDOWN}")
$result3 = _ImageSearch("fox.BMP",1,$x3,$y3,70)
If $result3=1 Then
Send ("{CTRLDOWN}")
Sleep (500)
MouseClick ("left")
Sleep (6000)
Send ("{CTRLUP}")
EndIf
$result = _ImageSearch("fomor2.BMP",1,$x2,$y2,80)
if $result=1 Then
MouseClick("left",$x2,$y2)
Sleep(500)
EndIf
$result = _ImageSearch("gold.BMP",1,$x5,$y5,80)
if $result=1 Then
MouseClick("left",$x5,$y5)
Sleep(3000)
EndIf
$result = _ImageSearch("rez.BMP",1,$x1,$y1,80)
If $result=1 Then
MouseClick("left",$x1,$y1)
MouseClick("left",610,400)
EndIf
MouseClickDrag ("Right",246, 503,350, 503)
WEnd
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
Exit 0
EndFunc