designer1337 / csgo-cheat-base

simple csgo internal base.
MIT License
242 stars 50 forks source link

How can I implement imgui to this? Not an issue but help would be nice #65

Closed 3choN3wson closed 3 years ago

3choN3wson commented 4 years ago

Since there are no user interface libraries for csgo's surface I would like to use imgui but I cant find any directx hooks because there are no directx hooks. So I would like know is it even possible to implement imgui to this base?

bruhmoment21 commented 4 years ago

https://github.com/bruhmoment21/csgo-imgui-sdk go full c+p

VortexShrimp commented 3 years ago
  1. Hook EndScene or Present
  2. Include and initialize ImGui
  3. Hook WndProc so that ImGui gets keyboard/mouse input
  4. Draw Window in EndScene
  5. Hook Reset and reset objects and stuff
  6. Profit????

Here is a good tutorial -> Drawing an menu for your csgo internal hack

You will need some idea of how to code in c++, some experience with ImGui and some knowledge of how to use an SDK or else you aren't going to be very successful in implementing ImGui. Also, look at the d3dx9 win32 example and understand how it works.

Good luck.