0

我正在尝试从外部地址获取浮点值。为此,我正在使用以下代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace Reader
{
    class Scanner
    {
        [DllImport("Kernel32.dll",SetLeastError=true)]
        static extern bool ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, UInt32 nSize, ref UInt32 lpNumberOfBytesRead);

    unsafe public static string[] getCharValues()
    {
        try
        {
            Process[] pr = Process.GetProcessesByName("Prozess.exe");
            Process process = pr[0];
            uint baseAdress = (uint)process.MainModule.BaseAddress.ToInt32();
            uint o = 0;
            byte[] ret = new byte[10];
            if(!ReadProcessMemory(process.Handle, (IntPtr)(process.MainModule.BaseAddress+0x156CC38), ret, (UInt32)ret.Length, ref o))
                return new string[] {Marshal.GetLastWin32Error().TosTring()};
            return new string[] { BitConverter.ToSingle(ret, 0).ToString() };
        }
        catch(IndexOutOfRangeException)
        {
            MessageBox.Show("Prozess ist vermutlich nicht geöffnet");
            return new string[] {""};
        }
    }
}
}

返回的字符串数组写在一个文本框中,但它始终为 0。它实际上应该是 8000 左右(这是作弊引擎的输出)我做错了什么?

错误代码是 299

4

1 回答 1

0

我只是很快写了这个,但这是我的想法:

public float ReadFloat(InPtr address, HANDLE pHandle)
{

    byte[] memory = new byte[4];

    if (ReadProcessMemory(pHandle, address, memory, (UIntPtr)4, IntPtr.Zero))
    {
        float value = BitConverter.ToSingle(memory, 0);
        return value;
    }
    return 0.0f;
}

如果是双精度,则使用 8 个字节作为数组大小,确保读取 8 个字节并使用 Bitconverter.ToDouble(),并将 float 更改为 double

于 2020-06-24T04:39:04.847 回答