Advertisement
xxGHz

ip grabber

Jul 1st, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. this.listView1.Items.Clear();
  2. for (int i = 0; i < 0x12; i++)
  3. {
  4. string str = PS3.Extension.ReadString(Convert.ToUInt32((int)(0xf9e698 + (i * 0x148))));
  5. byte num2 = PS3.Extension.ReadByte(Convert.ToUInt32((int)(0xf9e726 + (i * 0x148))));
  6. byte num3 = PS3.Extension.ReadByte(Convert.ToUInt32((int)(0xf9e727 + (i * 0x148))));
  7. byte num4 = PS3.Extension.ReadByte(Convert.ToUInt32((int)(0xf9e728 + (i * 0x148))));
  8. byte num5 = PS3.Extension.ReadByte(Convert.ToUInt32((int)(0xf9e729 + (i * 0x148))));
  9. object[] objArray1 = new object[] { num2, ".", num3, ".", num4, ".", num5 };
  10. string str2 = string.Concat(objArray1);
  11. ListViewItem item = new ListViewItem(Convert.ToString(i))
  12. {
  13. SubItems = {
  14. str,
  15. str2
  16. }
  17. };
  18. this.listView1.Items.Add(item);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement