more changes.tm

This commit is contained in:
catlaptop 2018-10-04 16:11:37 +02:00
parent 4cfff12949
commit 16189f4e7f
2 changed files with 4 additions and 3 deletions

View File

@ -68,7 +68,8 @@ void CreateMove()
if ((CE_BYTE(ent, netvar.iLifeState) == 0)) if ((CE_BYTE(ent, netvar.iLifeState) == 0))
{ {
if (player_tools::shouldTarget(ent) == if (player_tools::shouldTarget(ent) ==
player_tools::IgnoreReason::DO_NOT_IGNORE || ent == LOCAL_E) player_tools::IgnoreReason::DO_NOT_IGNORE ||
ent == LOCAL_E)
{ {
ac::aimbot::Update(ent); ac::aimbot::Update(ent);
ac::antiaim::Update(ent); ac::antiaim::Update(ent);

View File

@ -365,8 +365,8 @@ bool NavToEnemy()
int range = 0; int range = 0;
while (nearestvalid == -1 && range < 5000) while (nearestvalid == -1 && range < 5000)
{ {
nearestvalid = nearestvalid = nav::FindNearestValidbyDist(
nav::FindNearestValidbyDist(ent->m_vecOrigin(), 2000 - range/4 , 6000 - range); ent->m_vecOrigin(), 2000 - range / 4, 6000 - range);
range += 300.0f; range += 300.0f;
} }
} }