Hey there, so im trying to work on a tool, and i got some problem with my HEX address, the problem is that i need to get the wow base, as you can see 801AE0 is the address, i have no any idea how to get the base of wow. In c# im using a Plugin called "vread" to handle memory reading.
this is the code that i use:
Code:
Process[] proc = Process.GetProcessesByName("Wow");
MemoryReader.Process = proc[0];
int dungeonqueue = int.Parse("01571AE0", System.Globalization.NumberStyles.HexNumber);//Dungeon Queue
MemoryReader<int> Slots = new MemoryReader<int>(dungeonqueue);
Console.WriteLine(Slots.ReadMemoryAddress());
DungeonQueueHexValue.Text = Slots.ReadMemoryAddress().ToString();
Hope anyone can help me, ive uploaded vread if u want to mess around with it :P
Vread