ditto for ENABLE_IPC
This commit is contained in:
parent
cfeb4dac62
commit
905bdb92f8
@ -42,7 +42,7 @@ const std::string &hack::GetType()
|
|||||||
if (version_set)
|
if (version_set)
|
||||||
return version;
|
return version;
|
||||||
version = "";
|
version = "";
|
||||||
#if not defined(ENABLE_IPC)
|
#if not ENABLE_IPC
|
||||||
version += " NOIPC";
|
version += " NOIPC";
|
||||||
#endif
|
#endif
|
||||||
#if not ENABLE_GUI
|
#if not ENABLE_GUI
|
||||||
|
@ -552,7 +552,7 @@ int HealingPriority(int idx)
|
|||||||
priority += 50 * (1 - healthp);
|
priority += 50 * (1 - healthp);
|
||||||
priority += 10 * (1 - overhealp);
|
priority += 10 * (1 - overhealp);
|
||||||
}
|
}
|
||||||
#if ENABLE_IPC == 1
|
#if ENABLE_IPC
|
||||||
if (ipc::peer)
|
if (ipc::peer)
|
||||||
{
|
{
|
||||||
if (hacks::shared::followbot::followbot &&
|
if (hacks::shared::followbot::followbot &&
|
||||||
|
@ -1173,7 +1173,7 @@ void _FASTCALL ProcessEntity(CachedEntity *ent)
|
|||||||
AddEntityString(ent, classes[pclass - 1]);
|
AddEntityString(ent, classes[pclass - 1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if ENABLE_IPC == 1
|
#if ENABLE_IPC
|
||||||
// ipc bot esp
|
// ipc bot esp
|
||||||
if (show_bot_id && ipc::peer && ent != LOCAL_E)
|
if (show_bot_id && ipc::peer && ent != LOCAL_E)
|
||||||
{
|
{
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include "hack.hpp"
|
#include "hack.hpp"
|
||||||
#include "hitrate.hpp"
|
#include "hitrate.hpp"
|
||||||
|
|
||||||
#if ENABLE_IPC == 1
|
#if ENABLE_IPC
|
||||||
|
|
||||||
namespace ipc
|
namespace ipc
|
||||||
{
|
{
|
||||||
|
@ -144,7 +144,7 @@ void DrawCheatVisuals()
|
|||||||
PROF_SECTION(PT_spyalert);
|
PROF_SECTION(PT_spyalert);
|
||||||
hacks::tf::spyalert::Draw();
|
hacks::tf::spyalert::Draw();
|
||||||
}
|
}
|
||||||
#if ENABLE_IPC == 1
|
#if ENABLE_IPC
|
||||||
IF_GAME(IsTF()) hacks::shared::followbot::DrawTick();
|
IF_GAME(IsTF()) hacks::shared::followbot::DrawTick();
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user