Jump to content

stem grade

Senior Member
  • Posts

    429
  • Joined

  • Last visited

Everything posted by stem grade

  1. remove theos and install again then try
  2. Remove this because some app can not have pop up message and see if that work %hook AppDelegate  -(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {  UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Goblin Sword MegaHack" message:@"Be sure to stop by iosgods.com and thank @red16" delegate:nil cancelButtonTitle:@"Thanks" otherButtonTitles:nil];  [alert show]; [alert release];  return %orig; }  %end remove it all
  3. Hi I made a hack that any code you put in will unlock it 😊 pm me with your email
  4. May be you got your restrictions on the App Store turn off if it off you can not buy inpp purchase
  5. I have make a patch to watch any paid ones for free but waiting for the patch to be approved
  6. I have make a patch to watch any paid ones for free but waiting for the patch to be approved
  7. I have a patch to watch any paid ones for free but waiting for the hack to be approved
  8. yup 😊 can you hack this game like you did in kings of pool 😊 great hack by the way
  9. Name of the game you want hacked: Pool 2019 Version of the game: 1.17.2 iTunes Link for the app: https://itunes.apple.com/gb/app/pool-2019/id1274318277?mt=8&ign-mpt=uo%3D4 Jailbroken or Non-Jailbroken: Both Requested Features: - Longer Line
  10. yes I jb with unc0ver so no fix for it then what if I restore rootfs remove the jb would you think App Store would work then and then jb again
  11. I try that do not work and I reboot my phone as well still not work and I reset my network in the settings and reset all settings still no luck
  12. need help my App Store got sign problem I can not update any games or download any think when I try to sign in a pop all way come to sign in again and again need to sign in to the settings I have but it still ask to sign in again I try all the tips that I can find in google and YouTube I do not want to restall my iOS and lose the jb any help to get App Store working again please
  13. Yes I understand it...it say the patcher works but the patcher is not active that means the patcher is turn off it not on it is off in the settings cheat menu so the patcher hack is turn off but the patcher is active and working that why I am asking for help some think is wrong with the hooks code GetPrefBool
  14. Say nothing it say I asking for help because some think it wrong with my patcher read again
  15. How rude if you don’t understand then you are not English
  16. read the message before the code some think is wrong. the patcher works with the patcher is turn off
  17. look like no one don't like to help out here what the point having help and support @DiDA 😟😟
  18. Hi can some one help what I am doin wrong I trying to make a patcher the patcher work but the hack it turn off in the settings but the hack is to active. here the code can some one help me please thanks. #import <substrate.h> #import <Foundation/Foundation.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.ha.Radyo.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } void (*old_loadBanner)(void *self); bool (*old_hidesAdBanners)(void *self); bool (*old_setHidesAdBanners)(void *self); static void loadBanner(void *self) { if(GetPrefBool(@"key1")) { } else { return old_loadBanner(self); } } static bool hidesAdBanners(void *self) { if(GetPrefBool(@"key1")) { return TRUE ; } else { return old_hidesAdBanners(self); } } static bool setHidesAdBanners(void *self) { if(GetPrefBool(@"key1")) { return TRUE ; } else { return old_setHidesAdBanners(self); } } __attribute__((constructor)) void DylibMain() { MSHookFunction(MSFindSymbol(NULL, "__"),(void*)loadBanner, (void**)&old_loadBanner); MSHookFunction(MSFindSymbol(NULL, "__"),(void*)hidesAdBanners, (void**)&old_hidesAdBanners); MSHookFunction(MSFindSymbol(NULL, "__"),(void*)setHidesAdBanners, (void**)&old_setHidesAdBanners); } // Automatic Popup Code void setup() { UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"Radyo Cheats by org for iOSGods.com!\n\nVisit the hack's official topic on iOSGods for more information and updates!" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *iosgods = [UIAlertAction actionWithTitle:@"Visit iOSGods.com!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){ [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"]]; }]; UIAlertAction *clubs = [UIAlertAction actionWithTitle:@"Visit the Clubs!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){ [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/clubs/"]]; }]; UIAlertAction *thankyou = [UIAlertAction actionWithTitle:@"Thank you!" style:UIAlertActionStyleCancel handler:nil]; [igcredits addAction:iosgods]; [igcredits addAction:clubs]; [igcredits addAction:thankyou]; [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:igcredits animated:true completion:nil]; } void unsubscribeToLaunchEvent(void); static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) { setup(); unsubscribeToLaunchEvent(); } const char *authObserver = "authObserver"; void subscribeToLaunchEvent() { CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), authObserver, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDrop); } void unsubscribeToLaunchEvent() { CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), authObserver, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL); } __attribute__((constructor)) static void initialize() { subscribeToLaunchEvent(); }
×
  • 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