Подпишитесь на наш Telegram-канал, чтобы всегда быть в курсе важных обновлений! Перейти

Вопрос Shooting doubletap at the same target

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
3 Ноя 2021
Сообщения
9
Реакции
2
Hello !

Big boy coders, I could use some help. My doubletap shoots different targets if more than one are at the same place ..

How would I go about it shooting at the same target

Would this work
?
Код:
Expand Collapse Copy
void aim::fire(CUserCmd* cmd)
{
    if (!g_ctx.globals.weapon->can_fire(true))
        return;

    // f
    if (g_ctx.globals.double_tap_aim && (last_target[last_target_index].record.i != final_target.record->i) && last_target[last_target_index].record.player->m_iHealth() <= 0)
        return;
 
Назад
Сверху Снизу