#includes
This commit is contained in:
parent
0e253119c2
commit
2b725cdb6e
@ -111,8 +111,6 @@
|
|||||||
#include "GUI.h"
|
#include "GUI.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <hacks/hacklist.hpp>
|
|
||||||
|
|
||||||
#include <sdk.hpp>
|
#include <sdk.hpp>
|
||||||
|
|
||||||
template <typename T> constexpr T _clamp(T _min, T _max, T _val)
|
template <typename T> constexpr T _clamp(T _min, T _max, T _val)
|
||||||
|
@ -7,15 +7,10 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::tf2::achievement
|
||||||
{
|
|
||||||
namespace tf2
|
|
||||||
{
|
|
||||||
namespace achievement
|
|
||||||
{
|
{
|
||||||
|
|
||||||
void Lock();
|
void Lock();
|
||||||
void Unlock();
|
void Unlock();
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <hacks/Spam.hpp>
|
||||||
|
|
||||||
namespace chatlog
|
namespace chatlog
|
||||||
{
|
{
|
||||||
|
@ -9,6 +9,8 @@
|
|||||||
#include "hack.hpp"
|
#include "hack.hpp"
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
|
|
||||||
#define STRINGIFY(x) #x
|
#define STRINGIFY(x) #x
|
||||||
#define TO_STRING(x) STRINGIFY(x)
|
#define TO_STRING(x) STRINGIFY(x)
|
||||||
|
|
||||||
|
@ -7,11 +7,7 @@
|
|||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::tf2::achievement
|
||||||
{
|
|
||||||
namespace tf2
|
|
||||||
{
|
|
||||||
namespace achievement
|
|
||||||
{
|
{
|
||||||
|
|
||||||
CatVar safety(CV_SWITCH, "achievement_safety", "1",
|
CatVar safety(CV_SWITCH, "achievement_safety", "1",
|
||||||
@ -115,6 +111,5 @@ CatCommand
|
|||||||
});
|
});
|
||||||
CatCommand lock("achievement_lock", "Lock all achievements", Lock);
|
CatCommand lock("achievement_lock", "Lock all achievements", Lock);
|
||||||
CatCommand unlock("achievement_unlock", "Unlock all achievements", Unlock);
|
CatCommand unlock("achievement_unlock", "Unlock all achievements", Unlock);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,10 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/Aimbot.hpp>
|
||||||
|
#include <hacks/CatBot.hpp>
|
||||||
|
#include <hacks/AntiAim.hpp>
|
||||||
|
#include <hacks/ESP.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
|
@ -5,6 +5,9 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/ac/aimbot.hpp>
|
||||||
|
#include <hacks/ac/antiaim.hpp>
|
||||||
|
#include <hacks/ac/bhop.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
#include "hack.hpp"
|
#include "hack.hpp"
|
||||||
|
|
||||||
|
@ -14,6 +14,16 @@ namespace tf2
|
|||||||
namespace autobackstab
|
namespace autobackstab
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// pPaste, thanks to F1ssi0N
|
||||||
|
const Vector GetWorldSpaceCenter(CachedEntity *ent)
|
||||||
|
{
|
||||||
|
Vector vMin, vMax;
|
||||||
|
RAW_ENT(ent)->GetRenderBounds(vMin, vMax);
|
||||||
|
Vector vWorldSpaceCenter = RAW_ENT(ent)->GetAbsOrigin();
|
||||||
|
vWorldSpaceCenter.z += (vMin.z + vMax.z) / 2;
|
||||||
|
return vWorldSpaceCenter;
|
||||||
|
}
|
||||||
|
|
||||||
static CatVar enabled(CV_SWITCH, "autobackstab", "0", "Auto Backstab",
|
static CatVar enabled(CV_SWITCH, "autobackstab", "0", "Auto Backstab",
|
||||||
"Does not depend on triggerbot!");
|
"Does not depend on triggerbot!");
|
||||||
static CatVar value(CV_INT, "autobackstab_range", "110.0f",
|
static CatVar value(CV_INT, "autobackstab_range", "110.0f",
|
||||||
@ -89,15 +99,6 @@ void CreateMove()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// pPaste, thanks to F1ssi0N
|
|
||||||
const Vector GetWorldSpaceCenter(CachedEntity *ent)
|
|
||||||
{
|
|
||||||
Vector vMin, vMax;
|
|
||||||
RAW_ENT(ent)->GetRenderBounds(vMin, vMax);
|
|
||||||
Vector vWorldSpaceCenter = RAW_ENT(ent)->GetAbsOrigin();
|
|
||||||
vWorldSpaceCenter.z += (vMin.z + vMax.z) / 2;
|
|
||||||
return vWorldSpaceCenter;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
#include <hacks/AutoHeal.hpp>
|
||||||
|
#include <hacks/FollowBot.hpp>
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
{
|
{
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
#include <hacks/AutoReflect.hpp>
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
{
|
{
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
#include <hacks/AutoSticky.hpp>
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
{
|
{
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/ESP.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
#include <hacks/FollowBot.hpp>
|
||||||
|
#include <hacks/LagExploit.hpp>
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
{
|
{
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/KillSay.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/LagExploit.hpp>
|
||||||
|
#include <hacks/Announcer.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <link.h>
|
#include <link.h>
|
||||||
|
#include <hacks/AntiAim.hpp>
|
||||||
|
|
||||||
#include "sharedobj.hpp"
|
#include "sharedobj.hpp"
|
||||||
|
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
#include <sys/dir.h>
|
#include <sys/dir.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
#include <hacks/SkinChanger.hpp>
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
{
|
{
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/Spam.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/Trigger.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
#include <hacks/UberSpam.hpp>
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
{
|
{
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <sys/dir.h>
|
#include <sys/dir.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks
|
||||||
{
|
{
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/ac/aimbot.hpp>
|
||||||
|
#include <hacks/AntiCheat.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace ac
|
namespace ac
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/AntiCheat.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace ac
|
namespace ac
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/AntiCheat.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace ac
|
namespace ac
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "MiscTemporary.hpp"
|
#include "MiscTemporary.hpp"
|
||||||
|
|
||||||
#include <link.h>
|
#include <link.h>
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
|
|
||||||
#include "HookedMethods.hpp"
|
#include "HookedMethods.hpp"
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
#include <ucccccp.hpp>
|
#include <ucccccp.hpp>
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <MiscTemporary.hpp>
|
#include <MiscTemporary.hpp>
|
||||||
|
#include <hacks/AntiAim.hpp>
|
||||||
#include "HookedMethods.hpp"
|
#include "HookedMethods.hpp"
|
||||||
|
|
||||||
static bool retrun = false;
|
static bool retrun = false;
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
Copyright (c) 2018 nullworks. All rights reserved.
|
Copyright (c) 2018 nullworks. All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
#include "HookedMethods.hpp"
|
#include "HookedMethods.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
Copyright (c) 2018 nullworks. All rights reserved.
|
Copyright (c) 2018 nullworks. All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/Aimbot.hpp>
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
#include "HookedMethods.hpp"
|
#include "HookedMethods.hpp"
|
||||||
|
|
||||||
namespace hooked_methods
|
namespace hooked_methods
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
#include "hitrate.hpp"
|
#include "hitrate.hpp"
|
||||||
#include "hack.hpp"
|
#include "hack.hpp"
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
Copyright (c) 2018 nullworks. All rights reserved.
|
Copyright (c) 2018 nullworks. All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
#include "HookedMethods.hpp"
|
#include "HookedMethods.hpp"
|
||||||
|
|
||||||
static CatVar die_if_vac(CV_SWITCH, "die_if_vac", "0", "Die if VAC banned");
|
static CatVar die_if_vac(CV_SWITCH, "die_if_vac", "0", "Die if VAC banned");
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <MiscTemporary.hpp>
|
#include <MiscTemporary.hpp>
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
#include "HookedMethods.hpp"
|
#include "HookedMethods.hpp"
|
||||||
|
|
||||||
CatVar resolver(CV_SWITCH, "resolver", "0", "Resolve angles");
|
CatVar resolver(CV_SWITCH, "resolver", "0", "Resolve angles");
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* Author: nullifiedcat
|
* Author: nullifiedcat
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <hacks/CatBot.hpp>
|
||||||
#include "ipc.hpp"
|
#include "ipc.hpp"
|
||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
#include <visual/EffectGlow.hpp>
|
#include <visual/EffectGlow.hpp>
|
||||||
#include <MiscTemporary.hpp>
|
#include <MiscTemporary.hpp>
|
||||||
|
#include <hacks/Aimbot.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
IMaterialSystem *materials = nullptr;
|
IMaterialSystem *materials = nullptr;
|
||||||
|
@ -6,6 +6,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <MiscTemporary.hpp>
|
#include <MiscTemporary.hpp>
|
||||||
|
#include <hacks/Misc.hpp>
|
||||||
|
#include <hacks/Aimbot.hpp>
|
||||||
|
#include <hacks/hacklist.hpp>
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
#include "visual/drawing.hpp"
|
#include "visual/drawing.hpp"
|
||||||
#include "hack.hpp"
|
#include "hack.hpp"
|
||||||
|
Reference in New Issue
Block a user