Detected [RELEASE]CS:GO - AHK Recoil Control Script

Stato
Discussione chiusa ad ulteriori risposte.

Mich43

Utente Storico
28 Dicembre 2009
1,603
61
467
683
Ultima modifica da un moderatore:
Codice:
[COLOR=#333333]#NoEnv
[/COLOR]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, .5, uint, 0, int, 0)
Sleep, 15
DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
Sleep, 5
}
return

; Nades
~MButton::
if GetKeyState("LButton")
{
NRA := 0
Sleep, 3000
MouseClick, Left,,,,, U
NRA := 1
}
return
 [COLOR=#333333]Insert::ExitApp[/COLOR]

Attivazione/Disattivazione ctrl + alt + p

Come farlo funzionare:

Installare e scaricare AHK.
Aprire un qualsiasi editor di testa, incollare il codice sopra postato e salvare il file con estensione .AHK.
Avviare il file appena creato.

Questo piccolo script vi aiuta con il controllo del recoil(abbasserà automaticamente la mira al posto vostro).

RICORDATE: USATE QUESTO SCRIPT A VOSTRO RISCHIO E PERICOLO.
In ogni caso è molto difficile che vi bannino se non per overwatch.

Fonte mpgh.
 
  • Mi piace
Reazioni: ImDolan
Ciao, ho provato a usarla, appena la apro mi da questo errore:

Error at line 1

Line Text:#NoEnvSendMode Input
Error: This line don't contain a recognized action

The Program Will Exit.
 
Copiato tutto, blocco note e salvato in AHK.

#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, .5, uint, 0, int, 0)
Sleep, 15
DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
Sleep, 5
}
return

; Nades
~MButton::
if GetKeyState("LButton")
{
NRA := 0
Sleep, 3000
MouseClick, Left,,,,, U
NRA := 1
}
return
Insert::ExitApp
 
prova cosi
Codice:
[COLOR=#333333]#NoEnv[/COLOR]
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, .5, uint, 0, int, 0)
Sleep, 15
DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
Sleep, 5
}
return

; Nades
~MButton::
if GetKeyState("LButton")
{
NRA := 0
Sleep, 3000
MouseClick, Left,,,,, U
NRA := 1
}
return
[COLOR=#333333]Insert::ExitApp[/COLOR]
 
Stato
Discussione chiusa ad ulteriori risposte.