I'm currently coding a HACK for MPGH for MW3 right now!!!!
I'm coding it in visual basic, yes, Visual Basic, It's acctualy quite easy to do in VB
WHAT I NEED: ADDRESSES!!!!!!!!!!!!!!!
I'll find some now, but please try to help me find some(I'm not that good with finding addresses with CE in these games), I'll put yer name down for people who helped me and that stuff, and i'll give you the code for write process memory in VB with all the other stuff
THE CODE:
Declarations:
Code:
<DllImport("kernel32.dll")> _
Public Shared Function WriteProcessMemory( _
ByVal hProcess As IntPtr, _
ByVal lpBaseAddress As IntPtr, _
ByVal lpBuffer As Byte(), _
ByVal nSize As UInt32, _
ByRef lpNumberOfBytesWritten As UInt32 _
) As Boolean
End Function
DIM's:
Code:
Dim en1 As Byte() = {&HE9, &H9C, &H23, &HEC, &HFF}
Dim en2 As Byte() = {&HE9, &H31, &H9A, &HEC, &HFF}
Example:
Code:
WriteProcessMemory(p(0).Handle, &H49183D, en1, 5, 0)
WriteProcessMemory(p(0).Handle, &H498ED7, en2, 5, 0)
COMMING SOON...