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...
DetectedProject Immunity - Undetectable
Looks great nice and simple
im trying to use but cant how do i start it?
Is this an Injector??
Work's good but the bunnyhop is a bit bugged
Works great for me... but PI isn't only an RCS hack.
- - - Updated - - -
No it is not.
- - - Updated - - -
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
- - - Updated - - -
No it is not.
- - - Updated - - -
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?
I'd like to know if it is too.
/ignore this message...
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 :/.
Works on CEVO w/ VMProtect?
This thread is closed for replies.
Similar Threads
Counter-Strike 2 HelpHow is uCSGO & Project Immunity "UNDETECTABLE"
2 Counter-Strike 2 DiscussionsVAC banned after using project immunityBI 0 Call of Duty 10 - Ghosts Hacks & CheatsGhost 3.5.4 MultiTool / Project V2 Undetected
80 CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) HacksCS:S Project 7 v3.9[ VAC3 Undetected]
13 Piercing Blow DiscussionsUndetected Project Blackout cham and wallhack
8
