Hey guys, I found a pointer using Cheat Engine for a game I was using but for the life of me I can't figure out how to use it in C++.

Here's it:
Code:
BASE-> "GameDLL.dll"+001D8884 (This points to a random address as the DLL loads randomly but I could use GetModuleHandleA to locate it)
Offset 1 -> [ABOVEPointer+0x20] (Im guessing they took the above value, added 0x20 and took the value as a pointer?)
Offset 2 -> Offset 1 + 0x42 (Lastly the took w/e Offset 1 worked out to be and added 0x42 which led to the address I wanted)
Now if anyone could help, I'd be greatful
I really suck at pointers, especially for C++ since I never had a need to use them.

---------- Post added at 09:34 PM ---------- Previous post was at 08:16 PM ----------

EDIT: Nvm, you can ignore this. I figured it out.