pokemaster Posted November 7, 2009 Posted November 7, 2009 (edited) Using nomadmemory and reading a pointer by $result = _MemoryPointerRead($address, $handle, $offset) Works fine. However, I cannot write to a pointer. I have only succeeded with writing to an address, but can't get it to work with a pointer. _MemoryWrite($addressitpointsto,$handle, $somevalue) Is it possible to include the offset in there somewhere? I tried after $somevalue, but it returned an error. Edited November 7, 2009 by pokemaster
trancexx Posted November 8, 2009 Posted November 8, 2009 How very interesting choice of used terms. ♡♡♡ . eMyvnE
BennyBB Posted November 8, 2009 Posted November 8, 2009 Maybe you could give us some parts of your code, so that we exactly know what you want, because there are no relationships between your two codeparts O.o I think you should get the adress, the pointer points to, then sum the offset (in HEX !!) and then you have to rewrite this adress for example $adress1 = _MemoryRead($pointer,$process) $adress = Hex($adress1+$offset) _MemoryWrite($adress,.......) That's the way I do it and it works fine
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now