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!
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
@@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
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
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
@@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
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?
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
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?
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.
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
@@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
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.
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
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.
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 ????
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 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
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 :/
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.
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.
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.
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 !!
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!
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
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.
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?
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
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?
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.
@@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.🙂
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
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
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!
@cazz bonjour comment on fait pour compiler les fichiers au menu ?
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
@@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
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,
);
welcome back
This video is amazing! Not impossible to figure it all out manually, but this video really helps as a starting point!
finally man been looking towards this vid
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
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
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
Amazing video. cazz is da goat
How can I do it that if I open the .exe the cheat-menu window and the external overlay window opens?
at around 8:45 for ImGui. If I use a 64x what do I files do I use.
i want to know aswell
the same files, "win32" is for x86 & x64
@@cazz ty and how would I make an Interactable GUI that toggles certain modules on the overlay
@@Mediacy1 Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@@flextradesteam Go and watch @asver8362 tutortial its more updated and works with a Gui
14:09 Line 23. "WNDCLASSEXW" is not green but on line 24 is green. Help please?
Iwas searching about content like you but I can't find like yoy ❤🎉🎉🎉
how cani add this overlay to a mod menu that i did following your external imgui tutorial?
Bro, u find solution? Sorry it was 1 y ago, but i have same problem. :(
@@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
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?
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
welcome back
😘
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
can i use the esp from the internal and use it in the external
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?
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?
Goat channel
Why I have black theme behind the red circle? I cant find any answers for that... could you help me with it?
So if I'm making this for a x64 bit game would I need to include the imgui win32 header?
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.
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
@@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
Hey Cazz ! Hum, why when i try to launch the program, nothing appears on the screen ? Even if i copy-pasta your code :/
dif you get a fix?
offsets probably
is it possible to make it so mouse movement can go through the window i would really appricate if anyone answerd
Can you pls make a vid of the esp because im new and dont know how to do all that on my own
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.
I dont know what i done wrong but i have everything ok but the wh doesnt work can someome help me?
how do you get the thang
Why cant i see the red dot when i run the program
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
did you find fix for it?
I know this was a year ago but did you fix it
How can i do this with the multibyte character set?
cazz, would this work in some way with python?
Awesome video. Quick question, is glfw there any key difference between doing this vs using glfw to do this?
I think glfw is cross-platform so it might be better haha :p
how do i put the long equals symbol between ''if (message (the symbol) WM_Destroy)''
It's just 2 equals signs?
Please a make part two i had fun trying to do this but i dont know how to finish
could you make a video on kernel drivers like explain them a bit ?
ye great idea, i would like to know somethin about them aswell
Absolutely! Coming sometime in the future :)
@@cazz i just gotta ask, are u able to bypass anticheats?
Woud love to see something like this!
@@tenhgoenze1007 if ur in his discord u can see loads of ppl are doing it so i guess he can
can you make a second part to the esp i am new and dont understand how to do the last part without a tutorial
no
I just got recommended your game hacking video and I gotta say I'm hooked to the channel haha
This can wrok for any game?
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.
Soooooooooo good video, thanks
how do you update the offsets?
can u make inventory changer for csgo?
Can I use this on valorant
can u make another vid or tell me how to get krnl driver and stuff like that?
Absolutely
@@cazz okay thx
is it possible to run this on mac?
Would this be safe for the game rust with EAC?
Does this also work for games like rainbow six siege?
Yes. It would draw over, but you'd still need a driver to read player positions
Who have problem that program compiling without error, but nothing shows change if (!back_buffer) to if (back_buffer)
no work ((
Is that lowing trust factor cuz the radar and trigger lowed the trust factor
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.
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 ????
u can do it
CAZZZZ!!!!
will it work even on Fullscreen mode ????
😂😂
did u learn it ?
How to compile a android kernel driver with kernel
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?
I have the same problem lmk if you found a solution
@@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
@@sheyteo7192 const HWND window = CreateWindowExW(
WS_EX_TOPMOST | WS_EX_TRANSPARENT | WS_EX_LAYERED,
use WS_EX_TRANSPARENT
ty for this video ! It's very interesting but can you give more details when you code it would help a lot !
Darnit, I just spent like 2 hours coding and learning what the stuff does and I didnt even get to use the esp
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 :/
Can it works in android...
Watching this video because I am making a college project 🤪
Wait can I use this for other games like valorant?
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.
cool video bro
will it work for cs2?
just code esp that use this overlay xd
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.
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.
Would this work on val? I'm not sure cause val is kernel level
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!
hello nice explanation. can you create and explain how a hardware spoofer works?
Mine doesn't want to open
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 !!
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!
@@cazz THX
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?
woah, new video
(not chams p2... again...)
I love you cazz 🎉
No u
@@cazz it’s me unknown the patreon 🥰
when explaining the esp u cut off line 380 and line 384
Ok but what if you using x64? Why do u add win32
Win32 is just the name of the Windows API. Win32 supports x86 and x64.
@@cazz ok thx
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
or just use unsigned int lol
@@CodecNomad ? random wrong comment lol
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.
what would you change
lol I've been using layered topmost on BE for ~3 months and no ban. Definitely is a flag tho so be wary.
is it stream proof?
If you game capture CSGO, yes
It would be great to learn how hwid spoof works
Does This work in Pubg mobile?
we love cazz
you love him for false info and absolute basic code thats cringe
@@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
@@bindkey Its funny because Videos like that damage the learning progress of new programmers
@@dieforelle5565 you got banned at the discord and now you are mad lol
@@Valgar1437 i didnt got banned i left by myself cuz its a scriptkiddie paradise where just toxic wannabes are
I see you switched from camelCase to snake_case and changed the curly brackets to the same line 🤔
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?
@@cazz well I prefer PascalCase
Thank you cazz for Teaching us new Kids some pKnowledge
cs2?
2 hey could you make a tutorial to make trigger bot for gears 5
Could you help us , make one for pubg mobile emulator ,, thank you
can i get banned if i use this without -insecure
why would you need a insecure tag? your not injecting the code into the game, it is external not internal.
can you? yes. Will you? Probably not.
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
Android lmao, I swear you're from india
can you show how to make a external cheat for Apex Legends Plssss
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
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?
if you want to make an external you need to have administrator rights, you modifying another process's memory
you probably shouldnt run a P2C service then lol
how about esp for geforce now or any other cloud gaming services?
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.
@@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.🙂
@@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
Does it work in fullscreen bro?
😐😐
I got discord?
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
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?
can u make a video talking about anti cheats and bypassing?
thxx
really good video gg
can u make a vid abt keybind system for imgui ?
Lol i came just to make my own crosshair app but hacks are cool too lol
its safe to use on FACEIT CSGO ANTICHEAT ? its detected or no tell me !
10 year undetected for faceit
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
gaming