Oky, Hi all I am trying to understand memory offsets and pointers
starting off whit this guide guide kind how i handle objects
but in vb
so data output off datatarget = 4 :confused:Code:Dim Baseaddress As Integer Dim GuidOffset As Integer = 48 Dim NextObjectOffset As Integer = 60 Dim TypeOffset As Integer = 20 Dim XPositionOffset As Integer = 2000 Dim YPositionOffset As Integer = 2004 Dim ZPositionOffset As Integer = 2008 Dim RotationOffset As Integer = 2012 Dim DescriptorFieldsOffset As Integer = 8 Dim datatarget As Byte() = New Byte(3) {} lstHistory.Items.Add("Start") Process.EnterDebugMode() 'Get wow Process Dim proc As Process() = Process.GetProcessesByName("WoW") Dim wowproc As System.Diagnostics.Process = proc(0) ' get baseadres BaseAddress = wowproc.MainModule.BaseAddress.ToInt32 ' som debug info lstHistory.Items.Add("BaseAddress :" & BaseAddress) ' read Baseaddress + DescriptorFieldsOffset mem.Peek(wowproc, Baseaddress + DescriptorFieldsOffset , datatarget) ' debug datatarget {Length=4} = (0)4,(1)0,(2)0,(3)0
but now i dont know what to do next![]()
( yes i know wane do many tings but how)
example getting the xyz memory locations
i know you need to find NpcObject and or PlayerObject but how do i get the UnitFields
tnx