Advertisement
Guest User

C# Connection Tutorial

a guest
Sep 1st, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. //Connect//
  2.                 PS3.ConnectTarget(0);
  3.                 MessageBox.Show("You Are Now Connected!");
  4.  
  5. //Attach//
  6.                 PS3.AttachProcess();
  7.                 MessageBox.Show("You Are Now Attached!);
  8.    
  9. //Disconnect//
  10.  
  11.    PS3.DisconnectTarget();
  12.    MessageBox.Show("You Are Now Disconnected!);
  13.  
  14.  
  15. //API For Error//
  16.  
  17. public static PS3API PS3 = new PS3API();
  18.  
  19. //TMAPI//
  20. PS3.ChangeAPI(SelectAPI.TargetManager);
  21.  
  22. //CCAPI//
  23. PS3.ChangeAPI(SelectAPI.ControlConsole);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement