Enigma is there a way to get UI from offsets with bucket?
Something like var.GetOfsUI(string "Root.NormalLayer.deathmenu_dialog", bucket 793)????
and then something to get the given offsets position?
So take the returned offset of our above function and then something to return its position?
Something like:
Code:
GetUIPosition(ofs) ;the offset is returned by the above function
array point[4]
point[0] = MemoryRead($ofs + 0x4D8, d3, "float")
point[1] = MemoryRead($ofs + 0x4DC, d3, "float")
point[2] = MemoryRead($ofs + 0x4E0,d3, "float")
point[3] = MemoryRead($ofs + 0x4E4, d3, "float")
return point
OR a similar way to do what i am trying to do here?
Edit: How to you performe a simple memory read btw?