Valorant — No Recoil, Triggerbot AHK

DREDD

Administrator
Administrator
Administrator
Administrator
Status
Offline
Joined
Apr 18, 2019
Messages
147
Reaction score
249
AHK Script — is a free, open-source custom scripting language for Microsoft Windows, initially aimed at providing easy keyboard shortcuts or hotkeys, fast macro-creation and software automation that allows users of most levels of computer skill to automate repetitive tasks in any Windows application.

In this case, this means that script will assist with recoil. It therefore, if your recoil pattern so bad you can use this AHK.

Code:
_auto := true
 
~LButton::autofire()
Numlock::_auto := ! _auto
F1::ExitApp
 
autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
SendInput {LButton DownTemp}
Sleep 30
mouseXY(0, 1)
SendInput {LButton Up}
Sleep 25
}
else
break
} ;; loop
} ;; if
} ;; autofire()
 
mouseXY(x,y)
{
    DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}


Download
 

DREDD

Administrator
Administrator
Administrator
Administrator
Status
Offline
Joined
Apr 18, 2019
Messages
147
Reaction score
249
TriggerBot AHK.

Code:
~F2::
loop{
KeyWait, Rbutton, D
CoordMode, Pixel, Screen
PixelSearch, FoundX, FoundY, 957, 519, 961, 583, 0xA145A3, 30, Fast RGB
If (ErrorLevel = 0){
sleep, 30
send {Lbutton down}
sleep, 10
send {lbutton up}
}
}
return
 

Axcel

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Feb 17, 2021
Messages
3
Reaction score
0
TriggerBot AHK.

Code:
~F2::
loop{
KeyWait, Rbutton, D
CoordMode, Pixel, Screen
PixelSearch, FoundX, FoundY, 957, 519, 961, 583, 0xA145A3, 30, Fast RGB
If (ErrorLevel = 0){
sleep, 30
send {Lbutton down}
sleep, 10
send {lbutton up}
}
}
return



1. Downoad AHK (Auto Hot Key)
2. Install AHK
3. Copy Code
4. Open Notepad
5. Paste Code in notepad
6. Save as (Valo.ahk ) .ahk
7. Double Click on File

You are Doneeeee
 

Axcel

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Feb 17, 2021
Messages
3
Reaction score
0
AHK Script — is a free, open-source custom scripting language for Microsoft Windows, initially aimed at providing easy keyboard shortcuts or hotkeys, fast macro-creation and software automation that allows users of most levels of computer skill to automate repetitive tasks in any Windows application.

In this case, this means that script will assist with recoil. It therefore, if your recoil pattern so bad you can use this AHK.

Code:
_auto := true

~LButton::autofire()
Numlock::_auto := ! _auto
F1::ExitApp

autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
SendInput {LButton DownTemp}
Sleep 30
mouseXY(0, 1)
SendInput {LButton Up}
Sleep 25
}
else
break
} ;; loop
} ;; if
} ;; autofire()

mouseXY(x,y)
{
    DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}


You cant view this link please login.


Sleep 72, Mouse XY(0,12) Work Fine
 
Top