Is there any alternative method for memory read/write on 64bit systems??i tried nomadmemory but no value is being returned and its not 64bit safe..:confused:
here is the code that i want to be 64bit compatible
here is the code that i want to be 64bit compatible
any help/suggestion is greatly appreciated..:)Quote:
Func _GetValue($Address)
$OpenProcess = _MemOpen(0x38, False, $PID)
$byte1 = _MemRead($OpenProcess, $Address, 1)
$Address = $Address + 1
$byte2 = _MemRead($OpenProcess, $Address, 1)
$Address = $Address + 1
$byte3 = _MemRead($OpenProcess, $Address, 1)
$Address = $Address + 1
$byte4 = _MemRead($OpenProcess, $Address, 1)
$Address = $Address + 1
$byte5 = _MemRead($OpenProcess, $Address, 1)
$hex1 = Hex($byte1)
$hex2 = Hex($byte2)
$hex3 = Hex($byte3)
$hex4 = Hex($byte4)
$hex5 = Hex($byte5)
$dec1 = Dec($hex1)
$dec2 = Dec($hex2)
$dec3 = Dec($hex3)
$dec4 = Dec($hex4)
$dec5 = Dec($hex5)
$myStr = Chr($dec1)&Chr($dec2)&Chr($dec3)&Chr($dec4)&Chr($d ec5)
_MemClose($OpenProcess)
Return $myStr
EndFunc