Jump to content

11 posts in this topic

Recommended Posts

Posted

Hello when I tried using this template 

I had an error which says:

Tweak.xm:53:48: error: use of undeclared identifier 'options'                                                                                

    [[UIApplication sharedApplication] openURL:options:completionHandler: [NSURL URLWithString: @"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"]];                                                                                                                           

                                               ^                                                                                             

Tweak.xm:53:56: error: use of undeclared identifier 'completionHandler'                                                                      

    [[UIApplication sharedApplication] openURL:options:completionHandler: [NSURL URLWithString: @"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"]];                                                                                                                           

                                                       ^                                                                                     

Tweak.xm:57:40: error: instance method '-openURL:::' not found (return type defaults to 'id') [-Werror,-Wobjc-method-access]                 

    [[UIApplication sharedApplication] openURL:options:completionHandler: [NSURL URLWithString: @"https://iosgods.com/clubs/"]];             

                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                                    

/var/theos/sdks/iPhoneOS10.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:105:40: note: receiver is instance of class declared here                                                                                                                               

NS_CLASS_AVAILABLE_IOS(2_0) @interface UIApplication : UIResponder                                                                           

                                       ^                                                                                                     

Tweak.xm:57:48: error: use of undeclared identifier 'options'                                                                                

    [[UIApplication sharedApplication] openURL:options:completionHandler: [NSURL URLWithString: @"https://iosgods.com/clubs/"]];             

                                               ^                                                                                             

Tweak.xm:57:56: error: use of undeclared identifier 'completionHandler'                                                                      

    [[UIApplication sharedApplication] openURL:options:completionHandler: [NSURL URLWithString: @"https://iosgods.com/clubs/"]]

Posted

Did you move or change anything in the Tweak.xm?

Posted (edited)
3 hours ago, DiDA said:

Did you move or change anything in the Tweak.xm?

@DiDA I removed a comment in the code, here is my tweak.xm:

 

@import Foundation;

@import UIKit;

#import <substrate.h>

#import "vm_writeData.h"

 

// To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-offsets/

// To Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject/

 

#define PLIST_PATH @"/var/mobile/Library/Preferences/com.majdawwad.hotspot.plist"

 

inline bool GetPrefBool(NSString *key) {

        return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];

}

 

 

// Add your MS/Flex/MSHook Code here. Examples can be found on iOSGods.

 

%hook AfUserAccount

-(bool) isElite {

if(GetPrefBool(@"key1")) {

return TRUE;

}

return %orig;

}

%end

 

%hook AFUserAccount

-(void) setIsElite:(bool)arg1 {

if(GetPrefBool(@"key1")) {

arg1 = TRUE;

}

%orig(arg1);

}

%end

 

%hook CLSAnalyticsMetadataController

+(bool) hostJailbroken {

if(GetPrefBool(@"key2")) {

return FALSE;

}

return %orig;

}

%end

 

 

 

 

// Automatic Popup Code

void setup() {

    UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"Hotspot Sheild VPN Cheats 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();

}

 

Updated by The Epic Gamer
Posted

Strange, I'm able to compile on the iOS 9 SDK. :wonder:

Posted (edited)
4 minutes ago, DiDA said:

Strange, I'm able to compile on the iOS 9 SDK. :wonder:

I have the iOS 10 sdk, should I change it to the iOS 9 sdk?

Updated by The Epic Gamer
Posted
Just now, The Epic Gamer said:

I have the iOS 10 sdk, should I change it to the iOS 9 sdk?

You can try, yes.

Posted
Just now, DiDA said:

You can try, yes.

Ok, can you give me a link to download the sdk, please

2 minutes ago, DiDA said:

You can try, yes.

Never mind, I will just run the command 

theosinstaller 9.3
Posted
13 minutes ago, DiDA said:

@DiDA I reinstalled theos, replaced sdks and I made a new patcher but I had one error which is this:

==> Linking bundle hotspotpatcher (arm64)…                                                                                                   

ld: warning: directory not found for option '-F/var/theos/sdks/iPhoneOS9.3.sdk/System/Library/PrivateFrameworks'                             

ld: framework not found Preferences                                                                                                          

clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)                                                          

make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/hotspotpatcher/.theos/obj/arm64/hotspotpatcher.bundle/hotspotpatcher] Error 1                                                                                                                                        

Posted
35 minutes ago, The Epic Gamer said:

@DiDA I reinstalled theos, replaced sdks and I made a new patcher but I had one error which is this:

==> Linking bundle hotspotpatcher (arm64)…                                                                                                   

ld: warning: directory not found for option '-F/var/theos/sdks/iPhoneOS9.3.sdk/System/Library/PrivateFrameworks'                             

ld: framework not found Preferences                                                                                                          

clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)                                                          

make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/hotspotpatcher/.theos/obj/arm64/hotspotpatcher.bundle/hotspotpatcher] Error 1                                                                                                                                        

I fixed it by downngrading the SDK to 9.2 and now everything is working perfectly 

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
  • Our picks

    • SuperStar STARSHIP Cheats v3.24.3 +3
      Modded/Hacked App: SuperStar STARSHIP By Dalcomsoft Inc.
      Bundle ID: com.dalcomsoft.sss
      iTunes Store Link: https://apps.apple.com/us/app/superstar-starship/id1480181152?uo=4


      Hack Features:
      - Never Lose
      - Auto Dance
      - Always S.Perfect


      iOS Hack Download Link: https://iosgods.com/topic/164185-superstar-starship-cheats-v378-3/
        • Agree
        • Haha
        • Like
      • 127 replies
    • Merge Studio: Fashion Makeover v3.5.0 +50++ Jailed Cheats [ Debug Menu ]
      Modded/Hacked App: Merge Studio: Fashion Makeover By Paxie Games Oyun ve Yazilim Anonim Sirketi
      Bundle ID: com.paxiegames.mergestudio
      iTunes Store Link: https://apps.apple.com/us/app/merge-studio-fashion-makeover/id1615964753?uo=4


      Hack Features:
      - Debug Menu -> Head over to Settings and toggle the Sound button.


      Jailbreak required hack(s): [Mod Menu Hack] Merge Studio: Fashion Makeover v2.3.0 +50++ Cheats [ Debug Menu ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 54 replies
    • Merge Studio: Fashion Makeover v3.5.0 +50++ Cheats [ Debug Menu ]
      Modded/Hacked App: Merge Studio: Fashion Makeover By Paxie Games Oyun ve Yazilim Anonim Sirketi
      Bundle ID: com.paxiegames.mergestudio
      iTunes Store Link: https://apps.apple.com/us/app/merge-studio-fashion-makeover/id1615964753?uo=4


      Hack Features:
      - Debug Menu -> Head over to Settings and toggle the Sound button.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Merge Studio: Fashion Makeover v2.3.0 +50++ Jailed Cheats [ Debug Menu ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 45 replies
    • Royal Kingdom v17794 +4 Jailed Cheats [ Coins + More ]
      Modded/Hacked App: Royal Kingdom By Dream Games
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/ph/app/royal-kingdom/id1606549505
       

      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Boosters
      - Freeze Moves


      Jailbreak required hack(s): [Mod Menu Hack] Royal Kingdom v3987 +4 Cheats [ Unlimited Coins ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 116 replies
    • Royal Kingdom v17794 +4 Cheats [ Coins + More ]
      Modded/Hacked App: Royal Kingdom By Dream Games
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/ph/app/royal-kingdom/id1606549505
       

      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Boosters
      - Freeze Moves


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Royal Kingdom v3987 +4 Jailed Cheats [ Unlimited Coins ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 65 replies
    • Duskwood - Detective Story v1.10.17 +3 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Duskwood - Detective Story By Everbyte GmbH
      Bundle ID: com.everbytestudio.interactive.text.chat.story.rpg.cyoa.duskwood
      iTunes Store Link: https://apps.apple.com/us/app/duskwood-detective-story/id1479430106?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Hearts -> Earn or spend some.
      - Free In-App Purchases -> Toggle via iGMenu.


      Jailbreak required hack(s): [Mod Menu Hack] Duskwood - Detective Story v1.10.14 +3 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Haha
        • Thanks
        • Winner
        • Like
      • 54 replies
    • Duskwood - Detective Story v1.10.17 +3 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Duskwood - Detective Story By Everbyte GmbH
      Bundle ID: com.everbytestudio.interactive.text.chat.story.rpg.cyoa.duskwood
      iTunes Store Link: https://apps.apple.com/us/app/duskwood-detective-story/id1479430106?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Hearts -> Earn or spend some.
      - Free In-App Purchases


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Duskwood - Detective Story v1.10.14 +3 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Haha
        • Thanks
        • Like
      • 22 replies
    • Idle Zombie Miner: Gold Tycoon v2.212.1660 +1++ Jailed Cheat [ Currencies ]
      Modded/Hacked App: Idle Zombie Miner: Gold Tycoon By VISTREX LIMITED
      Bundle ID: com.zombie.idleminertycoon
      iTunes Store Link: https://apps.apple.com/us/app/idle-zombie-miner-gold-tycoon/id6471983323?uo=4


      Hack Features:
      - Unlimited Currencies -> Will increase instead of decrease.


      Jailbreak required hack(s): [Mod Menu Hack] Idle Zombie Miner: Gold Tycoon v2.53.1001 +1++ Cheat [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 81 replies
    • Idle Zombie Miner: Gold Tycoon v2.212.1660 +1++ Cheat [ Currencies ]
      Modded/Hacked App: Idle Zombie Miner: Gold Tycoon By VISTREX LIMITED
      Bundle ID: com.zombie.idleminertycoon
      iTunes Store Link: https://apps.apple.com/us/app/idle-zombie-miner-gold-tycoon/id6471983323?uo=4


      Hack Features:
      - Unlimited Currencies -> Will increase instead of decrease.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Idle Zombie Miner: Gold Tycoon v2.53.1001 +1++ Jailed Cheat [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 58 replies
    • Loot Heroes v1.4.7 +8 Jailed Cheats [ Unlimited Currencies + More ]
      Modded/Hacked App: Loot Heroes: Fantasy RPG Games By BoomBit, Inc.
      Bundle ID: com.bbp.lootheroes
      iTunes Store Link: https://apps.apple.com/us/app/loot-heroes-fantasy-rpg-games/id6642699678?uo=4


      Hack Features:
      - Freeze Currencies
      - Unlimited Currencies [ VIP ]
      - God Mode -> Traps still cause damage.
      - One-Hit Kill
      - All Heroes Unlocked
      - Auto Win [ VIP ]
      - Battle Pass Unlocked [ VIP ]


      Jailbreak required hack(s): [Mod Menu Hack] Loot Heroes v1.1.5 +8 Cheats [ Unlimited Currencies + More ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 71 replies
    • Loot Heroes v1.4.7 +8 Cheats [ Unlimited Currencies + More ]
      Modded/Hacked App: Loot Heroes By BoomBit, Inc.
      Bundle ID: com.bbp.lootheroes
      iTunes Store Link: https://apps.apple.com/us/app/loot-heroes/id6642699678?uo=4


      Hack Features:
      - Freeze Currencies
      - Unlimited Currencies [ VIP ]
      - God Mode -> Traps still cause damage.
      - One-Hit Kill
      - All Heroes Unlocked
      - Auto Win [ VIP ]
      - Battle Pass Unlocked [ VIP ]


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 202 replies
    • AltLife - Life Simulator v43 +2 Jailed Cheats [ Unlimited Money ]
      Modded/Hacked App: AltLife - Life Simulator By Mark Benyei
      Bundle ID: com.qmzapps.altlife
      App Store Link: https://apps.apple.com/us/app/altlife-life-simulator/id1567044511?uo=4

       


      🤩 Hack Features

      - Unlimited Money -> Will increase instead of decrease.
      - Premium Enabled
      • 0 replies
×
  • 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