Skip to content
This repository has been archived by the owner on Dec 26, 2021. It is now read-only.

Commit

Permalink
(1.16.210) Update client instance
Browse files Browse the repository at this point in the history
  • Loading branch information
Imrglop committed Apr 4, 2021
1 parent 3ea78ca commit 0e84fb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Memory/GameData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ void GameData::retrieveClientInstance() {
logF("clinet: %llX", clientInstanceOffset);
}
}*/
clientInstanceOffset = 0x03A30ED8; // pointer scanned, can't find good signatures so it'll stay
g_Data.clientInstance = reinterpret_cast<C_ClientInstance*>(g_Data.slimMem->ReadPtr<uintptr_t*>(g_Data.gameModule->ptrBase + clientInstanceOffset, {0x0, 0x0, 0x40}));
clientInstanceOffset = 0x03B53828; // pointer scanned, can't find good signatures so it'll stay
g_Data.clientInstance = reinterpret_cast<C_ClientInstance*>(g_Data.slimMem->ReadPtr<uintptr_t*>(g_Data.gameModule->ptrBase + clientInstanceOffset, {0x0, 0x50, 0x0}));

#ifdef _DEBUG
if (g_Data.clientInstance == 0)
Expand Down

8 comments on commit 0e84fb8

@maybeR3TR0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any update on when the site will be back up?

@Imrglop
Copy link
Author

@Imrglop Imrglop commented on 0e84fb8 Apr 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

welp minecraft updated again

@Gamerclient28921
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Finding Client Instance and LocalPlayer is easier (i have some offsets from 1.16.220 but the other things idk how to find)

@ndawg39
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

at this point do i use tool box

@ndawg39
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

?

@PlasmaWasTaken
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1.16.220 is the end of modding atm, no one has figures out how to update the 210 SDK. RTTI has been removed from the MCBE dedicated server software which is a RIP.

@brayden69-356
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where do i get the injector

@Imrglop
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1.16.220 is the end of modding atm, no one has figures out how to update the 210 SDK. RTTI has been removed from the MCBE dedicated server software which is a RIP.

I thought it has been removed from the client, the server software still has the PDB with all the symbols

Please sign in to comment.