Jump to content

12 posts in this topic

Recommended Posts

Posted

it's most likely with a ui alert you tried to add 

Lol I added _FRAMEWORKS = UIKit but didn't add the UI in the tweak xD

Learn how to hack

photo-199427.jpg?_r=1483287976:kappa:

Posted

Show your tweak.xm

#include <substrate.h>

 

%hook PocketBuddyAppDelegate

 

- (void)applicationDidBecomeActive:(id)application {

NSUserDefaults *validate = [NSUserDefaults standardUserDefaults];

NSString *alreadyRun = @"already_run";

if ([validate boolForKey:alreadyRun])

return;

[validate setBool:YES forKey:alreadyRun];

UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"Buddyman: Kick +1 [unlimited Spins]"

message:@"Made by Joka for iOSGods.com!" delegate:nil cancelButtonTitle:@"Thank you!"

otherButtonTitles:nil];

[alert show];

[alert release];

}

 

%end

 

%hook PBSlotsManager

 

-(unsigned long long) getSpinsCount {

return 999999999;

 

%end

I got the same error even before I entered the UI ALERT in

Posted (edited)

#include <substrate.h>

%hook PocketBuddyAppDelegate

- (void)applicationDidBecomeActive:(id)application {

NSUserDefaults *validate = [NSUserDefaults standardUserDefaults];

NSString *alreadyRun = @"already_run";

if ([validate boolForKey:alreadyRun])

return;

[validate setBool:YES forKey:alreadyRun];

UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"Buddyman: Kick +1 [unlimited Spins]"

message:@"Made by Joka for iOSGods.com!" delegate:nil cancelButtonTitle:@"Thank you!"

otherButtonTitles:nil];

[alert show];

[alert release];

}

%end

%hook PBSlotsManager

-(unsigned long long) getSpinsCount {

return 999999999;

%endI got the same error even before I entered the UI ALERT in

end

%hook PBSlotsManager

-(unsigned long long) getSpinsCount {

return 999999999;

} --> u forgot this maybe?

%end

Updated by ProNab
Posted

end

%hook PBSlotsManager

-(unsigned long long) getSpinsCount {

return 999999999;

} --> u forgot this maybe?

%end

omg im a f**king idiot

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • 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