double tap source code

piotruxon

Banned
Регистрация
6 Ноя 2024
Сообщения
3
Обратите внимание, пользователь заблокирован на форуме.
So i made a quick dt source code (not mine, just did some changes) and you can implement it:


static void double_tap() { static int shot_count{}; static int old_shot_count{ }; double offset_tick{ }; auto temp = active_weapon->GetNextPrimaryAttackTickRatio() + modf(active_weapon->watOffset(), &offset_tick); auto next_attack = active_weapon->GetNextPrimaryAttackTick(); auto shoot_tick = (int)next_attack + offset_tick; if (temp >= 0.0) { if (temp >= 1.0) { ++shoot_tick; } } else { --shoot_tick; } bool f = shot_count % 2; if (cmd->pb.nAttack1StartHistoryIndex > -1) shot_count++; for (int i = 0; i < cmd->pb.input_history.pRep->nAllocatedSize; i++) { auto input_history = cmd->get_input_entry(i); if (!input_history) { continue; } input_history->nPlayerTickCount = f ? shoot_tick - 1 : 0; input_history->flPlayerTickFraction = 0.f; } cmd->pb.nAttack1StartHistoryIndex = -1; old_shot_count = shot_count; }
 
So i made a quick dt source code (not mine, just did some changes) and you can implement it:


static void double_tap() { static int shot_count{}; static int old_shot_count{ }; double offset_tick{ }; auto temp = active_weapon->GetNextPrimaryAttackTickRatio() + modf(active_weapon->watOffset(), &offset_tick); auto next_attack = active_weapon->GetNextPrimaryAttackTick(); auto shoot_tick = (int)next_attack + offset_tick; if (temp >= 0.0) { if (temp >= 1.0) { ++shoot_tick; } } else { --shoot_tick; } bool f = shot_count % 2; if (cmd->pb.nAttack1StartHistoryIndex > -1) shot_count++; for (int i = 0; i < cmd->pb.input_history.pRep->nAllocatedSize; i++) { auto input_history = cmd->get_input_entry(i); if (!input_history) { continue; } input_history->nPlayerTickCount = f ? shoot_tick - 1 : 0; input_history->flPlayerTickFraction = 0.f; } cmd->pb.nAttack1StartHistoryIndex = -1; old_shot_count = shot_count; }
there's no changes from uc dt, and also its bugged as fuck. test it first, then repost it. also its funny how u didnt implement it, just throwed public code
 
китайцу не выгодно его в скит сейчас переманили, чтобы там апи подкоректировать для релиза.
я дт в луа перенес, оно того не стоит
ХАХАХАах так и знал что изо1337 тайный посетитель форума nixware.cc
 
Назад
Сверху