Posted: Wed Oct 08, 2014 4:02 pm Post subject: [Help] Writing to a data structure that has pointers
Hey guys so i've recently been working some on data structures and i've got the basics down, but i've run into a problem. In the code section below (wouldnt let me post a picture) is the list of offsets that i'm using to change the memory. I can easily change the offset 0088 by injecting the code mov [eax+0088],whatevervalue but i would like some help on writing values onto the offset 0008 that is within 0034. Any help would be greatly appreciated.
Joined: 09 May 2003 Posts: 25785 Location: The netherlands
Posted: Wed Oct 08, 2014 4:09 pm Post subject:
something like this:
Code:
push eax //save eax
mov eax,[eax+34] //eax now contains the pointer stored at offset 34
mov [eax+8],whatevervalue //write whatever value you wish as offset 8
pop eax //restore eax
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum