Вопрос Прицел свастика

std::X$$V::Z::_Func_impl_no_alloc
Пользователь
Статус
Оффлайн
Регистрация
30 Мар 2019
Сообщения
389
Реакции[?]
103
Поинты[?]
1K
Так у прицела никсара код же лежит, в чём проблема оттуда взять?
 
пупс, поцелуй
Участник
Статус
Оффлайн
Регистрация
28 Май 2019
Сообщения
1,049
Реакции[?]
322
Поинты[?]
14K
std::X$$V::Z::_Func_impl_no_alloc
Пользователь
Статус
Оффлайн
Регистрация
30 Мар 2019
Сообщения
389
Реакции[?]
103
Поинты[?]
1K
Так какая разница, логика и способ остаются те же
 
Участник
Статус
Оффлайн
Регистрация
30 Дек 2020
Сообщения
400
Реакции[?]
293
Поинты[?]
1K
C++:
    auto weapon = g_ctx.local()->m_hActiveWeapon().Get();

    if (!weapon)
        return;

    auto color = Color::Red;

    if (weapon->is_non_aim() || weapon->m_iItemDefinitionIndex() == WEAPON_TASER)
        return;

    if (can_penetrate(weapon))
        color = Color::Green;

    static int width, height;
    m_engine()->GetScreenSize(width, height);
    auto x = width / 2, y = height / 2;

    int a = (int)(y / 2 / 50);
    float gamma = atan(a / a);

    static auto rotationdegree = 0.f;

    for (int i = 0; i <= 4; i++) {
        std::vector <int> p;
        p.push_back(a * sin(DEG2RAD(rotationdegree + (i * 90))));                                 
        p.push_back(a * cos(DEG2RAD(rotationdegree + (i * 90))));                                 
        p.push_back((a / cos(gamma)) * sin(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));
        p.push_back((a / cos(gamma)) * cos(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));

        render::get().line(x, y, x + p[0], y - p[1], color);
        render::get().line(x + p[0], y - p[1], x + p[2], y - p[3], color);
    }
    rotationdegree++;
 
Начинающий
Статус
Оффлайн
Регистрация
13 Мар 2020
Сообщения
16
Реакции[?]
1
Поинты[?]
0
C++:
    auto weapon = g_ctx.local()->m_hActiveWeapon().Get();

    if (!weapon)
        return;

    auto color = Color::Red;

    if (weapon->is_non_aim() || weapon->m_iItemDefinitionIndex() == WEAPON_TASER)
        return;

    if (can_penetrate(weapon))
        color = Color::Green;

    static int width, height;
    m_engine()->GetScreenSize(width, height);
    auto x = width / 2, y = height / 2;

    int a = (int)(y / 2 / 50);
    float gamma = atan(a / a);

    static auto rotationdegree = 0.f;

    for (int i = 0; i <= 4; i++) {
        std::vector <int> p;
        p.push_back(a * sin(DEG2RAD(rotationdegree + (i * 90))));                                
        p.push_back(a * cos(DEG2RAD(rotationdegree + (i * 90))));                                
        p.push_back((a / cos(gamma)) * sin(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));
        p.push_back((a / cos(gamma)) * cos(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));

        render::get().line(x, y, x + p[0], y - p[1], color);
        render::get().line(x + p[0], y - p[1], x + p[2], y - p[3], color);
    }
    rotationdegree++;
при нажатии на чекбокс ничего не меняется :/
 
Забаненный
Статус
Оффлайн
Регистрация
4 Апр 2021
Сообщения
127
Реакции[?]
8
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
C++:
void otheresp::penetration_reticle()
{
    if (!g_cfg.player.enable)
        return;

    if (!g_cfg.esp.penetration_reticle)
        return;

    if (!g_ctx.local()->is_alive())
        return;

    auto weapon = g_ctx.local()->m_hActiveWeapon().Get();

    if (!weapon)
        return;

    auto color = Color::Red;

    if (weapon->is_non_aim() || weapon->m_iItemDefinitionIndex() == WEAPON_TASER)
        return;

    if (can_penetrate(weapon))
        color = Color::Green;

    static int width, height;
    m_engine()->GetScreenSize(width, height);
    auto x = width / 2, y = height / 2;

    int a = (int)(y / 1 / 60);
    float gamma = atan(a / a);

    static auto rotationdegree = 0.f;

    for (int i = 0; i <= 4; i++) {
        std::vector <int> p;
        p.push_back(a * sin(DEG2RAD(rotationdegree + (i * 90))));
        p.push_back(a * cos(DEG2RAD(rotationdegree + (i * 90))));
        p.push_back((a / cos(gamma)) * sin(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));
        p.push_back((a / cos(gamma)) * cos(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));

        render::get().line(x, y, x + p[0], y - p[1], color);
        render::get().line(x + p[0], y - p[1], x + p[2], y - p[3], color);
    }
    rotationdegree++;
}
for legendware
 
Тьомчик
Участник
Статус
Оффлайн
Регистрация
30 Июн 2020
Сообщения
704
Реакции[?]
150
Поинты[?]
58K
C++:
void otheresp::penetration_reticle()
{
    if (!g_cfg.player.enable)
        return;

    if (!g_cfg.esp.penetration_reticle)
        return;

    if (!g_ctx.local()->is_alive())
        return;

    auto weapon = g_ctx.local()->m_hActiveWeapon().Get();

    if (!weapon)
        return;

    auto color = Color::Red;

    if (weapon->is_non_aim() || weapon->m_iItemDefinitionIndex() == WEAPON_TASER)
        return;

    if (can_penetrate(weapon))
        color = Color::Green;

    static int width, height;
    m_engine()->GetScreenSize(width, height);
    auto x = width / 2, y = height / 2;

    int a = (int)(y / 1 / 60);
    float gamma = atan(a / a);

    static auto rotationdegree = 0.f;

    for (int i = 0; i <= 4; i++) {
        std::vector <int> p;
        p.push_back(a * sin(DEG2RAD(rotationdegree + (i * 90))));
        p.push_back(a * cos(DEG2RAD(rotationdegree + (i * 90))));
        p.push_back((a / cos(gamma)) * sin(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));
        p.push_back((a / cos(gamma)) * cos(DEG2RAD(rotationdegree + (i * 90) + RAD2DEG(gamma))));

        render::get().line(x, y, x + p[0], y - p[1], color);
        render::get().line(x + p[0], y - p[1], x + p[2], y - p[3], color);
    }
    rotationdegree++;
}
for legendware
does u have for CSGOsimple?
 
Сверху Снизу