Jump to content

[Undetected] AHK SCRIPTS


PalaxeCS
 Share

Recommended Posts

F1::                 
    Suspend
    Return
*space::
    Loop                                                                                                                
    {
        GetKeyState,state,space,P
        If state = U
            Break
        Send,{space}              
        Sleep,20
    }


}F8::
if (Toggle := !Toggle) {
/::suspend
LButton::
Loop
{
SetMouseDelay 20
Click
If (GetKeyState("LButton","P")=0)
Break
}
return
}

 

_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)

}

Edited by PalaxeCS
duped
  • Like 8
  • Thanks 3
Link to comment
Share on other sites

15 minutes ago, DUMBNEKO said:

 

AutoHotkey.ahk 7_11_2020 8_37_33 AM.png

try changing this line

}F8::
if (Toggle := !Toggle) {

and turn cahnge the f8 to f5

 

so delete that line and paste this

}F5::
if (Toggle := !Toggle) {

 

the problem was the rapid fire and norecoil toggle key were the same

Edited by PalaxeCS
Link to comment
Share on other sites

2 minutes ago, PalaxeCS said:

try changing this line

}F8::
if (Toggle := !Toggle) {

and turn cahnge the f8 to f5

 

so delete that line and paste this

}F5::
if (Toggle := !Toggle) {

 

the problem was the rapid fire and norecoil toggle key were the same

if this doesnt work try deliting it 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...