BaSs_HaXoR

RGH XBOX Debugger - Medatho's Debugger Modified

Jan 30th, 2015
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.36 KB | None | 0 0
  1. ## Assignment: Get Download - RGH Debugger
  2. ## Author: Medatho's Modified CCAPI Debugger [FOR MODDED XBOX 360's (xDevKit)] - By: BaSs_HaXoR
  3. ## Version: 1.0_Modified
  4. ## Purpose: Debugging Game Memory more efficiently than any other debugger available for Modified XBOX 360 consoles.
  5.  
  6. use 5.14.1;
  7. use warnings;
  8.  
  9. #) Deob'd, modified and compiled for XBOX 360 Debugging puproses using xDevkit.
  10. #) All credits to Medatho for originally creating this for PS3, and just 1% to me for making it work for XBOX. It's not fully functional, but just needed it for basic purposes.
  11. #~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#
  12. use constant $directDownload => "http://adf.ly/wxdzo"
  13. my $Answer;
  14.  
  15. sub main {
  16.     confirmDownload();
  17.     getDownload();
  18. }
  19.  
  20. main();
  21.  
  22. sub confirmDownload {
  23.     print "\nWould You Like to download this file? ";
  24.     chomp ($Answer = <STDIN>);
  25. }
  26.  
  27. sub getDownload {
  28.     if($Answer = "Yes" || $Answer = "Y")
  29.         {
  30.             print "Go to Download Link" . $directDownload . " \n";
  31.         }
  32. }
  33. print "YOU WON'T FIND THIS ANYWHERE ELSE! AS I PORTED MEDATHO'S PS3 CCAPI DEBUGGER TO XBOX, from PS3Lib to XDevkit."
  34.  
  35. #~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#
Add Comment
Please, Sign In to add comment