From b5850f4c2442e5566c1c8be7fb5f0f8698cd78bc Mon Sep 17 00:00:00 2001 From: Sven Bledt Date: Thu, 25 Jan 2024 19:42:44 +0100 Subject: [PATCH] fix(offset): Fixxed offsets for latest version --- config.cpp | 2 +- config.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.cpp b/config.cpp index eff577f..d088138 100644 --- a/config.cpp +++ b/config.cpp @@ -48,7 +48,7 @@ SDK::UWorld* config::GetUWorld() static uint64_t gworld_ptr = 0; if (!gworld_ptr) { - auto gworld = signature("48 8B 05 ? ? ? ? EB 05").instruction(3).add(7); + auto gworld = signature("48 8B 1D ?? ?? ?? ?? 48 85 DB 74 33 41 B0").instruction(3).add(7); gworld_ptr = gworld.GetPointer(); } return (*(SDK::UWorld**)(gworld_ptr)); diff --git a/config.h b/config.h index 56b14f8..ff3bd97 100644 --- a/config.h +++ b/config.h @@ -12,8 +12,8 @@ class config public: //offsets DWORD64 ClientBase = 0; - DWORD64 offset_Tick = 0x2AB44D0;//APalPlayerCharacter::Tick - DWORD64 offset_GetAllPlayers = 0x2962330;// UPalCharacterImportanceManager::GetAllPlayer + DWORD64 offset_Tick = 0x2A9E9D0;//APalPlayerCharacter::Tick + DWORD64 offset_GetAllPlayers = 0x29588BE;// UPalCharacterImportanceManager::GetAllPlayer //check bool IsESP = false; bool IsAimbot = false;