#includes

This commit is contained in:
Jenny White 2018-04-29 14:01:45 +03:00
parent 0e253119c2
commit 2b725cdb6e
35 changed files with 58 additions and 25 deletions

View File

@ -111,8 +111,6 @@
#include "GUI.h"
#endif
#include <hacks/hacklist.hpp>
#include <sdk.hpp>
template <typename T> constexpr T _clamp(T _min, T _max, T _val)

View File

@ -7,15 +7,10 @@
#pragma once
namespace hacks
{
namespace tf2
{
namespace achievement
namespace hacks::tf2::achievement
{
void Lock();
void Unlock();
}
}
}

View File

@ -10,6 +10,7 @@
#include <pwd.h>
#include <unistd.h>
#include <hacks/Spam.hpp>
namespace chatlog
{

View File

@ -9,6 +9,8 @@
#include "hack.hpp"
#include "common.hpp"
#include <hacks/hacklist.hpp>
#define STRINGIFY(x) #x
#define TO_STRING(x) STRINGIFY(x)

View File

@ -7,11 +7,7 @@
#include "common.hpp"
namespace hacks
{
namespace tf2
{
namespace achievement
namespace hacks::tf2::achievement
{
CatVar safety(CV_SWITCH, "achievement_safety", "1",
@ -115,6 +111,5 @@ CatCommand
});
CatCommand lock("achievement_lock", "Lock all achievements", Lock);
CatCommand unlock("achievement_unlock", "Unlock all achievements", Unlock);
}
}
}

View File

@ -5,6 +5,10 @@
* Author: nullifiedcat
*/
#include <hacks/Aimbot.hpp>
#include <hacks/CatBot.hpp>
#include <hacks/AntiAim.hpp>
#include <hacks/ESP.hpp>
#include "common.hpp"
namespace hacks

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/hacklist.hpp>
#include "common.hpp"
namespace hacks

View File

@ -5,6 +5,9 @@
* Author: nullifiedcat
*/
#include <hacks/ac/aimbot.hpp>
#include <hacks/ac/antiaim.hpp>
#include <hacks/ac/bhop.hpp>
#include "common.hpp"
#include "hack.hpp"

View File

@ -14,6 +14,16 @@ namespace tf2
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",
"Does not depend on triggerbot!");
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;
}
}
}
}

View File

@ -6,6 +6,8 @@
*/
#include "common.hpp"
#include <hacks/AutoHeal.hpp>
#include <hacks/FollowBot.hpp>
namespace hacks
{

View File

@ -6,6 +6,7 @@
*/
#include "common.hpp"
#include <hacks/AutoReflect.hpp>
namespace hacks
{

View File

@ -6,6 +6,7 @@
*/
#include "common.hpp"
#include <hacks/AutoSticky.hpp>
namespace hacks
{

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/ESP.hpp>
#include "common.hpp"
namespace hacks

View File

@ -7,6 +7,8 @@
*/
#include "common.hpp"
#include <hacks/FollowBot.hpp>
#include <hacks/LagExploit.hpp>
namespace hacks
{

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/KillSay.hpp>
#include "common.hpp"
namespace hacks

View File

@ -5,6 +5,8 @@
* Author: nullifiedcat
*/
#include <hacks/LagExploit.hpp>
#include <hacks/Announcer.hpp>
#include "common.hpp"
namespace hacks

View File

@ -11,6 +11,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <link.h>
#include <hacks/AntiAim.hpp>
#include "sharedobj.hpp"

View File

@ -9,6 +9,7 @@
#include <sys/dir.h>
#include <sys/stat.h>
#include <hacks/SkinChanger.hpp>
namespace hacks
{

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/Spam.hpp>
#include "common.hpp"
namespace hacks

View File

@ -6,6 +6,7 @@
* Author: nullifiedcat
*/
#include <hacks/Trigger.hpp>
#include "common.hpp"
namespace hacks

View File

@ -6,6 +6,7 @@
*/
#include "common.hpp"
#include <hacks/UberSpam.hpp>
namespace hacks
{

View File

@ -11,6 +11,7 @@
#include <boost/algorithm/string.hpp>
#include <sys/dir.h>
#include <sys/stat.h>
#include <hacks/hacklist.hpp>
namespace hacks
{

View File

@ -5,6 +5,8 @@
* Author: nullifiedcat
*/
#include <hacks/ac/aimbot.hpp>
#include <hacks/AntiCheat.hpp>
#include "common.hpp"
namespace ac

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/AntiCheat.hpp>
#include "common.hpp"
namespace ac

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/AntiCheat.hpp>
#include "common.hpp"
namespace ac

View File

@ -10,6 +10,7 @@
#include "MiscTemporary.hpp"
#include <link.h>
#include <hacks/hacklist.hpp>
#include "HookedMethods.hpp"

View File

@ -7,6 +7,7 @@
#include <ucccccp.hpp>
#include <boost/algorithm/string.hpp>
#include <MiscTemporary.hpp>
#include <hacks/AntiAim.hpp>
#include "HookedMethods.hpp"
static bool retrun = false;

View File

@ -3,6 +3,7 @@
Copyright (c) 2018 nullworks. All rights reserved.
*/
#include <hacks/hacklist.hpp>
#include "HookedMethods.hpp"

View File

@ -3,6 +3,8 @@
Copyright (c) 2018 nullworks. All rights reserved.
*/
#include <hacks/Aimbot.hpp>
#include <hacks/hacklist.hpp>
#include "HookedMethods.hpp"
namespace hooked_methods

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/hacklist.hpp>
#include "common.hpp"
#include "hitrate.hpp"
#include "hack.hpp"

View File

@ -3,6 +3,7 @@
Copyright (c) 2018 nullworks. All rights reserved.
*/
#include <hacks/hacklist.hpp>
#include "HookedMethods.hpp"
static CatVar die_if_vac(CV_SWITCH, "die_if_vac", "0", "Die if VAC banned");

View File

@ -4,6 +4,7 @@
*/
#include <MiscTemporary.hpp>
#include <hacks/hacklist.hpp>
#include "HookedMethods.hpp"
CatVar resolver(CV_SWITCH, "resolver", "0", "Resolve angles");

View File

@ -5,6 +5,7 @@
* Author: nullifiedcat
*/
#include <hacks/CatBot.hpp>
#include "ipc.hpp"
#include "common.hpp"

View File

@ -7,6 +7,7 @@
#include <visual/EffectGlow.hpp>
#include <MiscTemporary.hpp>
#include <hacks/Aimbot.hpp>
#include "common.hpp"
IMaterialSystem *materials = nullptr;

View File

@ -6,6 +6,9 @@
*/
#include <MiscTemporary.hpp>
#include <hacks/Misc.hpp>
#include <hacks/Aimbot.hpp>
#include <hacks/hacklist.hpp>
#include "common.hpp"
#include "visual/drawing.hpp"
#include "hack.hpp"