(adsbygoogle = window.adsbygoogle || []).push({});
So I found some code on here for the Black Ops 2 ip code, I updated the name grabber and the client interval (0x3700) but I am having trouble with the ip. Here is what i have so far (It gets everything correct but the ip):
for (int i = 0; i < 18; i++)
{
string name = PS3.Extension.ReadString(G_Client(i) + 0x320

;
byte ip0, ip1, ip2, ip3;
ip0 = PS3.Extension.ReadByte(Convert.ToUInt32(0xF9E698 + 0x8E + (i * 0x3700)));
ip1 = PS3.Extension.ReadByte(Convert.ToUInt32(0xF9E698 + 0x8F + (i * 0x3700)));
ip2 = PS3.Extension.ReadByte(Convert.ToUInt32(0xF9E698 + 0x90 + (i * 0x3700)));
ip3 = PS3.Extension.ReadByte(Convert.ToUInt32(0xF9E698 + 0x91 + (i * 0x3700)));
string ip = ip0 + "." + ip1 + "." + ip2 + "." + ip3;
ListViewItem item = new ListViewItem(Convert.ToString(i));
item.SubItems.Add(name);
item.SubItems.Add(ip);
listView2.Items.Add(item);
}