QuestionC++ External Menu

Posts 114 of 14 · Page 1 of 1
C++ External Menu
Hey, Can someone help me with finding a DirectX / OpenGL (Even imgui) menu for externals? I've looked everywhere, can't seem to find any simple ones that work. Been searching for hours, have went as far as UC and Oldschoolhx and no luck, I've found like a couple so far, A5-CSGO External and supercraft's "menu" ut A5-CSGO External is WAYY TOO complicated and the second one is literally full of trash and very bad code, that I can't even recode, considering I'm clueless on Visual Graphics/Drawing. I just want to find a simple one that I can learn off and progress. And don't link me any cpp learning sites please or try to convince me to go internal (Already coded my external I just hate console command). If you feeling extra nice and would like to help me making it myself on dscrd / skype i'd be more than happy to.

Thanks
Make one outside the game (win form) / make a browser based. Do NOT try to draw it into an overlay, because you'd have serious fps drops from that.
A browser based externally? That's probably ahead of my level, I've only been coding c++ for a year and a half but thanks for the tip man!
I just create a directx overlay and render ImGui to it. Not sure if there are many complete sources, but if you search around there should be enough info to get something working.
Quote Originally Posted by AbsoluteMadman View Post
I just create a directx overlay and render ImGui to it. Not sure if there are many complete sources, but if you search around there should be enough info to get something working.
Don't you have a serious fps drop?
Quote Originally Posted by Don Coderleone View Post
Don't you have a serious fps drop?
Creating an overlay externally and rendering doesn't cause serious fps drops, even if your CPU is horrible at multi-threading. Doesn't occupy much CPU Usage, unless you have an error in your code that makes the whole rendering process more demanding than it should be in terms of CPU, i.e. creating threads in a loop or something.

- - - Updated - - -

Quote Originally Posted by AbsoluteMadman View Post
I just create a directx overlay and render ImGui to it. Not sure if there are many complete sources, but if you search around there should be enough info to get something working.
Thanks man but sadly i don't think there are any. Have spent days looking for one and no luck yet. Also pm'd ya.
Render an overlay or just use winform, But downside to no overlay is no advanced visuals such as boxes and names, You are limited to glow :/.

Other than that its the exact same
Most Externals either use 2 options:
Inject dll into app other than csgo (example: hxd)
or standalone app that is the cheat
piggybacking this thread and regarding winform for C++, how does someone even go about doing that anymore without CLR? are there any even semidecent methods that im just forgetting? (specifically VS, not Qt)
Quote Originally Posted by vidsac View Post
piggybacking this thread and regarding winform for C++, how does someone even go about doing that anymore without CLR? are there any even semidecent methods that im just forgetting? (specifically VS, not Qt)
CLR is just crap, simple use direct or opengl and do your own, you can create a win then use IMGUI or any drawing framework to make it, or as you stated use QT
Quote Originally Posted by PhY'z View Post
CLR is just crap, simple use direct or opengl and do your own, you can create a win then use IMGUI or any drawing framework to make it, or as you stated use QT
That doesn't help much man I'm already aware of what I can use, i'm just not sure on how to use them, which is why I asked for help here but everyone seems clueless.
Quote Originally Posted by frux0isdaddy View Post
That doesn't help much man I'm already aware of what I can use, i'm just not sure on how to use them, which is why I asked for help here but everyone seems clueless.
IMGUI has own exemples, why didn't you look?


https://github.com/ocornut/imgui/tree/master/examples

And QT is pretty much documented too...
We aren't clueless, at least, i'm not. But you asked for what you can use to make the menu... We gave you, and told what you should NOT. No one here will be implementing IMGUI or any other framework into your project for you. If you don't know how to do that, isn't us that are clueless... you should step back and learn... Cuz creating a window and drawing into it can be pretty simple... And in most of cases, basic. you could have used google to search the documentations...

http://www.directxtutorial.com/lessonarticle.aspx?id=1

------------------------------
You started asking for what you can use, and asking for no one post learncpp.com, but in that way, i MUST post... www.learncpp.com... cuz what you are asking is a ready code, not a "how to use"...

------------------------------
If you want help on how to use, or how to implement, first of all, try it yourself, you can't come to a forum and expect that everyone has a crystal ball and knows what you can't do, what is missing, what you didn't understand... post code, post where it failed, you could have gone to the documentation and read how to use it. If you failed on how to use, show us what you tried, THEN, we can help you properly.
Quote Originally Posted by PhY'z View Post
IMGUI has own exemples, why didn't you look?

And QT is pretty much documented too...
We aren't clueless, at least, i'm not. But you asked for what you can use to make the menu... We gave you, and told what you should NOT. No one here will be implementing IMGUI or any other framework into your project for you. If you don't know how to do that, isn't us that are clueless... you should step back and learn... Cuz creating a window and drawing into it can be pretty simple... And in most of cases, basic. you could have used google to search the documentations...

------------------------------
You started asking for what you can use, and asking for no one post learncpp . com, but in that way, i MUST post... learncpp . com ... cuz what you are asking is a ready code, not a "how to use"...

------------------------------
If you want help on how to use, or how to implement, first of all, try it yourself, you can't come to a forum and expect that everyone has a crystal ball and knows what you can't do, what is missing, what you didn't understand... post code, post where it failed, you could have gone to the documentation and read how to use it. If you failed on how to use, show us what you tried, THEN, we can help you properly.
Mate, I clearly asked if someone can help me finding a simple DirectX / imgui / OPENGL menu that I can LEARN off and progress.

And i'm gonna quote you on this, "But you asked for what you can use to make the menu... We gave you, and told what you should NOT". Everyone was just pointing out the WAYS of making one and which one is better, which is clearly not what I was asking help for. Just needed some guidance on learning how to draw and render. Never asked for a FINISHED one OR to be spoon fed.

Smh.. At least read the thread before typing up a whole paragraph about me not being able to code and asking for "ready code".
Exactly what I expected. Was fun making a fool of yourself while it lasted.
Posts 114 of 14 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?