Posted: Thu Mar 08, 2012 12:24 am Post subject: pointer offset help?
i have all the address' and stuff but the offset is just not working for me :(
what would i put as the offset for " mov [edx+ebx*4+0C],eax ?
sorry if its a noob question but yeah cheers anyway!
mov [edx+ebx*4+0C],eax
looks like this is accessing an array. Mostlikely, ebx is the element count. Just take a look at ebx and edx's value. On of them should be quite small (e.g. 4 or 20 or something like that). Its the index of the array. Assuming the variable has always the same index, you can simply use
[valueOfEbx]*4+0C as your Offset. Simply calculate it
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