Advertisement
BaSs_HaXoR

Get ConsoleID/PSID/SystemInfos PS3 C#

Jun 26th, 2014
1,331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 KB | None | 0 0
  1. //GET ConsoleID, PSID, CPU Temp, RSX Temp, Attached Proccess ID, and Firmware Version (C#) //PS3Lib.dll & CCAPI.dll [REQUIRED]
  2.  
  3. //GET SYSINFOs
  4.  
  5. string GetattProc = PS3.CCAPI.GetAttachedProcess().ToString();
  6. string FMWV = PS3.CCAPI.GetFirmwareVersion();
  7. string CPU = PS3.CCAPI.GetTemperatureCELL();
  8. string RSX = PS3.CCAPI.GetTemperatureRSX();
  9.  
  10.  
  11.                  //GET CID
  12.  
  13. byte[] buffer = new byte[0x10];
  14. PS3.CCAPI.GetLv2Memory(9223372036858981040L, buffer);
  15. string str = BitConverter.ToString(buffer).Replace("-", " ");
  16.  
  17.                  //GET PSID
  18.  
  19. byte[] buffer2 = new byte[0x10];
  20. PS3.CCAPI.GetLv2Memory(9223372036859580196L, buffer2);
  21. string str2 = BitConverter.ToString(buffer2).Replace("-", " ");
  22.  
  23.                                         //Show Infos
  24.  
  25. MessageBox.Show("Console IP: " + ipaddresstextbox.Text + Environment.NewLine + "ProcessID: " + GetattProc + Environment.NewLine + "ConsoleI//GET PSID: " + str + Environment.NewLine + "PSID: " + str2 + Environment.NewLine + "CPU TEMP: " + CPU + Environment.NewLine + "RSX TEMP: " + RSX + Environment.NewLine + "Firmware Version: " + FMWV);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement