Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //GET ConsoleID, PSID, CPU Temp, RSX Temp, Attached Proccess ID, and Firmware Version (C#) //PS3Lib.dll & CCAPI.dll [REQUIRED]
- //GET SYSINFOs
- string GetattProc = PS3.CCAPI.GetAttachedProcess().ToString();
- string FMWV = PS3.CCAPI.GetFirmwareVersion();
- string CPU = PS3.CCAPI.GetTemperatureCELL();
- string RSX = PS3.CCAPI.GetTemperatureRSX();
- //GET CID
- byte[] buffer = new byte[0x10];
- PS3.CCAPI.GetLv2Memory(9223372036858981040L, buffer);
- string str = BitConverter.ToString(buffer).Replace("-", " ");
- //GET PSID
- byte[] buffer2 = new byte[0x10];
- PS3.CCAPI.GetLv2Memory(9223372036859580196L, buffer2);
- string str2 = BitConverter.ToString(buffer2).Replace("-", " ");
- //Show Infos
- 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