kill me
-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
scan aimbot 457 line
if (g_cfg.ragebot.weapon[g_ctx.globals.current_weapon].bodyaimcond[BAIM_UNRESOLVED] && g_ctx.globals.missed_shots[record->player->EntIndex()] >= 2 || g_ctx.globals.missed_shots[record->player->EntIndex()] >= 6)
continue;
if (g_cfg.ragebot.weapon[g_ctx.globals.current_weapon].bodyaimcond[BAIM_PREFER] < g_cfg.ragebot.weapon[g_ctx.globals.current_weapon].prefer_body_aim && best_damage >= 1)
continue;
if (g_cfg.ragebot.weapon[g_ctx.globals.current_weapon].bodyaimcond[BAIM_AIR] && !(record->player->m_fFlags() & FL_ONGROUND))
continue;
if (g_cfg.ragebot.weapon[g_ctx.globals.current_weapon].bodyaimcond[BAIM_HIGH_VELOCITY] && record->player->m_vecVelocity().Length() > 400.0f)
continue;
if (g_cfg.ragebot.weapon[g_ctx.globals.current_weapon].bodyaimcond[BAIM_DOUBLETAP] && misc::get().double_tap_enabled)
break;
if (g_cfg.ragebot.weapon[g_ctx.globals.current_weapon].bodyaimcond[BAIM_LETHAL] && best_damage >= record->player->m_iHealth())
break;
Код:
constchars
const char* bodyaimcond[] =
{
"In air",
"On high velocity",
"On doubletap",
"On lethal",
"If unresolved",
"Prefer"
};
Код:
configs.h
enum
{
BAIM_AIR,
BAIM_HIGH_VELOCITY,
BAIM_DOUBLETAP,
BAIM_LETHAL,
BAIM_DOUBLE_TAP,
BAIM_UNRESOLVED,
BAIM_PREFER
};