Hey guys !
here is another little release, i have made this not long ago for personal use but figured why not to share
the main goal of this is to save space on the tool and just by using one simple connect button calling little message box with API buttons !
[HIDE]how to use :
add APIMessageBox.dll as reference in your project
include this using
using API_Message_Box;
now you need one button, past this code inside it
string result = APIMessageBox.ShowBox("",""); try { if (result.Equals("CCAPI")) { PS3.ChangeAPI(SelectAPI.ControlConsole); if (PS3.GetCurrentAPI() == SelectAPI.ControlConsole) { if (PS3.ConnectTarget()) { if (PS3.AttachProcess()) { MessageBox.Show("Attached To PS3 Using Control Console API"); } } } } else if (result.Equals("TMAPI")) { PS3.ChangeAPI(SelectAPI.TargetManager); if (PS3.GetCurrentAPI() == SelectAPI.TargetManager) { if (PS3.ConnectTarget()) { if (PS3.AttachProcess()) { MessageBox.Show("Attached To PS3 Using Target Manager API"); } else { MessageBox.Show("Cannot Attach To PS3, Check PS3 Debug Settings "); } } else { MessageBox.Show("Cannot connect To PS3, Check ip in Target Manager"); } } } } catch { MessageBox.Show("There was an error communicating with PS3, Check ip in Control Console Manager"); }
DOWNLOAD APIMessageBox.dll
DOWNLOAD SourceCode[/HIDE]