As of level/stats hack:
Code:
    
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Try
            WriteInteger("iw5mp.exe", &H1DC02B8, lvl.Text)
            WriteInteger("iw5mp.exe", &H1DC04C8, prest.Text)
            WriteInteger("iw5mp.exe", &H1DC04D0, score.Text)
            WriteInteger("iw5mp.exe", &H1DC052C, win.Text)
            WriteInteger("iw5mp.exe", &H1DC0530, los.Text)
            WriteInteger("iw5mp.exe", &H1DC04F8, kills.Text)
            WriteInteger("iw5mp.exe", &H1DBD480, dead.Text)
            WriteInteger("iw5mp.exe", &H1DC0508, assi.Text)
            WriteInteger("iw5mp.exe", &H1DC050C, heads.Text)
        Catch ex As Exception
        End Try
    End Sub
lvl.text is just the name of the textbox, same for all other values

Removals:

Code:
<DllImport("kernel32.dll")>
    Private Shared Function WriteProcessMemory(ByVal hProcess As IntPtr, ByVal lpBaseAddress As IntPtr, <[In](), Out()> ByVal buffer As Byte(), ByVal size As UInt32, ByRef lpNumberOfBytesWritten As IntPtr) As Int32
    End Function


Dim Buffer As Byte() = New Byte() {&H74, &H22}
        WriteProcessMemory(Process.GetProcessesByName("IW5MP")(0).Handle, New IntPtr(&H5D0507), Buffer, UInt32.Parse(Buffer.Length), IntPtr.Zero)
my current way of removing recoil

godmode is put on a timer so the health keeps coming
Code:
    Private Sub god_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles god.Tick
        Dim TargetProcess As Process() = Process.GetProcessesByName("iw5mp")
        If TargetProcess.Length = 0 Then
            god.Stop()
        Else
            WriteInteger("iw5mp.exe", &H1B42444, 999)
        End If
    End Sub
I wont give the full source to the public yet. please give credits if you use something from me.
Thanks ~Nee