AHK Script megathread

Posts 115 of 28 · Page 1 of 2
AHK Script megathread
Post ahk scripts here using the code tags.
Here is a simple bhop script:
Code:
F11:: Hotkey, *~$Space, Toggle
End::
ExitApp

*~$Space::
Sleep 5
Loop
{
    GetKeyState, SpaceState, Space, P
    Sleep 2
    If SpaceState = U
        break
    Send, {Blind}{Space}
}
Return
Recoil Reducer

Code:
#NoEnv
 
 
SendMode Input
 
 
SetWorkingDir %A_ScriptDir%
 
 
; iloveesl
 
 
NRA := 1
 
 
; SS
 
 
^!p::Suspend
 
 
; NR
 
 
~LButton::
 
 
while GetKeyState("LButton") & NRA
 
 
{
 
 
DllCall("mouse_event", uint, 1, int, 0, int, 3, uint, 0, int, 0)
 
 
Sleep, 15
 
 
DllCall("mouse_event", uint, 1, int, 0, int, 4, uint, 0, int, 0)
 
 
Sleep, 5
 
 
}
 
return
 
; Nades
 
 
~MButton::
 
if GetKeyState("LButton")
 
{
 
NRA := 0
 
Sleep, 3000
 
MouseClick, Left,,,,, U
 
NRA := 1
 
}
 
return
 
Insert::ExitApp

Tap Fire

Code:
$lbutton::
send {lbutton}
keywait lbutton
return
Code:
Lbutton::
{
send {RButton Down}
sleep 275
MouseClick,left
send {RButton Up}
send {RButton down}
MouseClick, Right
}
return
numpad2::suspend
end::exitapp
Flash scope for AWP/SSG/AUG/SCOUT/AUTOSNIPER
Simple AHK Bhop script
Hello, folks!

Today I am releasing a realy simple BH script for AHK to use on CS:GO.

Code:
;Improved Bhop by TNzRawR
;Press F11 to toggle
;Press End key to close the application
;Can't be detected by VAC.

F11:: Hotkey, *~$Space, Toggle

End::
ExitApp

*~$Space::
Sleep 5
Loop
{
    GetKeyState, SpaceState, Space, P
    If SpaceState = U
        break 
    Sleep 1
    Send, {Blind}{Space}
}
Return
To download Autohotkey, just google it.

You can get reported and banned, so use at your own risk.
"How do I use this?"
"What is this?"
"Just letters omg"
"Is this VAC detected?"
"What is even AHK?"

This will be the key questions to this post,so be ready to answer to them.
Quote Originally Posted by CRIOO View Post
"How do I use this?"
"What is this?"
"Just letters omg"
"Is this VAC detected?"
"What is even AHK?"

This will be the key questions to this post,so be ready to answer to them.
u forget the " is it approved?" or "wherez da fukin link!!11"
Quote Originally Posted by croatoan39 View Post
u forget the " is it approved?" or "wherez da fukin link!!11"
Killed it.
//Merged..
Code:
F6::Suspend
MButton::
+MButton::
^MButton::
WheelLeft::
WheelRight::

Loop
{
SetMouseDelay 30
Click
If (GetKeyState("MButton","P")=0)
Break
}

Rapidfire
Possible to crouch and shoot with that script.

F6 for suspending script
Middle mouse button to shoot
Rapid Fire: Press and Hold your LMB and you become a Machine gun with Pistols. VERY Useful since Pistols firing that fast are more OP than Some actual guns.
HOME Button makes the code Unpause, END button and B makes it Pause. Works Crouching, Pressing ALT or SHIFT.
Enjoy =)

Code:
home::Suspend off
end::Suspend on
B::Suspend on

$^LButton::
while GetKeyState("LButton", "P") {
Click
}
return


$LButton::
while GetKeyState("LButton", "P") {
Click
}
return


$+LButton::
while GetKeyState("LButton", "P") {
Click
}
return
Better than all the bhop scripts i've tried. Leeched from a website (I forgot) Credits to enHanced+ or whatever. F11 to toggle

;Improved Bhop by enHanced+
;Press F11 to toggle
;End key to close the application
;This NEVER will be detected by VAC

F11:: Hotkey, *~$Space, Toggle

End::
ExitApp

*~$Space::
Sleep 5
Loop
{
GetKeyState, SpaceState, Space, P
If SpaceState = U
break
Sleep 1
Send, {Blind}{Space}
}
Return
Quote Originally Posted by xettu View Post
Better than all the bhop scripts i've tried. Leeched from a website (I forgot) Credits to enHanced+ or whatever. F11 to toggle

;Improved Bhop by enHanced+
;Press F11 to toggle
;End key to close the application
;This NEVER will be detected by VAC

F11:: Hotkey, *~$Space, Toggle

End::
ExitApp

*~$Space::
Sleep 5
Loop
{
GetKeyState, SpaceState, Space, P
If SpaceState = U
break
Sleep 1
Send, {Blind}{Space}
}
Return
nice copy of 1st post.
Quote Originally Posted by gun4a2 View Post
nice copy of 1st post.
Oops, I actually didn't notice it lol. That was my bad. I did not copy it from the 1st post, I copied it from gamebanana's improved bhop.
Posts 115 of 28 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?