Post: Making a C# RTM Tool, need help.
09-30-2014, 08:06 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Hey I'm making a rtm tool, I used KranK's find dynamic offsets in my C# tool. and I want to set the offset using numericUpDown.

this is;
    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.



What do I type if I want to set the found offset from the find offsets button?

P.S: I want to set the offset to 2147483647
(adsbygoogle = window.adsbygoogle || []).push({});

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo