Jump to content

[MS] AutoRap cheats Source Code


8 posts in this topic

Recommended Posts

Updated (edited)

I made this hack 1 year ago and i no longer work with this hack, because i focus on Android hacking, and my iPad 2 is too old now and will soft brick iOS itself soon, so this hack is now open source :)

 

Download source code: http://www.mediafire.com/download/o7zk8mkg1xzw9hd/autorapcheats.zip

 

To show pop-up credit, you must add this code in the Makefile file.

NAME-OF-YOUR-RPROJECT_FRAMEWORKS = UIKit

Example

AutoRapCheats_FRAMEWORKS = UIKit

Tweak.xm file

#import <UIKit/UIKit.h>

%hook AutoRapStyle
-(bool)isFree
{
	return true;
}
%end

%hook Listing
-(bool)isFree
{
	return true;
}
%end

%hook MagicSubscriptionManager
-(bool)isSubscriptionActive
{
	return true;
}

-(bool)isActive
{
	return true;
}

-(bool)loaded
{
	return true;
}

-(bool)isPromo
{
	return true;
}

-(bool)isPromoSubs
{
	return true;
}
%end

// Credit pop-up
%hook AutoRapAppDelegate
-(void)applicationDidBecomeActive:(id)arg {
UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"AutoRap Cheats"
message:@"Hacked by Evildog1. Visit iOSgods.com for more!"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[credits show];
[credits release];
%orig;
}
%end
Updated by evildog1
Posted (edited)
  On 12/26/2015 at 1:34 PM, --Techarmor-- said:

I thought UiKit is for delegates?

 

 

  On 12/26/2015 at 1:37 PM, ITz_kser said:

I don't import it in my hacks ^_^

NAME-OF-YOUR-RPROJECT_FRAMEWORKS = UIKit

UIAlertView

Updated by Alpha Game Booster
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines