CoolDetectedProject Immunity - Undetectable

Posts 61–75 of 131 · Page 5 of 9
Could someone help me by chance? I clicked download on the links but when I run the program in game the hacks aren't working...
Quote Originally Posted by PandaCannibal View Post
Could someone help me by chance? I clicked download on the links but when I run the program in game the hacks aren't working...
Try Running as Admin
im trying to use but cant how do i start it?
Work's good but the bunnyhop is a bit bugged
Quote Originally Posted by Qw1Kkb3an85 View Post
This isn't no recoil, it's barely an RCS..
Works great for me... but PI isn't only an RCS hack.

- - - Updated - - -

Quote Originally Posted by SirTurtle View Post
Is this an Injector??
No it is not.

- - - Updated - - -

Quote Originally Posted by xNEVENx View Post
Work's good but the bunnyhop is a bit bugged
Press the key to disable/enable it when you are, or aren't using it. Same with the rapid fire. Can bug out often, not hard to disable though
This isn't no recoil, it's barely an RCS..
is this still undetected after today's csgo update?
Quote Originally Posted by QueenKitty View Post
Why not just post the AHK Scripts used to make this?
Code:
#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
Says undetectable, yet i got vac banned the day i used it :/.
Quote Originally Posted by ninjabird112 View Post
Says undetectable, yet i got vac banned the day i used it :/.
proof?????????
Works on CEVO w/ VMProtect?
Posts 61–75 of 131 · Page 5 of 9
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?