)Trainer_Class Proc = new Trainer_Class();
private void button1_Click(object sender, EventArgs e)
{
if (Proc.Process_Handle("iw5mp"))
{
byte[] PP = { 0x07, 0x07, 0x07 };
Proc.WriteInteger(0x1dae3e8, 1);
Proc.WriteBytes(0x1daf172, PP);
MessageBox.Show(Proc.ReadInt(0x1dae3e8).ToString());
byte[] temp = Proc.ReadBytes(0x1dae3e8, PP.Length);
foreach (byte a in temp)
{
richTextBox1.AppendText(a.ToString("x") + "\r");
}
}
else MessageBox.Show("IW5MP - Not Found", "Start MW3:"); // Also makes a beep - inside the Class
}


Thanks for setting this up its given me a much better understanding of whats required.