Hello,
I am trying to read a value from a process using this code:
using (var memory = new MemorySharp(ApplicationFinder.FromProcessName("csgo").First()))
{
var myValue = memory.Read<float>(memory["client.dll"].Read<IntPtr>(10921028) + 252, false);
}
Error:
An unhandled exception of type 'System.ComponentModel.Win32Exception' occurred in MemorySharp.dll
Additional information: Couldn't open the process 756.
Any help?
Thanks.