IMGUI EXTERNAL OVERLAY TUTORIAL

  Рет қаралды 107,875

cazz

cazz

Күн бұрын

Пікірлер: 257
@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, );
@blahyourmamafoo
@blahyourmamafoo 5 ай бұрын
This video is amazing! Not impossible to figure it all out manually, but this video really helps as a starting point!
@A_bkheet
@A_bkheet Жыл бұрын
Iwas searching about content like you but I can't find like yoy ❤🎉🎉🎉
@sepremz
@sepremz 2 жыл бұрын
welcome back
@Hostlyy
@Hostlyy 2 жыл бұрын
finally man been looking towards this vid
@xillian
@xillian 2 жыл бұрын
Amazing video. cazz is da goat
@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 10 ай бұрын
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@VortexServicesX
@VortexServicesX Ай бұрын
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
@hanijamal1444
@hanijamal1444 Жыл бұрын
Goat channel
@wuspoppin6564
@wuspoppin6564 2 жыл бұрын
I just got recommended your game hacking video and I gotta say I'm hooked to the channel haha
@Neight187
@Neight187 Жыл бұрын
How can I do it that if I open the .exe the cheat-menu window and the external overlay window opens?
@carnage464
@carnage464 4 ай бұрын
Please a make part two i had fun trying to do this but i dont know how to finish
@aow6813
@aow6813 2 жыл бұрын
welcome back
@cazz
@cazz 2 жыл бұрын
😘
@h3reux665
@h3reux665 Жыл бұрын
ty for this video ! It's very interesting but can you give more details when you code it would help a lot !
@stepabroz5132
@stepabroz5132 2 жыл бұрын
Soooooooooo good video, thanks
@BaldPotatoHead
@BaldPotatoHead 4 ай бұрын
14:09 Line 23. "WNDCLASSEXW" is not green but on line 24 is green. Help please?
@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
@Valgar1437
@Valgar1437 2 жыл бұрын
how cani add this overlay to a mod menu that i did following your external imgui tutorial?
@flextradesteam
@flextradesteam 10 ай бұрын
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@VortexServicesX
@VortexServicesX Ай бұрын
@@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
@solbee77
@solbee77 6 ай бұрын
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
@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
@abhay29
@abhay29 2 жыл бұрын
Watching this video because I am making a college project 🤪
@deivid561
@deivid561 2 жыл бұрын
cool video bro
@extasyy5427
@extasyy5427 2 жыл бұрын
CAZZZZ!!!!
@zidlajzcz
@zidlajzcz 9 ай бұрын
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?
@AnonLeska
@AnonLeska Жыл бұрын
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_ 7 ай бұрын
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
@nyvyme
@nyvyme 2 жыл бұрын
woah, new video (not chams p2... again...)
@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
@winapi
@winapi 2 жыл бұрын
Thank you cazz for Teaching us new Kids some pKnowledge
@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.
@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 2 жыл бұрын
@@cazz ty and how would I make an Interactable GUI that toggles certain modules on the overlay
@flextradesteam
@flextradesteam 10 ай бұрын
@@Mediacy1 Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@Mediacy1
@Mediacy1 10 ай бұрын
@@flextradesteam Go and watch @asver8362 tutortial its more updated and works with a Gui
@KarumiOwner
@KarumiOwner Ай бұрын
Severity Code Description Project File Line Suppression State Details Error C1075 '{': no matching token found esp1 C:\Users\Riley\source epos\esp1\esp1\src\main.cpp 26 how do i fix?
@budgetarms
@budgetarms 2 жыл бұрын
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.
@avalonnn
@avalonnn 2 жыл бұрын
thxx
@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 6 ай бұрын
offsets probably
@Wootzy69
@Wootzy69 Жыл бұрын
can i use the esp from the internal and use it in the external
@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 :/
@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
@sok_jablkowy1
@sok_jablkowy1 4 ай бұрын
cazz, would this work in some way with python?
@zdc2009
@zdc2009 2 жыл бұрын
Why I have black theme behind the red circle? I cant find any answers for that... could you help me with 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
@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 6 ай бұрын
@@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
@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 🥰
@agentamme
@agentamme 2 жыл бұрын
is it possible to make it so mouse movement can go through the window i would really appricate if anyone answerd
@ypisexernasdsdsdsd
@ypisexernasdsdsdsd Жыл бұрын
how do you get the thang
@Mierzw4i
@Mierzw4i Жыл бұрын
I dont know what i done wrong but i have everything ok but the wh doesnt work can someome help me?
@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
@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 7 ай бұрын
I know this was a year ago but did you fix it
@MOHITKxLIVE
@MOHITKxLIVE 5 ай бұрын
Can I use this on valorant
@Photon852
@Photon852 2 жыл бұрын
can u make inventory changer for csgo?
@spinbot09
@spinbot09 Жыл бұрын
How can i do this with the multibyte character set?
@AinzOoalGown-xy1wz
@AinzOoalGown-xy1wz Жыл бұрын
This can wrok for any game?
@火IMMORTAL火
@火IMMORTAL火 2 жыл бұрын
really good video gg
@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?
@gridosbroke961
@gridosbroke961 2 жыл бұрын
Why cant i see the red dot when i run the program
@aidan7229
@aidan7229 Жыл бұрын
Would this be safe for the game rust with EAC?
@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
@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?
@zeloyello
@zeloyello 2 жыл бұрын
when explaining the esp u cut off line 380 and line 384
@budgetarms
@budgetarms 2 жыл бұрын
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.
@baro1869
@baro1869 2 жыл бұрын
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
@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
@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
@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.
@melon-vk6zd
@melon-vk6zd Жыл бұрын
It would be great to learn how hwid spoof works
@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
@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.
@ezmario4111
@ezmario4111 2 жыл бұрын
how do you update the offsets?
@vaioskelem
@vaioskelem Жыл бұрын
is it possible to run this on mac?
@TegridyMadeGames
@TegridyMadeGames 2 жыл бұрын
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?
@ImMagicDesigns
@ImMagicDesigns Жыл бұрын
will it work even on Fullscreen mode ????
@tullebukk884
@tullebukk884 Жыл бұрын
😂😂
@yemlihaguler8425
@yemlihaguler8425 3 ай бұрын
did u learn it ?
@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 6 ай бұрын
no work ((
@hz10022
@hz10022 2 жыл бұрын
Wait can I use this for other games like valorant?
@scurity8698
@scurity8698 2 жыл бұрын
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.
@dragonsoul1465
@dragonsoul1465 Жыл бұрын
hello nice explanation. can you create and explain how a hardware spoofer works?
@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
@clapbxt
@clapbxt Жыл бұрын
Lol i came just to make my own crosshair app but hacks are cool too lol
@AlizerLeHaxor
@AlizerLeHaxor 7 ай бұрын
gaming
@rtsirphysics7281
@rtsirphysics7281 Жыл бұрын
Can it works in android...
@thischannelwhack7407
@thischannelwhack7407 2 жыл бұрын
2 hey could you make a tutorial to make trigger bot for gears 5
@mrmata7460
@mrmata7460 Жыл бұрын
wow
@monkeyplays6718
@monkeyplays6718 Жыл бұрын
will it work for cs2?
@dzwoneczek9124
@dzwoneczek9124 Жыл бұрын
just code esp that use this overlay xd
@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!
@GhostService31
@GhostService31 2 жыл бұрын
can you show how to make a external cheat for Apex Legends Plssss
@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
@learnwithmrmachine7955
@learnwithmrmachine7955 2 жыл бұрын
Could you help us , make one for pubg mobile emulator ,, thank you
@Prriyaanshu
@Prriyaanshu Жыл бұрын
Does This work in Pubg mobile?
@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
@gaok1
@gaok1 Жыл бұрын
can u make a video talking about anti cheats and bypassing?
@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
@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
@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 Жыл бұрын
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
@BigBoss-wb4ux
@BigBoss-wb4ux 3 ай бұрын
How to compile a android kernel driver with kernel
@Not_Xolex
@Not_Xolex Жыл бұрын
Mine doesn't want to open
@xyzas925
@xyzas925 Жыл бұрын
Can u do a fivem cheats tutorial?
@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
@KingSkib
@KingSkib 2 жыл бұрын
13:44
@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
@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!
@rocoplays2
@rocoplays2 2 жыл бұрын
is it stream proof?
@cazz
@cazz 2 жыл бұрын
If you game capture CSGO, yes
@Icemods1337
@Icemods1337 2 жыл бұрын
Omg so 1337!
@ezclapz650
@ezclapz650 Жыл бұрын
I got discord?
CS:GO RADAR HACK IN 10 MINUTES
8:03
cazz
Рет қаралды 41 М.
WHAT IS HOOKING?
7:19
cazz
Рет қаралды 43 М.
Strange dances 😂 Squid Game
00:22
عائلة ابو رعد Abo Raad family
Рет қаралды 29 МЛН
Мем про дорожку
00:38
Max Maximov
Рет қаралды 4,5 МЛН
Непосредственно Каха - бургер
00:27
К-Media
Рет қаралды 3,2 МЛН
AI exploits a gamebreaking bug in Trackmania
23:13
Yosh
Рет қаралды 2,1 МЛН
I Trapped Myself in a Minecraft Time Loop
18:39
Tombino
Рет қаралды 407 М.
AI Learns to Play SUIKA GAME
13:46
Code Bullet
Рет қаралды 4,1 МЛН
HOW AIMBOTS WORK
8:36
cazz
Рет қаралды 1,2 МЛН
Let's Program Doom - Part 1
25:13
3DSage
Рет қаралды 487 М.
What C++ Project I would do as a beginner!
4:05
Low Level Game Dev
Рет қаралды 23 М.
You Should Learn C++ (for hacking games)
6:11
cazz
Рет қаралды 469 М.
Strange dances 😂 Squid Game
00:22
عائلة ابو رعد Abo Raad family
Рет қаралды 29 МЛН