[PATCHED] Jubs Tweaked TriggerBot
This is a Tweaked Triggerbot (works 96% of the time)
Features:
Working Trigger botFeatures:
Works for any gun-wielding hero (Soldier, Widow etc)
https://virusscan.jotti.org/en-US/fi...job/1345wfsl2g
ImageSearch, , , 960, 0, 960, 540, *100 1.png
If !Errorlevel
Loop
{
ImageSearch, , , 960, 541, 960, 1080, *100 1.png
If !Errorlevel
Firing := 0
Gui, Add, CheckBox, x12 y220 w150 h40 gTrigerSub vtrigger, Trigger Bot
Gui, Show
TrigerSub:
GuiControlGet, trigger
if trigger
loop
{
GuiControlGet, trigger
ImageSearch, , , 960, 0, 960, 540, *100 1.png
If !Errorlevel
Loop
{
ImageSearch, , , 960, 541, 960, 1080, *100 1.png
If !Errorlevel
{
gosub, Fire_on
}
else
{
gosub, Fire_off
break
}
}
if !trigger
break
}
return
Fire_on:
if !Firing
{
Send, {LButton Down}
Firing := 1
}
return
Fire_off:
if Firing
{
Send, {LButton Up}
Firing := 0
}
return
GuiClose:
ExitApp
return
