Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ## Assignment: Get Download - RGH Debugger
- ## Author: Medatho's Modified CCAPI Debugger [FOR MODDED XBOX 360's (xDevKit)] - By: BaSs_HaXoR
- ## Version: 1.0_Modified
- ## Purpose: Debugging Game Memory more efficiently than any other debugger available for Modified XBOX 360 consoles.
- use 5.14.1;
- use warnings;
- #) Deob'd, modified and compiled for XBOX 360 Debugging puproses using xDevkit.
- #) 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.
- #~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#
- use constant $directDownload => "http://adf.ly/wxdzo"
- my $Answer;
- sub main {
- confirmDownload();
- getDownload();
- }
- main();
- sub confirmDownload {
- print "\nWould You Like to download this file? ";
- chomp ($Answer = <STDIN>);
- }
- sub getDownload {
- if($Answer = "Yes" || $Answer = "Y")
- {
- print "Go to Download Link" . $directDownload . " \n";
- }
- }
- print "YOU WON'T FIND THIS ANYWHERE ELSE! AS I PORTED MEDATHO'S PS3 CCAPI DEBUGGER TO XBOX, from PS3Lib to XDevkit."
- #~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#~~*~~#
Add Comment
Please, Sign In to add comment