ImageAddress() public method

public ImageAddress ( ) : int
return int
Beispiel #1
0
        public int GetAHValue(List <int> offsets)
        {
            ProcessMemory memory = new ProcessMemory(proc_id);

            memory.StartProcess();
            int result = memory.ReadInt(memory.ImageAddress() + 0x00FC75C0);

            foreach (int item in offsets)
            {
                result = memory.ReadInt(result += item);
            }

            return(result);
        }