Hello,
I am currently coding in VB.NET and am trying to produce a list of my surrounding objects along with their name, coordinates, health/mana, etc. I have written some code (which shouldn't be too hard to follow based on my variable names). If someone could verify that I am on the right track so far, I'd really appreciate it.
Code:
g_clientConnection = Memory.ReadUInt(processHandle, Address_ClientConnection)
s_curMgr = Memory.ReadUInt(processHandle, g_clientConnection + &H2864)
localGUID = Memory.ReadInt64(processHandle, s_curMgr + &HC0)
curObj = Memory.ReadInt(processHandle, s_curMgr + &HAC)
nextObj = Memory.ReadInt(processHandle, curObj + &H3C)
Am I doing this right or am I completely lost? I've been looking over some tutorials but I still don't know if this is right.
If this is right, do I simply take the pointer given by curObj and read it + specific offsets to obtain data such as name, health, etc?