Начинающий
- Статус
- Оффлайн
- Регистрация
- 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
?
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
?
Код:
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;