Hey guys,
i'm a little bit confused here. The code is from NinjaSkid but always returns 0. To my understanding it should return a unqiue guid for my current target. Did i mess up the offset or is something else wrong ?
Code:
#include <BlackMagicAU3.au3>
#RequireAdmin
const $aTargetGUID = 0x113d7a8
_BMInitialize()
$PID = WinGetProcess("World of Warcraft")
$handle = _BMOpenProcess($PID)
MsgBox("", "", _WoWGetTargetGUID($handle),"","")
Func _WoWGetTargetGUID($handle)
Return _BMReadUInt($handle, $aTargetGUID)
EndFunc
Edit: Found the clue. Can be closed. Was wrong offset... 
Edit2: Corrected the code. Should work now