Originally posted by xLetsGetHyper
Bro i messed the offsets i uploaded 2 seperate ones by accident
any chance you could convert this to a pointer i would be gratefull as ive tried doing it my self but it wont nothing happens
And thanks again for replying to the thread i appreciate it
6 39A01A44 00001A90
0 00000000 00020EE1
This isn't really a C# pointer as C# is not a native language so real pointers do not exist in C#. But here is the same code with your new data.
UInt32 ptr = PS3.Extension.ReadUInt32(0x39A01A44)
ptr += 0x1A90;
PS3.Extension.WriteUInt32(ptr, 0x00020EE1);
To explain what is going on in your netcheat code the 6 means read the next loction (39a01a44) and add 0x1a90 to the value found there then write 0x20ee1 to that location. The zeros are replaced with the result of the 6 line at runtime. This is the same thing the C# code is doing.
If you want to make it so it constantly writes that put the code in a function (meathod) and use it as the tick event for a timer. Do not put it in a loop.