I am using Jorndel's C# Memory Reader/Writer
I have gotten the base address from a level 1 pointer. It has no offsets and the address is just
645360
I have written a C# application that will retrieve this number and print it to a textbox.
However, it does not return the number from the address, it returns '26269248' when it is supposed to return '199'
Image of what I'm explaining:
Code:
private void button1_Click(object sender, EventArgs e)
{
if (Process_Handle("Tutorial-i386"))
{
textBox1.Text = ReadInteger(0x645360).ToString();
}
}