designer1337 / csgo-cheat-base

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

Help #127

Open kubadusiek opened 2 years ago

kubadusiek commented 2 years ago

        std::string key = " ";
    }

    if (keybind) {
        render::text(x + 200, y - 1, font, "[" + key + "]", false, color::white());
    }```
kubadusiek commented 2 years ago

Why isnt it working

kubadusiek commented 2 years ago

if ((cursor.x > x + 200) && (cursor.x < x + 220) && (cursor.y > y) && (cursor.y < y + 10) && GetAsyncKeyState(VK_ESCAPE) & 1) { std::string key = " "; }

if (keybind) {
    render::text(x + 200, y - 1, font, "[" + key + "]", false, color::white());
}
Morso33 commented 2 years ago

https://www.learncpp.com/