Тёмный

Combine Features into a MULTIHACK - CSGO External Tutorial 

cazz
Подписаться 145 тыс.
Просмотров 34 тыс.
50% 1

Learn how to combine all the external features from my tutorials into a single executable, external cheat ft. multi-threading. This video has been requested so many times, but I was not sure how to adequately explain this concept, but regardless, here it is and I hope you enjoy it!
💎 Source code is available for my Patrons!
/ cazzwastaken
💎 Join our community over on Discord!
/ discord
→ Twitter: / cazzwastaken
→ GitHub: github.com/cazzwastaken
→ Email: cazzwastaken@gmail.com
🕙 Timestamps 🕙
0:00 - Welcome
0:55 - Project Setup
2:46 - Globals
6:05 - Adding features to menu
8:02 - Memory Initialization
10:10 - Hack thread
14:05 - Making the thread
16:42 - Coding features
24:45 - Testing
25:51 - Final thoughts
📝Resources 📝
→ ImGui Window: github.com/cazzwastaken/borde...
→ Memory Class: github.com/cazzwastaken/pro-b...
→ Offsets: github.com/frk1/hazedumper/bl...
⚡See More ⚡
→ Internal Menu: • IMGUI INTERNAL DIRECTX...
→ Aimbot: • MAKE AIMBOT IN 10 MINUTES
→ No Recoil: • REMOVE RECOIL IN CS:GO
→ Glow ESP: • MAKE GLOW ESP IN 10 MI...
→ Skin Changer: • SKIN CHANGER IN 10 MIN...
Shout out to Chris for the thumbnail 💖
Follow him here: / @lucid_horizons

Опубликовано:

 

5 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 117   
@SwedishTwat
@SwedishTwat 2 года назад
will steal this for end of my series :) quality vids as always cazz, almost over 1k now 👌
@unhabilitated9104
@unhabilitated9104 5 месяцев назад
Plot twist, cazz is the same guy as twat but with a voice changer xddd
@kryptobuilds
@kryptobuilds 2 года назад
I just wanna say thanks my guy, I've tried to learn things from other creators and tbh, it never went well, things was always missing or they never explained things properly, I've followed your series and are thankful I have learned from you, I can honestly say with your series, I learned straight way... Thankyou my guy.
@cazz
@cazz 2 года назад
I appreciate this more than you know, and you are very welcome. I try my best and comments like this make it worth while!
@userofgoogle222
@userofgoogle222 Год назад
Thanks for making this, it really helped me!
@cazz
@cazz Год назад
Glad it helped!
@HITCOMMUNITYY
@HITCOMMUNITYY 2 года назад
thanks for taking my request :D
@cazz
@cazz 2 года назад
Thanks for the idea!
@MORBA622
@MORBA622 Год назад
thanks everything is working
@francomalherbe1757
@francomalherbe1757 2 года назад
hello cazz, im a big fan
@ytzzn
@ytzzn Год назад
Waiting for this one in internal :D
@koppitent
@koppitent 2 года назад
Is it only me or does the localplayer not work anymore. I tried out many things like a useless std:: in front of it in my code but it always gives me completly wrong summarys.
@r0xt0
@r0xt0 Год назад
for the glow color im getting an error "argument type of float (*)[4] is not compatible with parameter of type float" my code for the glowColor global variable is inline float glowColor[0] = {1.f, 0.f, 0.f, 1.f} can anyone help
@copypaste6401
@copypaste6401 2 года назад
cazz you are hero
@cazz
@cazz 2 года назад
u r qt
@cgdonut27
@cgdonut27 2 года назад
Thanks for making this series it helped me gain knowledge about coding and games in general and I learned how to make the multi thread with esp and aimbot to work by myself after trouble shooting for hours and realized that I just forgot the if (globals::aim) lol.
@cazz
@cazz 2 года назад
I appreciate the kind words! Glad you got your problem sorted :)
@cgdonut27
@cgdonut27 2 года назад
@@cazz I got bored of the hacks in 3 days. Buying or getting free hacks by clicking a funny looking exe without looking at source code sucks and actually learning in the video makes it even more fun to use hacks in a game.
@cgdonut27
@cgdonut27 2 года назад
@@cazz Do you know how to make internal Gmod Lua loader
@vaqifmammadov8038
@vaqifmammadov8038 2 года назад
Hello can l use this futures with different game ofsets.
@realking5625
@realking5625 4 месяца назад
i have a problem: function does not accept 0 arguments by main.cpp | line: 17 Code: std::thread(hacks::VisualsThread, mem).detach();
@ProfessionalClosetCheater
@ProfessionalClosetCheater 2 года назад
Enjoying the Videos Can u make a series for L4D2?
@7ORAS
@7ORAS Год назад
how can i add more things to cheat like aimbot and bunny hub i already make this cheats but i wanna add it to the menue
@cgdonut27
@cgdonut27 2 года назад
Can you change the background of the multihack panel
@anilrauber
@anilrauber 9 месяцев назад
hey man, does this tutorial series work for cs2 as well?
@hexforreal
@hexforreal Год назад
how did u add a keybind too toggle menu
@action3186
@action3186 2 года назад
Also can you make the same for internal please ?
@itf_ph3r0x41
@itf_ph3r0x41 2 года назад
nice Vid as always :D Started multithreading week ago, it seems that it costs much performance in terms of CPU to create a thread for every feature, so I started using 1 thread for reading/eventloop (I'm still on console rn), 1 thread for the hacks (I pass references to my read-structs). This helped me to achieve a way way better performance in my external :D. But I guess later on I should structure it into 3 threads: Reads, GUI/Visuals and Features(aimbot etc) Let me know if thats a good decision or a bad one xD Still n00b af
@cazz
@cazz 2 года назад
Yeah man, you are on the right track. Too many threads is a problem, but one single thread is worse. It is a cost/benefit situation. I think, in my opinion, you need to be very smart and utilize your threads in the most optimized way possible. Stop doing redundant things, like looping from 0 to 64 for example. No official CS games have 64 players, and index 0 is the world entity anyway. It is just wasted CPU cycles. Be smart about your if checks. Also, maybe consider making a global entity list, you could use and array, or better, a vector (although watch out for reallocation), and maybe in one of your less important threads, populate it in there. For example, update your entity list vector in your menu thread constantly + get local player in there. Then, in your cheats, you can (auto& player : player_list) and access them through references. Anyway, keep it up my man :)
@lucid_horizons
@lucid_horizons 2 года назад
@@cazz yandere dev type beat
@kingbluejayYT
@kingbluejayYT Год назад
just subbed to patron
@GuideNinja
@GuideNinja 2 года назад
Please make an in depth video like this for internal cheats
@onewheelrider2912
@onewheelrider2912 2 года назад
Can U make vid to make the Menu toggle Able in the Game and add a triggerbot or aimbot?
@user-g4EsmE7mVe
@user-g4EsmE7mVe 2 года назад
Good vid
@cazz
@cazz 2 года назад
@finn_2234
@finn_2234 Год назад
Do You get red trust for external cheats
@JayZee.1
@JayZee.1 Год назад
Hey cazz, when i load the driver and press on the radar and glow it just don't glow or show the person on the radar please help
@lilmbt2928
@lilmbt2928 Год назад
same
@ningu1036
@ningu1036 2 года назад
FUCKING CAZZZ...always a fucking bop
@Swead
@Swead Год назад
Can you use it for rust
@TheSoulkingsBand
@TheSoulkingsBand 2 года назад
Could you do a video on how to add more than just 2 hacks to the same project?
@User-ir8gc
@User-ir8gc Год назад
6:27 i did bro. my mann!
@komunich
@komunich Год назад
and how to do the memory.h?
@ningu1036
@ningu1036 2 года назад
so whats the move for 1k special
@ilikehat5600
@ilikehat5600 Год назад
I got a LNK 2001 error, and was wondering if you had any tips for fixing it? Full error: unresolved external symbol "void __cdecl hacks::VisualsThread(class Memory const &)" (?VisualsThread@hacks@@YAXABVMemory@@@Z)
@InsaneRacistGamingMoments
@InsaneRacistGamingMoments 2 года назад
Any way you can show us how to make a grenade prediction?
@cazz
@cazz 2 года назад
in the future, of course :)
@que7852
@que7852 2 года назад
I have problems putting an aimbot and a trigger bot could you make a video like this one but implement the aimbot and trigger bot pls I like ur videos
@Jack-ss4re
@Jack-ss4re 2 года назад
Thank you! Is that undetectable? What do i need to do to make an external cheat undetect? Thxxx
@Gneey2Smooth
@Gneey2Smooth Год назад
A bypass (driver)
@sigma81283-o
@sigma81283-o Год назад
What IDE are you using?
@cazz
@cazz Год назад
Visual Studio 2022 Preview
@VEDANTA-we8yl
@VEDANTA-we8yl 2 года назад
all your vids are soo good i am working on an official cheat for csgo, do you think that the script you used will go undetected by vac?
@cazz
@cazz 2 года назад
thanks man, i appreciate it! I can't say whether or not this is detected or not, but considering there are at least a couple hundred people using my code or some form of it, I'd say it might be detected to be safe. Test on an alt account first, but if you are looking to share your cheat, you are going to need to take extra measures to avoid detection. Hopefully this helps, good luck!
@VEDANTA-we8yl
@VEDANTA-we8yl 2 года назад
@@cazz never said i was gonna copy your code lol just wondering about the wpm and rpm processes Also there is a bug in my laptop (i think) that just doesnt allow me to use Glow in csgo i have tried many methods from changing csgo memory for internal glow to externally making it. You got any ideas?
@evn_fps
@evn_fps Год назад
i spent a week making a bunch of threads, and it broke the script. No clue how it happened
@lucid_horizons
@lucid_horizons 2 года назад
so early it's in 360p 🥶🥶🥶🥶🥶
@loganfree9855
@loganfree9855 2 года назад
cant use the detach
@xzility300
@xzility300 2 года назад
how do i make this undetected
@User-ir8gc
@User-ir8gc Год назад
junkcode generator, look up how to make a cs cheat undetected, for example osiris.
@ArmanoTM
@ArmanoTM Год назад
hello great vid i just want to add more features than glow.
@S1ashr.R6
@S1ashr.R6 Год назад
how would the thread work with a internal menu?
@cazz
@cazz Год назад
Well, internally you don't really want to create threads the same way as you would externally. You should create one thread from your DllMain in order to setup your cheat, but from there you don't need threads because you should be hooking game functions and running your hacks in the game's threads. You should only be creating threads internally if you are making network requests or something like that, otherwise just stick to hooking game functions. Good luck!
@S1ashr.R6
@S1ashr.R6 Год назад
@@cazz thanks got it working love your vids btw made a external tf2 from your vids thank you so much
@agentamme
@agentamme Год назад
can i put the external esp into this?
@WxvexDev
@WxvexDev Год назад
did it work for u ?
@agentamme
@agentamme Год назад
@@WxvexDev yes
@WxvexDev
@WxvexDev Год назад
@@agentamme whats ur disc
@petrf7
@petrf7 2 года назад
Very nice video, you can try make in next episode adding aimbot, or some bhop script or skinchanger. I very like your videos.
@cazz
@cazz 2 года назад
Thanks for the idea!
@lukakolakovic9789
@lukakolakovic9789 2 года назад
Can you make knifebot?
@bChima
@bChima 2 года назад
I dont like cheats but i find your videos very entertaining. I have a proposition for a new video could You do an autostrafe cheat for doing longjumps? Thank You.
@ningu1036
@ningu1036 2 года назад
hey cazz i cant seem to get it to were i can change colors with chams i can get it to were i can change the color with esp but i cant seem to get it to work with the chams here is the code mem.Write(LocalPlayerEntity + (Offsets::m_clrRender), Globals::ChamsColor[0]); mem.Write(LocalPlayerEntity + (Offsets::m_clrRender), Globals::ChamsColor[1]); mem.Write(LocalPlayerEntity + (Offsets::m_clrRender), Globals::ChamsColor[2]); mem.Write(LocalPlayerEntity + (Offsets::m_clrRender), Globals::ChamsColor[3]); the chams work its just they wont change color like the glow esp does can you help ?
@cazz
@cazz 2 года назад
You need to multiply your chams colors by 255
@ningu1036
@ningu1036 2 года назад
@@cazz would that be done like this mem.Write(LocalPlayerEntity + (Offsets::m_clrRender * 255), Globals::ChamsColor[0]);
@Mizsla-
@Mizsla- Год назад
How do I make this into a fortnite cheat?
@c0re2
@c0re2 3 месяца назад
i dont get the exe
@benkoch621
@benkoch621 2 года назад
Maybe you should mention that inline vars are only usable after c++ 17.
@cazz
@cazz 2 года назад
Maybe I should have, but since in this video we use a project that has already been coded, the project settings are already set to c++ 20, so I didn’t find it necessary. Regardless, maybe people will see this comment and learn something new.
@benkoch621
@benkoch621 2 года назад
@@cazz I used a different project as a base, thats why I had that problem. Hope I could save someone a few Google searches.
@cazz
@cazz 2 года назад
@@benkoch621 All good man, glad you got it sorted out.
@benkoch621
@benkoch621 2 года назад
@Weed I think my last answer was deleted because it contained a link. I don't think it will impact the functionality, but just in case switch ur version to 17 and use inline. Quick Explanation of inline copied from StackOverflow: "It signals the linker that only one instance of the variable should exist, even if the variable is seen in multiple compilation units. The linker needs to ensure that no more copies are created."
@Shyguio
@Shyguio 2 года назад
can you please do Python tutorials for an ESP or an Aimbot-hack?
@cazz
@cazz 2 года назад
Yeah, I like Python, been thinking of making more Py related videos - thanks for the suggestion!
@Shyguio
@Shyguio 2 года назад
@@cazz you're welcome
@emilolsen3767
@emilolsen3767 2 года назад
Can u show us how to make a game injector
@cazz
@cazz 2 года назад
In the future :)
@s4nchik11
@s4nchik11 2 года назад
I don't understand this: How can i add aimbot this menu?
@cazz
@cazz 2 года назад
Create a NEW thread, put your aimbot in that
@s4nchik11
@s4nchik11 2 года назад
@@cazz Can you make a video on how to make "KnifeChanger Cheat"?
@Itsby40
@Itsby40 2 года назад
@@cazz when i open the menu in csgo after i add aimbot its always on even if i uncheck the box?
@mrboblox4444
@mrboblox4444 2 года назад
@cazz
@cazz 2 года назад
@zawarudo1818
@zawarudo1818 2 года назад
Early
@Gabriel-ln6ow
@Gabriel-ln6ow 2 года назад
sup
@cazz
@cazz 2 года назад
suh dude
@r00t__
@r00t__ 2 года назад
Nice vid, even tho I hate going external. Mby something like "How to make an SDK?", ik you've already made a vid about netvar and interface manager, but rather been thinking about some good practice nd stuff.
@cazz
@cazz 2 года назад
100%, I was thinking about a "How to make an SDK" type of video :)
@paninky7668
@paninky7668 2 года назад
How to make it undetected
@User-ir8gc
@User-ir8gc Год назад
junkcode generator, look up how to make a cs cheat undetected, for example osiris.
@zeloyello
@zeloyello 2 года назад
3:16
@QyouLim
@QyouLim 21 день назад
normal people: ctrl+c pc people: ctrl+c ctrl+c ctrl+c an another one for safety measures
@Logan-ou7kb
@Logan-ou7kb 2 года назад
The glow and radar hack does not work
@xStrands
@xStrands 2 года назад
have you managed to fix it?
@Logan-ou7kb
@Logan-ou7kb 2 года назад
@@xStrands nope
@luawastaken
@luawastaken 2 года назад
It's been 3 days. Cazz still hasn't answered ;-;
@cazz
@cazz 2 года назад
what haven't I answered :p?
@c-jellyfish
@c-jellyfish 7 месяцев назад
why is there a tutorial for this 😭its not difficult at all
@Yuze408
@Yuze408 2 года назад
▄█▀█● thx!!
@cazz
@cazz 2 года назад
@Ice.rl.
@Ice.rl. Год назад
It wont compile for me it give me this error: unresolved external symbol "void __cdecl hacks::VisualsThread(class Memory const &)" (?VisualsThread@hacks@@YAXABVMemory@@@Z) cheat-menu C:\Users\hi\Downloads\borderless-imgui-window-main (4)\borderless-imgui-window-main\main.obj 1
@dedeboss6032
@dedeboss6032 2 года назад
bro can you make a hack for Zula?
@cazz
@cazz 2 года назад
no clue what that is :p
@dedeboss6032
@dedeboss6032 2 года назад
it's a game
@dedeboss6032
@dedeboss6032 2 года назад
@@cazz Research more about it and bring a hack please
@Oldfashionedcowboybebopjazz
Absolute scourge of gaming. Why do maladjusted nerds have to ruin EVERYTHING??
Далее
LEGITBOT / LEGIT AIMBOT TUTORIAL CSGO
26:15
Просмотров 86 тыс.
MOBILE GAME HACKING (FOR NOOBS)
9:16
Просмотров 32 тыс.
skibidi toilet zombie universe 37 ( New Virus)
03:02
Просмотров 1,8 млн
Is LuckyCharms A Paste?
6:40
Просмотров 108 тыс.
HOW ANTI-CHEAT BYPASSES WORK
8:18
Просмотров 458 тыс.
HOW AIMBOTS WORK
8:36
Просмотров 980 тыс.
Dumping, cracking, and reversing EvilInside spoofer
19:19
IMGUI EXTERNAL OVERLAY TUTORIAL
31:16
Просмотров 95 тыс.
Why The Windows Phone Failed
24:08
Просмотров 240 тыс.