memory.dll icon indicating copy to clipboard operation
memory.dll copied to clipboard

Not a bug but I have a question

Open BrandForIsFrog opened this issue 1 year ago • 1 comments

Is it possible to read memory in 4 byte format?? If yes, how to do it?? And when I change the found result, do all the found addresses change or only the very first one?

My task is to find all values in 4 byte format and change them to another value in 4 byte format

My code snippet:

    private void SkinChange_Click(object sender, EventArgs e)
    {
        string Skin1 = SkinOne.Text;
        string Skin2 = SkinTwo.Text;
        int PID = meme.GetProcIdFromName("HD-Player");
        if (PID > 0)
        {
            meme.OpenProcess(PID);
            meme.WriteMemory(Skin1, "int", Skin2 );
            MessageBox.Show("Функция: Скин Выдан - on");

        }

BrandForIsFrog avatar Jul 30 '23 16:07 BrandForIsFrog

use ReadInt Read an integer from an address.

greenozon avatar Sep 24 '23 09:09 greenozon