WriteProcessMemoryHey guys, thx for the help in the ReadProcessMemory, but which one is the best way to writememory in C++? thx !
Originally Posted by fowev3rXP Hey guys, thx for the help in the ReadProcessMemory, but which one is the best way to writememory in C++? thx ! Have you looked into ProcMem? It's a good start for new people learning to code memory cheats.
Originally Posted by Buttars0070 Have you looked into ProcMem? It's a good start for new people learning to code memory cheats. Im codding a internal, soo ProcMem isn't usefull, can u help me ?
Originally Posted by fowev3rXP Im codding a internal, soo ProcMem isn't usefull, can u help me ? Please learn about pointer arithmetic before you start internal cheats. Answer to your question: *reinterpret_cast< T* >( Address ) = Value; while T being the datatype.
Originally Posted by WasserEsser Please learn about pointer arithmetic before you start internal cheats. Answer to your question: *reinterpret_cast< T* >( Address ) = Value; while T being the datatype. I couldn't pm you but anyways sorry for the retarded question but how can i do forceshoot for exemple? im trying this but no sucess :/ int Shoot = *reinterpret_cast<int*>(CVar.ClientDLL + 0x02E8BA38) = 1;
Originally Posted by fowev3rXP I couldn't pm you but anyways sorry for the retarded question but how can i do forceshoot for exemple? im trying this but no sucess :/ As i said before, *reinterpret_cast<int*>(CVar.ClientDLL + 0x02E8BA38) = 1; There is no need to assign it to a variable.