IMGUI EXTERNAL OVERLAY TUTORIAL

  Рет қаралды 104,291

cazz

cazz

Күн бұрын

Пікірлер: 256
@cazz
@cazz 2 жыл бұрын
For those of you who want to make the ESP. Update the offsets (use hazedumper) and at 29:46 the cut-off line (346) is simply 0x10 (the size of each entity). Also, it’s “laggy” because I left VSync on so turn that off with Present(0U, 0U); Good luck!
@RealityV-d2r
@RealityV-d2r Жыл бұрын
@cazz bonjour comment on fait pour compiler les fichiers au menu ?
@JayRagon
@JayRagon Жыл бұрын
When I set swap_chain->present to 0U, 0U it uses 100% gpu. When i try to add a this_thread::sleep_for it gets really laggy. I want it to run without vsync but with some sort of sleep
@salzlord
@salzlord Жыл бұрын
⁠@@JayRagonyou should just be able to sleep for a few milliseconds. Won’t be draining your gpu and also it won’t be too visible for the human eye. I believe 5 microseconds would also do the job. The less time you sleep the more gpu has to work though so that might not work for everyone. Also you can just ask chatgpt or pste your code into it and ask accordingly. Best of luck
@johnmcook1
@johnmcook1 Жыл бұрын
bool GetRenderSize(HWND targetWindow, int& width, int& height) { // Get the client area size of the target window RECT clientRect; if (GetClientRect(targetWindow, &clientRect)) { width = clientRect.right - clientRect.left; height = clientRect.bottom - clientRect.top; return true; } else { return false; } } const HWND window = CreateWindowExW( WS_EX_TOPMST | WS_EX_TRANSPARENT | WS_EX_LAYERED, wc.;pszClassName, L"External Overlay", WS_POPUP, 0, 0, width, hieght, nullptr, nullptr, wc.hInstance, nullptr, );
@lord_of_pixel678
@lord_of_pixel678 4 ай бұрын
Best Vid i've seen till now on These video types
@blahyourmamafoo
@blahyourmamafoo 3 ай бұрын
This video is amazing! Not impossible to figure it all out manually, but this video really helps as a starting point!
@chavo6613
@chavo6613 Жыл бұрын
Hi Cazz, I would like to know if I can add an ImGui window in this program, because I have tried and I can't click my ImGui window and I would like to be able to render this window so that I can use it. I wait your answer. Thank you so much
@flextradesteam
@flextradesteam 9 ай бұрын
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@VortexServicesX
@VortexServicesX 2 күн бұрын
you remove WS_EX_TRANSPARENT and only keep WS_EX_LAYERED and WS_EX_TOPMOST then replace the setlayeredwindow with: SetLayeredWindowAttributes(window, RGB(0, 0, 0), 255, LWA_COLORKEY); it fixed for me and i can interact with the imgui within the render overlay
@Hostlyy
@Hostlyy 2 жыл бұрын
finally man been looking towards this vid
@Neight187
@Neight187 Жыл бұрын
How can I do it that if I open the .exe the cheat-menu window and the external overlay window opens?
@A_bkheet
@A_bkheet Жыл бұрын
Iwas searching about content like you but I can't find like yoy ❤🎉🎉🎉
@Valgar1437
@Valgar1437 2 жыл бұрын
how cani add this overlay to a mod menu that i did following your external imgui tutorial?
@flextradesteam
@flextradesteam 9 ай бұрын
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@VortexServicesX
@VortexServicesX 2 күн бұрын
@@flextradesteam you remove WS_EX_TRANSPARENT and only keep WS_EX_LAYERED and WS_EX_TOPMOST then replace the setlayeredwindow with: SetLayeredWindowAttributes(window, RGB(0, 0, 0), 255, LWA_COLORKEY); it fixed for me and i can interact with the imgui within the render overlay
@BaldPotatoHead
@BaldPotatoHead 2 ай бұрын
14:09 Line 23. "WNDCLASSEXW" is not green but on line 24 is green. Help please?
@sepremz
@sepremz 2 жыл бұрын
welcome back
@Mediacy1
@Mediacy1 2 жыл бұрын
at around 8:45 for ImGui. If I use a 64x what do I files do I use.
@ballsack8386
@ballsack8386 2 жыл бұрын
i want to know aswell
@cazz
@cazz 2 жыл бұрын
the same files, "win32" is for x86 & x64
@Mediacy1
@Mediacy1 Жыл бұрын
@@cazz ty and how would I make an Interactable GUI that toggles certain modules on the overlay
@flextradesteam
@flextradesteam 9 ай бұрын
@@Mediacy1 Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@Mediacy1
@Mediacy1 8 ай бұрын
@@flextradesteam Go and watch @asver8362 tutortial its more updated and works with a Gui
@AnonLinuxMint
@AnonLinuxMint 10 ай бұрын
can you please link maybe a copy and paste for the get system metrics part? i would like to have other resolutions supported! pls 16:22 for refresh rate at 19:42 can i have it also detect what refresh rate you currently have?
@presli481_
@presli481_ 5 ай бұрын
for anybody reading late: GetSystemMetrics(SM_CXSCREEN) = screen width GetSystemMetrics(SM_CYSCREEN) = screen height Code to get the refresh rate: DEVMODE devMode; ZeroMemory(&devMode, sizeof(devMode)); devMode.dmSize = sizeof(devMode); if (EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &devMode)) { std::cout
@komaoff4240
@komaoff4240 2 жыл бұрын
Hey Cazz ! Hum, why when i try to launch the program, nothing appears on the screen ? Even if i copy-pasta your code :/
@wafflertinynutz
@wafflertinynutz Жыл бұрын
dif you get a fix?
@heisenburgerust1474
@heisenburgerust1474 4 ай бұрын
offsets probably
@abhay29
@abhay29 Жыл бұрын
Watching this video because I am making a college project 🤪
@xillian
@xillian 2 жыл бұрын
Amazing video. cazz is da goat
@JakeTheDevv
@JakeTheDevv Жыл бұрын
So if I'm making this for a x64 bit game would I need to include the imgui win32 header?
@cazz
@cazz Жыл бұрын
Yes. "Win32" is the name of the Windows API for 32-bit and 64-bit applications. "Win32" is just the name. When windows used to be only 32-bit, they called it Win32, but when Windows became 64-bit they did not change the name.
@Wootzy69
@Wootzy69 Жыл бұрын
can i use the esp from the internal and use it in the external
@wuspoppin6564
@wuspoppin6564 2 жыл бұрын
I just got recommended your game hacking video and I gotta say I'm hooked to the channel haha
@solbee77
@solbee77 4 ай бұрын
Is there anyt chance i could screen share with you and you tell me what i did wrong because right when you set swap chain SD i start getting errors cause it doesnt recognize sd
@zdc2009
@zdc2009 Жыл бұрын
Why I have black theme behind the red circle? I cant find any answers for that... could you help me with it?
@Saffier.b
@Saffier.b 2 жыл бұрын
Can you pls make a vid of the esp because im new and dont know how to do all that on my own
@carnage464
@carnage464 2 ай бұрын
Please a make part two i had fun trying to do this but i dont know how to finish
@sok_jablkowy1
@sok_jablkowy1 2 ай бұрын
cazz, would this work in some way with python?
@h3reux665
@h3reux665 Жыл бұрын
ty for this video ! It's very interesting but can you give more details when you code it would help a lot !
@ionion348
@ionion348 Жыл бұрын
Why is that when i try to run the window it doesnt and it says it has an exception on line 111 swap_chain->GetBuffer(0U, IID_PPV_ARGS(&back_buffer)); X X is the exception I did everything correctly and builded it a couple times
@weabooxsu9386
@weabooxsu9386 Жыл бұрын
did you find fix for it?
@Heroicfv
@Heroicfv 5 ай бұрын
I know this was a year ago but did you fix it
@budgetarms
@budgetarms Жыл бұрын
You have a while(running) and in that while you have an if statement that breaks out of that loop is running is false? How does that make sense, it would break out anyway.
@nyvyme
@nyvyme 2 жыл бұрын
woah, new video (not chams p2... again...)
@TreznTM
@TreznTM 2 жыл бұрын
Awesome video. Quick question, is glfw there any key difference between doing this vs using glfw to do this?
@cazz
@cazz 2 жыл бұрын
I think glfw is cross-platform so it might be better haha :p
@Photon852
@Photon852 2 жыл бұрын
can u make inventory changer for csgo?
@zidlajzcz
@zidlajzcz 7 ай бұрын
Hey, when i try to add a menu with ImGui, I am unable to click on it, do you know how to fix it? or do i need to create another window?
@budgetarms
@budgetarms Жыл бұрын
You manually make the dotproduct of 2 vectors, do you only do that because you only use it once? Instead of making a function for it.
@Takt_
@Takt_ Жыл бұрын
how do i put the long equals symbol between ''if (message (the symbol) WM_Destroy)''
@HiImKyle
@HiImKyle Жыл бұрын
It's just 2 equals signs?
@trix2894
@trix2894 2 жыл бұрын
can u make another vid or tell me how to get krnl driver and stuff like that?
@cazz
@cazz 2 жыл бұрын
Absolutely
@trix2894
@trix2894 2 жыл бұрын
@@cazz okay thx
@ezmario4111
@ezmario4111 Жыл бұрын
how do you update the offsets?
@ningu1036
@ningu1036 2 жыл бұрын
could you make a video on kernel drivers like explain them a bit ?
@tenhgoenze1007
@tenhgoenze1007 2 жыл бұрын
ye great idea, i would like to know somethin about them aswell
@cazz
@cazz 2 жыл бұрын
Absolutely! Coming sometime in the future :)
@tenhgoenze1007
@tenhgoenze1007 2 жыл бұрын
​@@cazz i just gotta ask, are u able to bypass anticheats?
@xillian
@xillian 2 жыл бұрын
Woud love to see something like this!
@bgsand56
@bgsand56 2 жыл бұрын
@@tenhgoenze1007 if ur in his discord u can see loads of ppl are doing it so i guess he can
@agentamme
@agentamme Жыл бұрын
is it possible to make it so mouse movement can go through the window i would really appricate if anyone answerd
@spenc2k
@spenc2k 2 жыл бұрын
Does this also work for games like rainbow six siege?
@cazz
@cazz 2 жыл бұрын
Yes. It would draw over, but you'd still need a driver to read player positions
@winapi
@winapi 2 жыл бұрын
Thank you cazz for Teaching us new Kids some pKnowledge
@Mierzw4i
@Mierzw4i Жыл бұрын
I dont know what i done wrong but i have everything ok but the wh doesnt work can someome help me?
@BrycenIsTheGoat
@BrycenIsTheGoat Жыл бұрын
Darnit, I just spent like 2 hours coding and learning what the stuff does and I didnt even get to use the esp
@nuoz3326
@nuoz3326 2 жыл бұрын
Good video easy to follow, I just wish u could show the end aswell cuz im new and I made all u did but not the final product so im stuck with a half esp :/
@baro1869
@baro1869 Жыл бұрын
i reccomend to replace DWORD with uintptr_t cuz dword works only for 32-bit games and when u will go higher (64-bit game) u will be often go wrong, and ofc uintptr_t works for both
@CodecNomad
@CodecNomad Жыл бұрын
or just use unsigned int lol
@KAMIOUKA
@KAMIOUKA Жыл бұрын
@@CodecNomad ? random wrong comment lol
@spinbot09
@spinbot09 Жыл бұрын
How can i do this with the multibyte character set?
@mighty4853
@mighty4853 Жыл бұрын
this is so depressing, how do you know what comes before what, do you know this by heart ? or is there some logic behind all that, because I don't understand it, it's really complicated to really focus and follow along, because I feel like there are infinite possibilites and infinites things to know, i'm lost, help
@carlosnnn6024
@carlosnnn6024 4 ай бұрын
@@mighty4853 this topic uses a lot of different technologies to work and mixes a lot of things, process memory, Windows API, Window management, driver dev...so its normal to get lost at the start, get the "Big things" and start digging on them, when i was lost with process injection something that helped me a lot was to know the basic idea behind it "open process, search/read/write memory of the process" simple, so i go for the basic example , and then the other techniques were just variants. At the end if you just know the concept of how to do something and go to the documentation you can find the process to follow
@stepabroz5132
@stepabroz5132 2 жыл бұрын
Soooooooooo good video, thanks
@ypisexernasdsdsdsd
@ypisexernasdsdsdsd 10 ай бұрын
how do you get the thang
@aidan7229
@aidan7229 Жыл бұрын
Would this be safe for the game rust with EAC?
@sheyteo7192
@sheyteo7192 2 жыл бұрын
I just get a black screen with a red dot, i cant see through, but i have the exact same code. I checked multiple times for any typing errors. I also tried decreasing the opacity in SetLayerWindowAttributes but this just decreases the opacity of everything. Any Ideas how to fix this?
@Corgansm
@Corgansm 2 жыл бұрын
I have the same problem lmk if you found a solution
@sheyteo7192
@sheyteo7192 2 жыл бұрын
@@Corgansm Yeah i tried other ways and i came to this solution: "HWND const window = CreateWindowExW(WS_EX_TOPMOST | WS_EX_LAYERED, wc.lpszClassName, L"Overlay", NULL, CW_USEDEFAULT, CW_USEDEFAULT, width, height, nullptr, nullptr, hInstance, nullptr); SetLayeredWindowAttributes(window, RGB(0, 0, 0), 0xFF, LWA_COLORKEY); SetWindowLong(window, GWL_STYLE,WS_EX_TOPMOST | WS_EX_LAYERED);" i changed the d3d things a little a aswell let me know if it works. If not i can send u the project
@benniking3333
@benniking3333 2 жыл бұрын
@@sheyteo7192 const HWND window = CreateWindowExW( WS_EX_TOPMOST | WS_EX_TRANSPARENT | WS_EX_LAYERED,
@benniking3333
@benniking3333 2 жыл бұрын
use WS_EX_TRANSPARENT
@MinnyS420
@MinnyS420 Жыл бұрын
I have a Q I just started with programming Can we make a script swapi api for offsets and every time when there is a new update to check to pull the info and just set the new one ????
@llamazet9079
@llamazet9079 Жыл бұрын
u can do it
@volcano2647
@volcano2647 Жыл бұрын
can you make a second part to the esp i am new and dont understand how to do the last part without a tutorial
@shuxiang4716
@shuxiang4716 Жыл бұрын
no
@zinouback7630
@zinouback7630 2 жыл бұрын
Is that lowing trust factor cuz the radar and trigger lowed the trust factor
@cazz
@cazz 2 жыл бұрын
Theoretically if you made a kernel driver and ONLY used it to read game memory (never write) you could make an ESP that literally never touches the game and you’d never get banned as long as VAC stays in the usermode.
@deivid561
@deivid561 2 жыл бұрын
cool video bro
@AinzOoalGown-xy1wz
@AinzOoalGown-xy1wz 11 ай бұрын
This can wrok for any game?
@gridosbroke961
@gridosbroke961 Жыл бұрын
Why cant i see the red dot when i run the program
@Qwerd-vu7fz
@Qwerd-vu7fz Жыл бұрын
Who have problem that program compiling without error, but nothing shows change if (!back_buffer) to if (back_buffer)
@By_B0SS
@By_B0SS 4 ай бұрын
no work ((
@Petr_Olegovich446
@Petr_Olegovich446 Жыл бұрын
cazz, please help, ur discrod server cant help me, becuz there dont adequate peoples, when I asked thems about help. I dont know how to fix this Severity Code Description Project File String Suppression Status Error C 1075 "{": the wrong sexy_esp token was not found C:\Users\Administrator\Desktop\sexy_esp\src\main.cpp 24, I also don't have a red circle like you, I don't understand c++, I studied c#, I followed your steps very strictly.
@theprogaming3042
@theprogaming3042 Жыл бұрын
The error message you're seeing typically occurs when there is a syntax error in your code. It seems that there is an issue with the placement or usage of the "{" token in your code. Please double-check the line mentioned in the error message, which is line 24 in your main.cpp file. Ensure that you have correctly opened and closed all curly braces in the surrounding code. It's possible that you may have missed a closing brace or placed an opening brace in the wrong location. If you're unable to identify the specific issue, please provide the code snippet around line 24 of your main.cpp file so that I can assist you further.
@vaioskelem
@vaioskelem Жыл бұрын
is it possible to run this on mac?
@VENOM-kb8pu
@VENOM-kb8pu Жыл бұрын
Everyone. If you tried to copy the esp and it didn't work not displaying anything, and if you actually debugged and tried some angles and sometiems a box will show. That is because of the w2s function, atleast what happened to me. You need to be very careful in copying this
@andersongoncalves4574
@andersongoncalves4574 Жыл бұрын
Man I have the same problem and I couldn't find the cause even watching the video countless times, what did you do in this case?
@MOHITKxLIVE
@MOHITKxLIVE 3 ай бұрын
Can I use this on valorant
@VsasukeuchihaV
@VsasukeuchihaV 2 жыл бұрын
Wait can I use this for other games like valorant?
@scurity8698
@scurity8698 Жыл бұрын
vac is usermode so you can just write your own kernel driver and bypass it with an external program. Vanguard is kernel mode so it is significantly more difficult to fool.
@43alpha
@43alpha Жыл бұрын
Would this work on val? I'm not sure cause val is kernel level
@cazz
@cazz Жыл бұрын
This would work if you have a kernel driver that can access Valorant’s memory. This is just an overlay tutorial. How you access memory is up to you!
@ImMagicDesigns
@ImMagicDesigns Жыл бұрын
will it work even on Fullscreen mode ????
@sexlover34
@sexlover34 Жыл бұрын
😂😂
@yemlihaguler8425
@yemlihaguler8425 Ай бұрын
did u learn it ?
@monkeyplays6718
@monkeyplays6718 Жыл бұрын
will it work for cs2?
@dzwoneczek9124
@dzwoneczek9124 11 ай бұрын
just code esp that use this overlay xd
@dragonsoul1465
@dragonsoul1465 Жыл бұрын
hello nice explanation. can you create and explain how a hardware spoofer works?
@火IMMORTAL火
@火IMMORTAL火 2 жыл бұрын
really good video gg
@melon-vk6zd
@melon-vk6zd Жыл бұрын
It would be great to learn how hwid spoof works
@chillinte
@chillinte 2 жыл бұрын
we love cazz
@dieforelle5565
@dieforelle5565 2 жыл бұрын
you love him for false info and absolute basic code thats cringe
@dieforelle5565
@dieforelle5565 2 жыл бұрын
@@bindkey I program my own cheats and I have my own bypass so I didn’t searched here for help I just wondered where the script kiddie hotspot is
@dieforelle5565
@dieforelle5565 2 жыл бұрын
@@bindkey Its funny because Videos like that damage the learning progress of new programmers
@Valgar1437
@Valgar1437 2 жыл бұрын
@@dieforelle5565 you got banned at the discord and now you are mad lol
@dieforelle5565
@dieforelle5565 2 жыл бұрын
@@Valgar1437 i didnt got banned i left by myself cuz its a scriptkiddie paradise where just toxic wannabes are
@zeloyello
@zeloyello Жыл бұрын
when explaining the esp u cut off line 380 and line 384
@TegridyMadeGames
@TegridyMadeGames Жыл бұрын
Does it avoid detection due to the games anti-cheat being not great as other games or is it because its just more unknown, like a self made virus?
@1ceblock
@1ceblock 2 жыл бұрын
i wanna make external playeresp for escape from tarkov which uses battleye anticheat. Will this tutorial work? Also if you could make a video explaining kernel drivers and root level anti cheats that would be very helpful. THX & u deserve more subs !!
@cazz
@cazz 2 жыл бұрын
Yes, this overlay will work if you have a driver to use it with. Ive used this exact method in my own private cheats. And yes, I will do a video about drivers quite soon. Cheers!
@1ceblock
@1ceblock 2 жыл бұрын
@@cazz THX
@hanijamal1444
@hanijamal1444 Жыл бұрын
Goat channel
@Not_Xolex
@Not_Xolex Жыл бұрын
Ok but what if you using x64? Why do u add win32
@cazz
@cazz Жыл бұрын
Win32 is just the name of the Windows API. Win32 supports x86 and x64.
@Not_Xolex
@Not_Xolex Жыл бұрын
@@cazz ok thx
@Radeon_Software
@Radeon_Software 2 жыл бұрын
I love you cazz 🎉
@cazz
@cazz 2 жыл бұрын
No u
@Radeon_Software
@Radeon_Software 2 жыл бұрын
@@cazz it’s me unknown the patreon 🥰
@clapbxt
@clapbxt 10 ай бұрын
Lol i came just to make my own crosshair app but hacks are cool too lol
@aow6813
@aow6813 2 жыл бұрын
welcome back
@cazz
@cazz 2 жыл бұрын
😘
@rtsirphysics7281
@rtsirphysics7281 Жыл бұрын
Can it works in android...
@MORBA622
@MORBA622 2 жыл бұрын
could you make video including aimbot and other features you maked external video 9 months ago that would be nice of you to make that
@Prriyaanshu
@Prriyaanshu Жыл бұрын
Does This work in Pubg mobile?
@uSepyTweak
@uSepyTweak 2 жыл бұрын
how about esp for geforce now or any other cloud gaming services?
@cazz
@cazz 2 жыл бұрын
Wow, that’s an interesting question. Because you don’t have access to the game running on your computer (it’s being streamed) the ENTIRE game is basically sever-sided. This means that you can’t access any memory. I think, to make an aimbot for those games you’d use some pixel/color aimbot to detect (rather poorly) the enemies and then you can use the Windows API to move your mouse. I don’t think an ESP is possible but I stand to be corrected. This is not my area of expertise.
@uSepyTweak
@uSepyTweak 2 жыл бұрын
​@@cazz Thank you for the reply! Well, I've been searching for a while, and I learned some things. About the ESP, yes, it is not possible because if you want to download it, you have to get access to the streaming machine, which is basically impossible, there are some videos of how to download things on the computer of Geforce Now or have the access but it is everything outdated. Trying to have access to the computer I believe that is a waste of time. The aimbot is also a waste of time (in my point of view ) because you'll spend a lot of time picking pixel by pixel of characters and it will still be very buggy. Again, thanks for answering and I hope I've clarified something for you.🙂
@Twin1
@Twin1 2 жыл бұрын
@@cazz My friend knows this guy named Android and he got it working. he got to exploit the computers to download a file and it worked
@arashnyb7318
@arashnyb7318 2 жыл бұрын
nice vid i have been making a external p2c but I don't know how to disable run as administrator after building the project Can you help me by any chance?
@horballi2847
@horballi2847 2 жыл бұрын
if you want to make an external you need to have administrator rights, you modifying another process's memory
@frederikbahnsen348
@frederikbahnsen348 Жыл бұрын
you probably shouldnt run a P2C service then lol
@BiteYt69
@BiteYt69 2 жыл бұрын
Can u make something about ImGui android as mod menus, I made something with this, but its still kinda buggy, needed help with this as my ideas got saturated at this point
@BluescreenDev
@BluescreenDev 2 жыл бұрын
Android lmao, I swear you're from india
@brutal7304
@brutal7304 2 жыл бұрын
I see you switched from camelCase to snake_case and changed the curly brackets to the same line 🤔
@cazz
@cazz 2 жыл бұрын
Yeah, I went through a style crisis. I’ve come to realize that style depends on the project especially because C and C++ are so unrestrained. What do you prefer?
@brutal7304
@brutal7304 2 жыл бұрын
@@cazz well I prefer PascalCase
@thischannelwhack7407
@thischannelwhack7407 2 жыл бұрын
2 hey could you make a tutorial to make trigger bot for gears 5
@GhostService31
@GhostService31 Жыл бұрын
can you show how to make a external cheat for Apex Legends Plssss
@learnwithmrmachine7955
@learnwithmrmachine7955 Жыл бұрын
Could you help us , make one for pubg mobile emulator ,, thank you
@elysiumyt4334
@elysiumyt4334 2 жыл бұрын
This might be good to learn from or for testing purposes. But you do no want to use this in any modern game. You make use of the topmost flag which is a instant red flag for all modern anti cheats.
@riley1426
@riley1426 Жыл бұрын
what would you change
@dire284
@dire284 Жыл бұрын
lol I've been using layered topmost on BE for ~3 months and no ban. Definitely is a flag tho so be wary.
@Not_Xolex
@Not_Xolex Жыл бұрын
Mine doesn't want to open
@gaok1
@gaok1 Жыл бұрын
can u make a video talking about anti cheats and bypassing?
@rocoplays2
@rocoplays2 2 жыл бұрын
is it stream proof?
@cazz
@cazz 2 жыл бұрын
If you game capture CSGO, yes
@extasyy5427
@extasyy5427 2 жыл бұрын
CAZZZZ!!!!
@dinari769
@dinari769 Жыл бұрын
cs2?
@ester7300
@ester7300 2 жыл бұрын
can i get banned if i use this without -insecure
@Totally_Not_A_Haxxer
@Totally_Not_A_Haxxer 2 жыл бұрын
why would you need a insecure tag? your not injecting the code into the game, it is external not internal.
@cazz
@cazz 2 жыл бұрын
can you? yes. Will you? Probably not.
@avalonnn
@avalonnn 2 жыл бұрын
thxx
@Lornsen420
@Lornsen420 Жыл бұрын
Does it work in fullscreen bro?
@sexlover34
@sexlover34 Жыл бұрын
😐😐
@KoobiR8
@KoobiR8 2 жыл бұрын
this is great video thanks, but ima ask you can you make video showing how you can hook the cheat into any app that have overlay, for example Discord and than from the discord to the game, i hope you understand what i mean, for example my friend have external cheat, the steps to run the cheat you most have steam on than run his loader than his loader will hook into steam than you open the game and boom the cheat running with no CMD open, but if you close steam cheat will close to
@AlizerLeHaxor
@AlizerLeHaxor 5 ай бұрын
gaming
@xyzas925
@xyzas925 Жыл бұрын
Can u do a fivem cheats tutorial?
@stevenjohnson9660
@stevenjohnson9660 2 жыл бұрын
hey cazz, I really like your video, maybe you can make an anti-aim for csgo, if u don't mind! xD
@skxrh3178
@skxrh3178 2 жыл бұрын
cmd->viewangles.x = 89; cmd->viewangles.y += 180;
@skxrh3178
@skxrh3178 2 жыл бұрын
aa is so easy
@stevenjohnson9660
@stevenjohnson9660 2 жыл бұрын
Thanks!
@ezclapz650
@ezclapz650 Жыл бұрын
I got discord?
@Icemods1337
@Icemods1337 2 жыл бұрын
Omg so 1337!
CS:GO RADAR HACK IN 10 MINUTES
8:03
cazz
Рет қаралды 39 М.
WHAT IS HOOKING?
7:19
cazz
Рет қаралды 41 М.
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
USE COMPOSITION trust me.
10:00
Nesi
Рет қаралды 141 М.
4 Months of Game Programming With My Own Engine
21:30
jdh
Рет қаралды 499 М.
HOW AIMBOTS WORK
8:36
cazz
Рет қаралды 1,1 МЛН
When Optimisations Work, But for the Wrong Reasons
22:19
SimonDev
Рет қаралды 1,1 МЛН
Writing My Own Database From Scratch
42:00
Tony Saro
Рет қаралды 260 М.
HACKING UNITY GAMES (FOR NOOBS)
16:11
cazz
Рет қаралды 100 М.
Creating a window - Software from Scratch
1:04:12
Muukid
Рет қаралды 163 М.
CS2 Cheat Dev on Valve's BAN Policy...
18:31
Sparkles
Рет қаралды 269 М.
You Should Learn C++ (for hacking games)
6:11
cazz
Рет қаралды 466 М.
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН