Don't backstab ignored tf
This commit is contained in:
parent
417efdd0d7
commit
3e484d7767
@ -11,6 +11,7 @@
|
||||
#include "hacks/Aimbot.hpp"
|
||||
#include "hacks/Trigger.hpp"
|
||||
#include "hacks/AntiAntiAim.hpp"
|
||||
#include "PlayerTools.hpp"
|
||||
|
||||
namespace hacks::tf2::autobackstab
|
||||
{
|
||||
@ -147,6 +148,9 @@ void CreateMove()
|
||||
if (target == LOCAL_E || target->m_iTeam() == LOCAL_E->m_iTeam() ||
|
||||
!target->m_bAlivePlayer() || target->m_Type() != ENTITY_PLAYER)
|
||||
continue;
|
||||
if (player_tools::shouldTarget(target) !=
|
||||
player_tools::IgnoreReason::DO_NOT_IGNORE)
|
||||
continue;
|
||||
if (target->hitboxes.GetHitbox(spine_3)->center.DistTo(
|
||||
g_pLocalPlayer->v_Eye) <= 200.0f)
|
||||
{
|
||||
@ -177,6 +181,9 @@ void CreateMove()
|
||||
if (target == LOCAL_E || target->m_iTeam() == LOCAL_E->m_iTeam() ||
|
||||
!target->m_bAlivePlayer() || target->m_Type() != ENTITY_PLAYER)
|
||||
return;
|
||||
if (player_tools::shouldTarget(target) !=
|
||||
player_tools::IgnoreReason::DO_NOT_IGNORE)
|
||||
return;
|
||||
// Check if besttick distance is < 200.0f
|
||||
if (backtrack::headPositions[target->m_IDX][backtrack::BestTick]
|
||||
.hitboxes.at(spine_3)
|
||||
|
@ -390,9 +390,9 @@ bool isActive()
|
||||
}
|
||||
|
||||
const std::vector<std::string> builtin_default = {
|
||||
"cathook - more fun than a ball of yarn!", "GNU/Linux is the best OS!",
|
||||
"visit youtube.com/c/nullifiedcat for more information!",
|
||||
"cathook - free tf2 cheat!", "cathook - ca(n)t stop me meow!"
|
||||
"Cathook - more fun than a ball of yarn!", "GNU/Linux is the best OS!",
|
||||
"Visit https://github.com/nullworks/cathook for more information!",
|
||||
"Cathook - Free and Open-Source tf2 cheat!", "Cathook - ca(n)t stop me meow!"
|
||||
};
|
||||
const std::vector<std::string> builtin_lennyfaces = {
|
||||
"( ͡° ͜ʖ ͡°)", "( ͡°( ͡° ͜ʖ( ͡° ͜ʖ ͡°)ʖ ͡°) ͡°)",
|
||||
|
Reference in New Issue
Block a user