diff options
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | bf4.cpp | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -27,4 +27,7 @@ As usual: Use it at your own risk! ## Escape From Tarkov (tfk.sys) -WiP! +Yet another game hack that does nothing but: + + * debug print amount of players/ai on the map + * debug print some info about players on the map (position, distance) @@ -1,6 +1,7 @@ #include <ntddk.h> #include <DriverThread.hpp> +#include <obfuscate.hpp> #include "memory.hpp" @@ -8,7 +9,7 @@ using namespace DriverThread; static Thread thread; static Event shutdown_event; -static const wchar_t targetProcess[] = L"bf4.exe"; +static auto targetProcess = skCrypt(L"bf4.exe"); static uint64_t SearchBF4Process(void) { const auto &procs = ::GetProcesses(); |