Вопрос /del

Эксперт
Статус
Оффлайн
Регистрация
30 Дек 2019
Сообщения
1,967
Реакции[?]
958
Поинты[?]
19K
Код:
static int spec_x;
    static int spec_y;

    static int _drag_x = 300;
    static int _drag_y = 300;

    static bool _dragging = false;
    bool _click = false;

    if (GetAsyncKeyState(VK_LBUTTON))
        _click = true;

    Vector2D _mouse_pos = m_surface()->GetMousePosition();

    if (_dragging && !_click)
        _dragging = false;

    if (_dragging && _click)
    {
        spectators_pos.x = _mouse_pos.x - _drag_x;
        spectators_pos.y = _mouse_pos.y - _drag_y;
        spec_x = spectators_pos.x;
        spec_y = spectators_pos.y;
    }
int spec_width = 160;
    int spec_height = 22.5;

    if ((m_surface()->MouseInRegion(g_cfg.esp.keybinds_pos_x, g_cfg.esp.keybinds_pos_y, spec_width, spec_height)))
    {
        _dragging = true;
        _drag_x = _mouse_pos.x - g_cfg.esp.keybinds_pos_x;
        _drag_y = _mouse_pos.y - g_cfg.esp.keybinds_pos_y;
    }
 
Пользователь
Статус
Оффлайн
Регистрация
6 Янв 2021
Сообщения
150
Реакции[?]
96
Поинты[?]
0
Код:
static int spec_x;
    static int spec_y;

    static int _drag_x = 300;
    static int _drag_y = 300;

    static bool _dragging = false;
    bool _click = false;

    if (GetAsyncKeyState(VK_LBUTTON))
        _click = true;

    Vector2D _mouse_pos = m_surface()->GetMousePosition();

    if (_dragging && !_click)
        _dragging = false;

    if (_dragging && _click)
    {
        spectators_pos.x = _mouse_pos.x - _drag_x;
        spectators_pos.y = _mouse_pos.y - _drag_y;
        spec_x = spectators_pos.x;
        spec_y = spectators_pos.y;
    }
int spec_width = 160;
    int spec_height = 22.5;

    if ((m_surface()->MouseInRegion(g_cfg.esp.keybinds_pos_x, g_cfg.esp.keybinds_pos_y, spec_width, spec_height)))
    {
        _dragging = true;
        _drag_x = _mouse_pos.x - g_cfg.esp.keybinds_pos_x;
        _drag_y = _mouse_pos.y - g_cfg.esp.keybinds_pos_y;
    }
ебанное лв
эту хуйню можно сделать в 3 строчки
 
supremacy paster
Начинающий
Статус
Оффлайн
Регистрация
9 Май 2020
Сообщения
98
Реакции[?]
19
Поинты[?]
1K
[QUOTE = "usd, post: 2320141, member: 476824"]
fucking lv
this shit can be done in 3 lines
[/ QUOTE]
ye i have to import the whole vector shit into sup gui its pretty scuffed
 
Эксперт
Статус
Оффлайн
Регистрация
30 Дек 2019
Сообщения
1,967
Реакции[?]
958
Поинты[?]
19K
supremacy paster
Начинающий
Статус
Оффлайн
Регистрация
9 Май 2020
Сообщения
98
Реакции[?]
19
Поинты[?]
1K
[QUOTE = "INSANYA, post: 2320155, member: 265962"]
yes, I don’t give a fuck in my heart how to do it, I have everything on imgui, and this code is from aiiuur source
[/ QUOTE]
i cba to do all of this shit whatever
 
Похожие темы
Ответы
6
Просмотры
327
Ответы
7
Просмотры
294
Ответы
9
Просмотры
404
Сверху Снизу