Jump to content

Rook

Administrator
  • Posts

    68,026
  • Joined

  • Last visited

Everything posted by Rook

  1. There's no need to remove ASLR before using Clutch. Clutch does that by itself. And which version of Clutch are you using and which iOS?
  2. Which reply solved it? Mark one as solved. Oh & an AutoRap with these features is already posted.
  3. Isn't it AutoRapAppDelegate? Go back one page and try the code I sent.
  4. That is true but no compile-time errors though
  5. Works fine here.
  6. lol I thought it was some special name of the DNS or something. You can change the name. Click edit on your post and then click on use full editor to change the title also.
  7. It works either way..?
  8. I just realized from the super-sized screenshot that he misspelled "AppDelegate". Remove your current UIAlertView code and add this: %hook AutoRapAppDelegate -(void)applicationDidBecomeActive:(id)arg { UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Smule AutoRap Cheats" message:@"Hacked by Chrizk0 for iOSGods.com!" delegate:self cancelButtonTitle:@"Close" otherButtonTitles:@"Visit Us", nil]; [credits show]; [credits release]; %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Visit Us"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iOSGods.com/"]]; } } %end
  9. You might be missing something else. I suggest a re-jailbreak if I were you.
  10. I don't think this is an SDK related issue. I just tested on on 8.1.2 with 7.1 SDK and I get nothing. Going to try another delegate.
  11. Here: https://www.sendspace.com/file/3xjajz
  12. Is the AppDelegate correct?
  13. Can you check Cydia and see if the hack is installed? Cydia -> Packages -> recent
  14. It's suggested you re-jailbreak but here you go: http://ge.tt/api/1/files/8vNIb7A2/0/blob?download
  15. Explain please.
  16. Treat it as an integer or boolean. %hook ClassName -(char)isCorrect { %orig(true); } %end
  17. Moved to tutorials.
  18. Try using Fuzzy search.
  19. You don't but you try removing it anyways just in case.
  20. You have to add two buttons otherwise user won't be able to close the popup and play the game normally because the one button you will have will redirect to the website. %hook SexyApplicationDelegate -(void)applicationDidBecomeActive:(id)arg { UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Title of the popup" message:@"Hacked by KingRalph for iOSGods.com!!" delegate:self cancelButtonTitle:@"Close" otherButtonTitles:@"Visit Us", nil]; [credits show]; [credits release]; return %orig; } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Visit Us"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iOSGods.com/"]]; } } %end
  21. Click the FAQ link on my signature.
  22. Added the Staff Online sidebar hook for now.
  23. @@Coolemiel, there's no fun in that
×
  • 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