private void metroButton1_Click(object sender, EventArgs e) - Find Offsets Button.
{
byte[] bytes = { 0x51 }; //Just random Bytes as an example you use yours
ulong Found = Search(bytes, 0x51000000, 0x52000000, 4); //bytes, Uint start , int Length, what bytes type to search
if (Found == ZeroOffset)
{
this.metroLabel1.Text = "NOT FOUND";
}
else
{
this.metroLabel1.Text = "FOUND : " + string.Format("0x{0:X}", Found); // ("0x{0:X}", Found) defines the result and return it into text label // using that ulong Found = Search(bytes, 0x51000000, 0x52000000, 4);
}
}
private void metroButton3_Click(object sender, EventArgs e) - - - - - - - - Set Button.
Copyright © 2026, NextGenUpdate.
All Rights Reserved.