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 Жыл бұрын
@cazz bonjour comment on fait pour compiler les fichiers au menu ?
@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 Жыл бұрын
@@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 Жыл бұрын
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_pixel6784 ай бұрын
Best Vid i've seen till now on These video types
@blahyourmamafoo3 ай бұрын
This video is amazing! Not impossible to figure it all out manually, but this video really helps as a starting point!
@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
@flextradesteam9 ай бұрын
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@VortexServicesX2 күн бұрын
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
@Hostlyy2 жыл бұрын
finally man been looking towards this vid
@Neight187 Жыл бұрын
How can I do it that if I open the .exe the cheat-menu window and the external overlay window opens?
@A_bkheet Жыл бұрын
Iwas searching about content like you but I can't find like yoy ❤🎉🎉🎉
@Valgar14372 жыл бұрын
how cani add this overlay to a mod menu that i did following your external imgui tutorial?
@flextradesteam9 ай бұрын
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@VortexServicesX2 күн бұрын
@@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
@BaldPotatoHead2 ай бұрын
14:09 Line 23. "WNDCLASSEXW" is not green but on line 24 is green. Help please?
@sepremz2 жыл бұрын
welcome back
@Mediacy12 жыл бұрын
at around 8:45 for ImGui. If I use a 64x what do I files do I use.
@ballsack83862 жыл бұрын
i want to know aswell
@cazz2 жыл бұрын
the same files, "win32" is for x86 & x64
@Mediacy1 Жыл бұрын
@@cazz ty and how would I make an Interactable GUI that toggles certain modules on the overlay
@flextradesteam9 ай бұрын
@@Mediacy1 Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@Mediacy18 ай бұрын
@@flextradesteam Go and watch @asver8362 tutortial its more updated and works with a Gui
@AnonLinuxMint10 ай бұрын
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_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
@komaoff42402 жыл бұрын
Hey Cazz ! Hum, why when i try to launch the program, nothing appears on the screen ? Even if i copy-pasta your code :/
@wafflertinynutz Жыл бұрын
dif you get a fix?
@heisenburgerust14744 ай бұрын
offsets probably
@abhay29 Жыл бұрын
Watching this video because I am making a college project 🤪
@xillian2 жыл бұрын
Amazing video. cazz is da goat
@JakeTheDevv Жыл бұрын
So if I'm making this for a x64 bit game would I need to include the imgui win32 header?
@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 Жыл бұрын
can i use the esp from the internal and use it in the external
@wuspoppin65642 жыл бұрын
I just got recommended your game hacking video and I gotta say I'm hooked to the channel haha
@solbee774 ай бұрын
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 Жыл бұрын
Why I have black theme behind the red circle? I cant find any answers for that... could you help me with it?
@Saffier.b2 жыл бұрын
Can you pls make a vid of the esp because im new and dont know how to do all that on my own
@carnage4642 ай бұрын
Please a make part two i had fun trying to do this but i dont know how to finish
@sok_jablkowy12 ай бұрын
cazz, would this work in some way with python?
@h3reux665 Жыл бұрын
ty for this video ! It's very interesting but can you give more details when you code it would help a lot !
@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 Жыл бұрын
did you find fix for it?
@Heroicfv5 ай бұрын
I know this was a year ago but did you fix it
@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.
@nyvyme2 жыл бұрын
woah, new video (not chams p2... again...)
@TreznTM2 жыл бұрын
Awesome video. Quick question, is glfw there any key difference between doing this vs using glfw to do this?
@cazz2 жыл бұрын
I think glfw is cross-platform so it might be better haha :p
@Photon8522 жыл бұрын
can u make inventory changer for csgo?
@zidlajzcz7 ай бұрын
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 Жыл бұрын
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_ Жыл бұрын
how do i put the long equals symbol between ''if (message (the symbol) WM_Destroy)''
@HiImKyle Жыл бұрын
It's just 2 equals signs?
@trix28942 жыл бұрын
can u make another vid or tell me how to get krnl driver and stuff like that?
@cazz2 жыл бұрын
Absolutely
@trix28942 жыл бұрын
@@cazz okay thx
@ezmario4111 Жыл бұрын
how do you update the offsets?
@ningu10362 жыл бұрын
could you make a video on kernel drivers like explain them a bit ?
@tenhgoenze10072 жыл бұрын
ye great idea, i would like to know somethin about them aswell
@cazz2 жыл бұрын
Absolutely! Coming sometime in the future :)
@tenhgoenze10072 жыл бұрын
@@cazz i just gotta ask, are u able to bypass anticheats?
@xillian2 жыл бұрын
Woud love to see something like this!
@bgsand562 жыл бұрын
@@tenhgoenze1007 if ur in his discord u can see loads of ppl are doing it so i guess he can
@agentamme Жыл бұрын
is it possible to make it so mouse movement can go through the window i would really appricate if anyone answerd
@spenc2k2 жыл бұрын
Does this also work for games like rainbow six siege?
@cazz2 жыл бұрын
Yes. It would draw over, but you'd still need a driver to read player positions
@winapi2 жыл бұрын
Thank you cazz for Teaching us new Kids some pKnowledge
@Mierzw4i Жыл бұрын
I dont know what i done wrong but i have everything ok but the wh doesnt work can someome help me?
@BrycenIsTheGoat Жыл бұрын
Darnit, I just spent like 2 hours coding and learning what the stuff does and I didnt even get to use the esp
@nuoz33262 жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
or just use unsigned int lol
@KAMIOUKA Жыл бұрын
@@CodecNomad ? random wrong comment lol
@spinbot09 Жыл бұрын
How can i do this with the multibyte character set?
@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
@carlosnnn60244 ай бұрын
@@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
@stepabroz51322 жыл бұрын
Soooooooooo good video, thanks
@ypisexernasdsdsdsd10 ай бұрын
how do you get the thang
@aidan7229 Жыл бұрын
Would this be safe for the game rust with EAC?
@sheyteo71922 жыл бұрын
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?
@Corgansm2 жыл бұрын
I have the same problem lmk if you found a solution
@sheyteo71922 жыл бұрын
@@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
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 Жыл бұрын
u can do it
@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 Жыл бұрын
no
@zinouback76302 жыл бұрын
Is that lowing trust factor cuz the radar and trigger lowed the trust factor
@cazz2 жыл бұрын
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.
@deivid5612 жыл бұрын
cool video bro
@AinzOoalGown-xy1wz11 ай бұрын
This can wrok for any game?
@gridosbroke961 Жыл бұрын
Why cant i see the red dot when i run the program
@Qwerd-vu7fz Жыл бұрын
Who have problem that program compiling without error, but nothing shows change if (!back_buffer) to if (back_buffer)
@By_B0SS4 ай бұрын
no work ((
@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 Жыл бұрын
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 Жыл бұрын
is it possible to run this on mac?
@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 Жыл бұрын
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?
@MOHITKxLIVE3 ай бұрын
Can I use this on valorant
@VsasukeuchihaV2 жыл бұрын
Wait can I use this for other games like valorant?
@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 Жыл бұрын
Would this work on val? I'm not sure cause val is kernel level
@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 Жыл бұрын
will it work even on Fullscreen mode ????
@sexlover34 Жыл бұрын
😂😂
@yemlihaguler8425Ай бұрын
did u learn it ?
@monkeyplays6718 Жыл бұрын
will it work for cs2?
@dzwoneczek912411 ай бұрын
just code esp that use this overlay xd
@dragonsoul1465 Жыл бұрын
hello nice explanation. can you create and explain how a hardware spoofer works?
@火IMMORTAL火2 жыл бұрын
really good video gg
@melon-vk6zd Жыл бұрын
It would be great to learn how hwid spoof works
@chillinte2 жыл бұрын
we love cazz
@dieforelle55652 жыл бұрын
you love him for false info and absolute basic code thats cringe
@dieforelle55652 жыл бұрын
@@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
@dieforelle55652 жыл бұрын
@@bindkey Its funny because Videos like that damage the learning progress of new programmers
@Valgar14372 жыл бұрын
@@dieforelle5565 you got banned at the discord and now you are mad lol
@dieforelle55652 жыл бұрын
@@Valgar1437 i didnt got banned i left by myself cuz its a scriptkiddie paradise where just toxic wannabes are
@zeloyello Жыл бұрын
when explaining the esp u cut off line 380 and line 384
@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?
@1ceblock2 жыл бұрын
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 !!
@cazz2 жыл бұрын
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!
@1ceblock2 жыл бұрын
@@cazz THX
@hanijamal1444 Жыл бұрын
Goat channel
@Not_Xolex Жыл бұрын
Ok but what if you using x64? Why do u add win32
@cazz Жыл бұрын
Win32 is just the name of the Windows API. Win32 supports x86 and x64.
@Not_Xolex Жыл бұрын
@@cazz ok thx
@Radeon_Software2 жыл бұрын
I love you cazz 🎉
@cazz2 жыл бұрын
No u
@Radeon_Software2 жыл бұрын
@@cazz it’s me unknown the patreon 🥰
@clapbxt10 ай бұрын
Lol i came just to make my own crosshair app but hacks are cool too lol
@aow68132 жыл бұрын
welcome back
@cazz2 жыл бұрын
😘
@rtsirphysics7281 Жыл бұрын
Can it works in android...
@MORBA6222 жыл бұрын
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 Жыл бұрын
Does This work in Pubg mobile?
@uSepyTweak2 жыл бұрын
how about esp for geforce now or any other cloud gaming services?
@cazz2 жыл бұрын
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.
@uSepyTweak2 жыл бұрын
@@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.🙂
@Twin12 жыл бұрын
@@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
@arashnyb73182 жыл бұрын
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?
@horballi28472 жыл бұрын
if you want to make an external you need to have administrator rights, you modifying another process's memory
@frederikbahnsen348 Жыл бұрын
you probably shouldnt run a P2C service then lol
@BiteYt692 жыл бұрын
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
@BluescreenDev2 жыл бұрын
Android lmao, I swear you're from india
@brutal73042 жыл бұрын
I see you switched from camelCase to snake_case and changed the curly brackets to the same line 🤔
@cazz2 жыл бұрын
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?
@brutal73042 жыл бұрын
@@cazz well I prefer PascalCase
@thischannelwhack74072 жыл бұрын
2 hey could you make a tutorial to make trigger bot for gears 5
@GhostService31 Жыл бұрын
can you show how to make a external cheat for Apex Legends Plssss
@learnwithmrmachine7955 Жыл бұрын
Could you help us , make one for pubg mobile emulator ,, thank you
@elysiumyt43342 жыл бұрын
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 Жыл бұрын
what would you change
@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 Жыл бұрын
Mine doesn't want to open
@gaok1 Жыл бұрын
can u make a video talking about anti cheats and bypassing?
@rocoplays22 жыл бұрын
is it stream proof?
@cazz2 жыл бұрын
If you game capture CSGO, yes
@extasyy54272 жыл бұрын
CAZZZZ!!!!
@dinari769 Жыл бұрын
cs2?
@ester73002 жыл бұрын
can i get banned if i use this without -insecure
@Totally_Not_A_Haxxer2 жыл бұрын
why would you need a insecure tag? your not injecting the code into the game, it is external not internal.
@cazz2 жыл бұрын
can you? yes. Will you? Probably not.
@avalonnn2 жыл бұрын
thxx
@Lornsen420 Жыл бұрын
Does it work in fullscreen bro?
@sexlover34 Жыл бұрын
😐😐
@KoobiR82 жыл бұрын
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
@AlizerLeHaxor5 ай бұрын
gaming
@xyzas925 Жыл бұрын
Can u do a fivem cheats tutorial?
@stevenjohnson96602 жыл бұрын
hey cazz, I really like your video, maybe you can make an anti-aim for csgo, if u don't mind! xD