(adsbygoogle = window.adsbygoogle || []).push({});
In ur Tool u need a Text Box, 2 buttons ,1 checkBox..
something like this.[/COLOR]
You must login or register to view this content.
So to Grab IPs its
for (int i = 0; i < 18; i++)
{
byte[] array = new byte[16];
PS3.GetMemory(40441868u, array);
string text = ByteArrayToString(array);
metroTextBox3.Text = text;
if (IPListBO2.Items.Contains(text))
{
IPListBO2.Items.Add(text);
}
}
And For ByteArrayToString You need
public static string ByteArrayToString(byte[] bytes)
{
ASCIIEncoding aSCIIEncoding = new ASCIIEncoding();
return aSCIIEncoding.GetString(bytes);
}
And Now to clear The TextBox
IPListBO2.Items.Clear();
So Now Go and add a timer ,and then click the checkBox And u add this to the checkBox
if (this.What CheckBox .Checked)
{
Timer # here.Start();
}
else
{
Timer # here.Stop();
}
And Now Go to the Timer and put
Button of the ip graber.PerformClick();
And on the ip list u need to add
IPListBO2 = IPListBO2;
for (int i = 0; i < this.IPListBO2.SelectedItems.Count; i++)
{
this.metroTextBox3.Text = this.IPListBO2.SelectedItems[0].ToString();
}
On this
You must login or register to view this content.
So now u have a ip graber!!!
Credits
BroIDontMod - IP Graber.... Found The offsets 43 MIN befor me.
Sarcastic - ip graber
Notorious - Teach Me how to Find offsets, and help with the ip graber
NGU - For letting m post this