Skocz do zawartości
Dzień Dziecka z CSHacked

Project Immunity CS:GO AutoHotKey Source Code


Czarny
# CSH External VIP Project

Masz dosyć problemów z czynnikiem zaufania w CS2 lub notorycznymi banami?

Sprawdź CSH External VIP Project.


Więcej informacji  

Rekomendowane odpowiedzi

Kod źródłowy Project Immunity napisanego w AutoHotkey przeznaczony do gry na Counter-Strike: Global Offensive.

 

#NoEnv
#singleInstance, force
SendMode Input
#IfWinNotActive Project Immunity

BHopOn = 0
;0 = off
;1 = on

rapidOn = 0
;0 = off
;1 = on

norecoilOn = 0
;0 = off
;1 = ak47
;2 = m4a4
;3 = m4a1-s
;4 = general

firstShotRecoilTimeMax = 15
firstShotRecoilTime = 0

firstShotRestTimeMax = 5
firstShotRestTime = 0

Gui, +alwaysOnTop
Gui, Show, w250 h250, Project Immunity
Gui, Add, GroupBox, x10 y10 w180 h90, BHop
Gui, Add, Text, x20 y30 vBHOPON cRed, f8: Bunny Hop: Off
Gui, Add, Text, x20 y50, Time Between Jump (Millisecond):
Gui, Add, Edit
Gui, Add, UpDown, vTIMEBETWEEN Range0-10000, 40
Gui, Add, GroupBox, x10 y110 w180 h110, Firing
Gui, Add, Text, x20 y130 w300 vRAPIDON cRed, f7: Rapid Fire: Off
Gui, Add, Text, x20 y150 w300 vNORECOILON cRed, f6: No Recoil: Off
Gui, Add, Text, x20 y170, No Recoil Amount:
Gui, Add, Edit
Gui, Add, UpDown, vNORECOILAMT Range1-8, 1
Gui, Add, Text, x10 y230 cBlue, f9: Turn Everything Off

ak47_pattern := "6,17;-8,37;5,58;1,62;-25,64;-16,57;-24,40;35,30;86,-9;45,6;-27,22;33,11;52,-18;5,10;-80,3;-38,14;-28,21;-54,-3;-67,-19;40,-4;-12,7;12,19;19,5;-37,-5;-13,12;20,-4;40,-4;60,-42;28,1"
StringSplit, ak, ak47_pattern, `;
static_multiplier := 0.4

return

*f8::

BHopOn += 1
if(BHopOn > 1)
BHopOn = 0

if(BHopOn == 0){
GuiControl, , BHOPON, f8: Bunny Hop: Off
Gui, Font, cRed
GuiControl, Font, BHOPON
}else{
GuiControl, , BHOPON, f8: Bunny Hop: On
Gui, Font, cGreen
GuiControl, Font, BHOPON
}

return

*f7::

rapidOn += 1
if(rapidOn > 1)
rapidOn = 0

if(rapidOn == 0){
GuiControl, , RAPIDON, f7: Rapid Fire: Off
Gui, Font, cRed
GuiControl, Font, RAPIDON
}else{
GuiControl, , RAPIDON, f7: Rapid Fire: On
Gui, Font, cGreen
GuiControl, Font, RAPIDON
}

return

*f6::

norecoilOn += 1
if(norecoilOn > 4)
norecoilOn = 0

if(norecoilOn == 0){
GuiControl, , NORECOILON, f6: General No Recoil: Off
Gui, Font, cRed
GuiControl, Font, NORECOILON
}else if(norecoilOn == 1){
GuiControl, , NORECOILON, f6: General No Recoil: AK-47
Gui, Font, cGreen
GuiControl, Font, NORECOILON
}else if(norecoilOn == 2){
GuiControl, , NORECOILON, f6: General No Recoil: M4A4
Gui, Font, cGreen
GuiControl, Font, NORECOILON
}else if(norecoilOn == 3){
GuiControl, , NORECOILON, f6: General No Recoil: M4A1-S
Gui, Font, cGreen
GuiControl, Font, NORECOILON
}else if(norecoilOn == 4){
GuiControl, , NORECOILON, f6: General No Recoil: General
Gui, Font, cGreen
GuiControl, Font, NORECOILON
}

return

*f9::

BHopOn = 0
rapidOn = 0
norecoilOn = 0
GuiControl, , RAPIDON, Rapid Fire: Off
Gui, Font, cRed
GuiControl, Font, RAPIDON
GuiControl, , NORECOILON, General No Recoil: Off
Gui, Font, cRed
GuiControl, Font, NORECOILON
GuiControl, , BHOPON, Bunny Hop: Off
Gui, Font, cRed
GuiControl, Font, BHOPON

return

*Up::

GuiControlGet, TIMEBETWEEN
TIMEBETWEEN := TIMEBETWEEN + 5
GuiControl, , TIMEBETWEEN, %TIMEBETWEEN%

return

*Down::

GuiControlGet, TIMEBETWEEN
TIMEBETWEEN := TIMEBETWEEN - 5
GuiControl, , TIMEBETWEEN, %TIMEBETWEEN%

return

*Space::

if(BHopOn == 1){
GuiControlGet, TIMEBETWEEN
While GetKeyState("Space", "P"){
Send {Space Down}
Sleep 20
Send {Space Up}
Sleep %TIMEBETWEEN%
}
}else{
Send {Space Down}
KeyWait, Space
Send {Space Up}
}

return

*LButton::

GuiControlGet, NORECOILAMT
if(rapidOn == 1){
While GetKeyState("LButton", "P"){
Click down
Sleep 50
Click up
Sleep 20
if(norecoilOn > 0){
mouseXY(0, NORECOILAMT)
}
}
}else{
Click down
if(norecoilOn == 4){
While GetKeyState("LButton", "P"){
if(firstShotRestTime > firstShotRestTimeMax){
if(firstShotRecoilTime > firstShotRecoilTimeMax){
mouseXY(0, NORECOILAMT)
Sleep 210
}else{
firstShotRecoilTime += 1
mouseXY(0, NORECOILAMT * 2)
Sleep 30
}
}else{
firstShotRestTime += 1
Sleep 30
}
}
}else if(norecoilOn == 1 || norecoilOn == 2 || norecoilOn == 3){
While (GetKeyState("LButton","P")){
tempHolder := ak%A_Index%
StringSplit, temp, tempHolder, `,
if(norecoilOn == 1){
temp1 := -temp1*static_multiplier*1
temp2 := temp2*(static_multiplier + 0.1)
}else if(norecoilOn == 2){
temp1 := temp1*static_multiplier*0.5
temp2 := temp2*static_multiplier
}else if(norecoilOn == 3){
temp1 := temp1*static_multiplier*0.5
temp2 := temp2*(static_multiplier - 0.1)
}
mouseXY(temp1, temp2)
ak47_sleepRate := 1000/(666/60)
Sleep %ak47_sleepRate%
}
}else{
KeyWait, LButton
}
Click up
}

firstShotRecoilTime = 0
firstShotRestTime = 0

return

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

GuiClose:
ExitApp

Pomogłem i chcesz podziękować? Zostaw up.png przy poście

CSHEx4.png

 

Szukasz taniego i bardzo dobrego cheata na legit? Wypróbuj CSH External VIP Project.

Odnośnik do komentarza

Dołącz do dyskusji

Możesz dodać zawartość już teraz a zarejestrować się później. Jeśli posiadasz już konto, zaloguj się aby dodać zawartość za jego pomocą.

Gość
Dodaj odpowiedź do tematu...

×   Wklejono zawartość z formatowaniem.   Usuń formatowanie

  Dozwolonych jest tylko 75 emoji.

×   Odnośnik został automatycznie osadzony.   Przywróć wyświetlanie jako odnośnik

×   Przywrócono poprzednią zawartość.   Wyczyść edytor

×   Nie możesz bezpośrednio wkleić grafiki. Dodaj lub załącz grafiki z adresu URL.

×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę. Regulamin. Polityka prywatności