fix(offset): Fixxed offsets for latest version

This commit is contained in:
Sven Bledt 2024-01-25 19:42:44 +01:00
parent 218e03c487
commit b5850f4c24
2 changed files with 3 additions and 3 deletions

View File

@ -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));

View File

@ -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;