Résolu IP grabber offset call of duty black ops 2 1.18

Statut
N'est pas ouverte pour d'autres réponses.

XsplitsGaminG

Membre
Inscription
1 Juillet 2014
Messages
51
Réactions
13
Points
13 666
Bonjour sur mon tool j'aimerait mettre ip grabber mes il me manque offset du jeux pour trouver les ip des gens.
Voila ou j'en suis ,
private void timer15_Tick(object sender, EventArgs e)
{
button165.PerformClick();
}

private void checkBox1_CheckedChanged_1(object sender, EventArgs e)
{
if (checkBox1.Checked)
{
timer15.Start();
}
else
{
timer15.Stop();
}
}

private void button166_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
}

private void button165_Click(object sender, EventArgs e)
{
for (int x = 0; x < 18; x++)
{
byte[] ip = new byte[18];
PS3.GetMemory(ses ici l'offset que je trouve pas, ip);
string IP1 = ByteArrayToString(ip);
textBox5.Text = IP1;
if (!listBox1.Items.Contains(IP1))
{
listBox1.Items.Add(IP1);
}
else
{
}
}
}

private void textBox5_TextChanged(object sender, EventArgs e)
{
{

}

}

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
listBox1 = listBox1;
for (int i = 0; i < listBox1.SelectedItems.Count; i++)
{
textBox5.Text = listBox1.SelectedItems[0].ToString();
}
}
}
}
 

Rockefeller'

Premium
Inscription
20 Avril 2012
Messages
3 496
Réactions
1 126
Points
19 448
Alright, I've had 9 different people ask me how to use the IP Grabber code because of some fgt who posted that ugly code ages ago.

This is would you should be doing.
Code:
public static string ReturnIP()
{
return PS3.Extension.ReadString(0x0269180C);
}
(And I did go find the offset my self)

Then put this code in a button.
Code:
listBox1.Items.Add(ReturnIP());
You're welcome.
If you have any other ways that could be better than mine, I'm all ears.
Last edited by Winter; 06-28-2014 at 10:32 AM.​


Source NGU ;)
 

Djamel SEC

Ancien staff
Inscription
24 Août 2012
Messages
19 693
Réactions
10 387
Points
27 570
Ton topic se trouvait dans la mauvaise section http://induste.com/attachments/deplace-png.20318/, je l'ai donc déplacé dans la bonne section http://induste.com/attachments/deplacement-png.20319/. :modo:
 
Statut
N'est pas ouverte pour d'autres réponses.
Haut