OldSchoolHack

Register / Login English

Playerunknown Battleground´s

icon Thread: [Question] Playerunknown Battleground´s

Join Date: Dec 2013

Posts: 9

User-Rating:

1 positive
0 negative
Kann jemand was mit den GlobalObjects tables anfangen?

TEXT Code:
  1. GlobalObjects* GlobalObjects::Instance()
  2.     {
  3.         static GlobalObjects* instance;
  4.  
  5.         if (!instance)
  6.         {
  7.             auto address = Pattern::Search(GetModuleHandle("TslGame.exe"), "48 8D 0D ? ? ? ? E8 ? ? ? ? E8 ? ? ? ? 48 8B D6");
  8.             auto offset = *reinterpret_cast<uint32_t*>(address + 3);
  9.             
  10.             instance = reinterpret_cast<GlobalObjects*>(address + offset + 7);
  11.         }
  12.  
  13.         return instance;
  14.     } 


1 positive
0 negative
This post has been rated by:
SeventhSun (Mon 3. Apr 2017, 02:10)