You replace the address at $pBase with the base pointer in cheat engine, it has always the same value and you can get it from CE if you double click it in the table, it maybe is 0x010768E8. If it doesn't work you can try to switch the offsets in the array. It may happen that I read these offsets wrong so you have to count from 0x98 to 0x480 I don't know.
but i have this piece from a year ago and i do not remember or understand how to get it to work with the table from first post... because i keep getting empty or 0
Don't use the Pointer.au3. There are a few reasons why you should use my UDF.
alpines example is pretty bad. There's something called 'error handling'. The script itself can't work though. There are two simple errors
The base isn't '0x010768E8', it's '"client.exe"+0x010768E8'. You have to get the module address and add 0x010768E8 to the result.
The right offset array isn't '$aOffsets[5] = [0, 0x480, 0x344, 0x10, 0x2C, 0x98]', it's '$offsets[6] = [0, 0x98, 0x2C, 0x10, 0x344, 0x480]' ('$offsets[5] = [0x98, 0x2C, 0x10, 0x344, 0x480]' if you use my UDF).
The script you are using is bad, too. I won't tell you all the bad. Why? Because you should use my UDF.
[Vb.NET] WoW Memory Reading 11/20/2010 - World of Warcraft - 1 Replies Hallo,
Ist es irgendwie möglich mit VB.NET die Memory von WoW auszulesen wie bei C# mit der BlackMagic.dll
Danke m vorraus
VB 08 Memory Reading 07/06/2010 - .NET Languages - 2 Replies Hallo,
Ich wollte in einem Spiel die HP auslesen lasse, dabei bin ich aber auf ein Problem gestoßen.
Das Problem ist, das die Pointer Adresse so aussieht : "Hero.exe+"..
http://www.imagebanana.com/img/o0org9ha/Problem.p ng
Kann mir vllt. jmd sagen, wei ich das hinbekomme ?
Memory reading help... 02/10/2007 - Conquer Online 2 - 1 Replies Hi,
I need to read the amount of arrows on an archer (0-500). I have the pointer and offset, and i can get the right number in cheat engine, however whenever i try to read it from autohotkey i always get 0. Don't know why. I've always read 4 byte data before so i don't really know if i have the right code for 2 byte data. Here's the autohotkey code
ExtInt(ByRef pSource, pOffset = 0, pIsSigned = false, pSize = 4); From AutoHotKey Help
{
Loop %pSize%
result += *(&pSource +...