Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not a bug but I have a question #165

Open
BrandForIsFrog opened this issue Jul 30, 2023 · 1 comment
Open

Not a bug but I have a question #165

BrandForIsFrog opened this issue Jul 30, 2023 · 1 comment

Comments

@BrandForIsFrog
Copy link

BrandForIsFrog commented Jul 30, 2023

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");

        }
@greenozon
Copy link

use ReadInt Read an integer from an address.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants