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