Only change the camera position doesn´t work.vagos21 wrote:hey don't talk about wages here, i'm from greece! cameron knows what i'm talking about haha... i'll soon have to move to another country to keep my job
anyone programming in vb.net or ever used C++/C#/vb to change a program's memory? I do the research using cheatEngine but eventually want to build a tool that will do it all by itself, for windows at least. i'm using vb.net through the windows API to change the camera position X for example, and nothing happens... mind if i attach some code?
i don't know if it's the right place to do it...
Code: Select all
Dim newValue As Single = cameraYbox.Value Dim bytes() As Byte = BitConverter.GetBytes(newValue) WriteProcessMemory(procHandle, New IntPtr(&H728C178), bytes, 4, 0)
You must refresh the scene, then it works. Also search for the refresh bit, which is 3 or 4 bytes before the bytes, where the running samples are stored.
An other problem can be, that you don´t have debug privileges.
I hasn´t the problem because I started self the Octane process with the plugin.
But if you want to change the memory from a process which is not start from your programm, I think then you need the debug privileges.
face