Jump to content

castix

Senior Member
  • Posts

    2,379
  • Joined

  • Last visited

Everything posted by castix

  1. You should credit Kenny and me for posting how to get free inAP purchases similar to LocaliAPStore. If you didn't use it we still posted the exact code for it so you can't say it's your own thing Referencing to Kenny's iAPGod thread in the hidden section
  2. You are not supposed to use the actual latest version of iTunes when a jailbreak program tells you that. With newer iTunes version they deleted the drivers you need for jailbreaking. Use an older version of iTunes below 12.1
  3. This is not a Android forum Maybe the Clash Of Gems server or whatever modded version it is has a maintenance
  4. Hang on. Andrios uses a different method for the headers. I will teach you how later
  5. If it's a real Anti-Ban you should try the Champion Tower & E10 dungeons for a week. Then you'll know
  6. Soon you will become an awesome cheater
  7. Yea but your post is even more wrong
  8. #import <UIKit/UIKit.h> %hook SpringBoard - (void)applicationDidFinishLaunching:(id)application { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Test 1" message:@"Test!" delegate:self cancelButtonTitle:@"Thanks" otherButtonTitles:nil]; [alert show]; [alert release]; } %end That's all you need to get the same effect
  9. SSH into your device using WinSCP or any other tool and install one of the packages from above. You can do that by moving the file into /var/root/Media/Cydia/AutoInstall and then reboot
  10. - (double)timeLeftOnCountdown { return 1.0; }
  11. You don't have to. Run this bash script sed -i'' 's/\x00\x30\x93\xe4/\x00\x30\x93\xe5/g;s/\x00\x30\xd3\xe4/\x00\x30\xd3\xe5/g;' /usr/bin/perl
  12. You are missing an Unix package... Perl
  13. NSTimer *t = [NSTimer scheduledTimerWithTimeInterval: 2.0 target: self selector:@selector(onTick:) userInfo: nil repeats:NO]; -(void)onTick:(NSTimer *)timer { //Your code }
  14. Year because it's my own exploit and not a tutorial from the internet
  15. You get it - (void)callMethod { } disables a method by the way because nothing gets executed. Also you can return an id more than 2 ways but nvm for now. %orig always calls the original code so it doesn't change if you return it to an id
  16. iOS 5/6/7 /var/mobile/Applications/Appname iOS 8 /var/mobile/Containers/Data/Application/Appname
  17. What do you mean 'kind of returns'. You can return what you want there are no restrictions (except function cast) how you return a method. Nil and NULL are not return types. It's just one of many ways. You shouldn't stick with Flex terms. They get you mad in Objective-C coding a lot because you feel urged to translate the code word by word but that's not how it works. - (void)callMethod { } - (void)callMethod { %orig; } is the same, however 'pass-trough' at arguments in Flex means that they are just not used but not in Objective-C
  18. You can return everything to anything ."Pass-through" or how you Flex people call it is %orig
  19. https://www.virustotal.com/de/file/954adeb5890694637b54144d4de7b44294d4d15802f2323b3148b863cd3c126e/analysis/1430670374/
  20. The solution is so clear and easy: Remove fp8 = nil; return 1(fp8); and change it to fp8 = nil; return 1; Also take a look here http://iosgods.com/topic/5978-need-help-with-these-arguments/
  21. Send me a screenshot. I don't know which line 39 is
  22. The UI is shit but it simply works: http://iosgods.com/topic/5229-beginner-cheat-generator/ - (long long)xxxxx:(id)fp8 { fp8 = nil; return 1234(fp8); }
  23. You should really use my Cheat Generator - (id)xxxxx:(long long)fp8 { fp8 = 1234; return nil(fp8); } - (void)xxxxx:(id)fp8 { fp8 = nil; return %orig(fp8); } - (id)xxxxx:(id)fp8 xxxxx:(id)fp12 { fp8 = nil; fp12 = nil; return %orig(fp8, fp12); } - (id)xxxxx:(id)fp8 { fp8 = nil; return nil(fp8); }
×
  • 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