Jump to content

3 posts in this topic

Recommended Posts

Posted (edited)

Thanks to some kind people on Theos’s discord and a little research of my own, I was able to fix this error. Thank you for your interest in this article!

Hello, i'm stuck with clang error while making package using Theos

Here is my error


https://img.upanh.tv/2024/07/14/E022C41A-820D-4662-8464-83D22E81CA0D.png

Im using iphone 7plus / iOS 15.7.6

sdk: iPhoneOS16.5

This is my make file:

Spoiler
export THEOS=/var/jb/var/mobile/theos
export TARGET = iphone:clang:16.5:16.5
export SDKVERSION=16.5

ARCH = arm64 arm64e
DEBUG = 0
FINALPACKAGE = 1
FOR_RELEASE = 1
#GO_EASY_ON_ME = 1

include $(THEOS)/makefiles/common.mk


TWEAK_NAME = MenuAOV

MenuAOV_LDFLAGS += JRMemory.framework/JRMemory
MenuAOV_FRAMEWORKS =  UIKit Foundation Security QuartzCore CoreTelephony AVFoundation AudioToolbox CoreGraphics CoreText Accelerate GLKit SystemConfiguration GameController 


MenuAOV_EXTRA_FRAMEWORKS += JRMemory
MenuAOV_CCFLAGS = -std=c++11 -fno-rtti -fno-exceptions -DNDEBUG
MenuAOV_CFLAGS = -fobjc-arc -Wno-deprecated-declarations -Wno-unused-variable -Wno-unused-value
MenuAOV_FILES =tweak.mm 


include $(THEOS_MAKE_PATH)/tweak.mk

 


 

this is my tweak.mm:

Spoiler

#import "IGGView.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <UIKit/UIAlertView.h>
#import <UIKit/UIControl.h>
#import "Offset.h"
#import "mahoa.h"

#include <substrate.h>
#import "JRMemory.framework/Headers/MemScan.h"

@interface IGGView()
@end
UIButton *closeButton;
UIView *menuView;
@implementation IGGView

#pragma mark -------------------------------------View-------------------------------------------

+ (void)load
{
//info


dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2* NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        IGGView *view = [IGGView View];
        [view show];
        [[[[UIApplication sharedApplication] windows]lastObject] addSubview:view];
//New Application Windows
      UIWindow*Window = [UIApplication sharedApplication].keyWindow;
//Open menu with 3 finger

  UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] init];
    tap.numberOfTapsRequired = 2;      // MultiTouch
    tap.numberOfTouchesRequired = 3;   // Number finger touch
    [Window addGestureRecognizer:tap];
    [tap addTarget:self action:@selector(expand)]; // Check status
//}];

    });


}

+ (instancetype)View
{
    return [[IGGView alloc] initWithFrame:[UIScreen mainScreen].bounds];
}

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        self.userInteractionEnabled = NO;
  
    }
    return self;
}

- (void)show
{
    self.hidden = NO;

}
#pragma mark -------------------------------------Event-------------------------------------------

//Start creating menu
+ (void)expand {

     //New menu view
    UIWindow*mainWindow;
    mainWindow = [UIApplication sharedApplication].keyWindow;

      

UILabel *myLabel1 = [[UILabel alloc]
initWithFrame:CGRectMake(20, 325.5, 300, 30)];
myLabel1.textColor = [UIColor cyanColor];
myLabel1.font = [UIFont fontWithName:@"AvenirNext-HeavyItalic" size:13];
myLabel1.numberOfLines = 1;
myLabel1.text = [NSString stringWithFormat:@"‍iOS Crack GB"];
myLabel1.textAlignment = NSTextAlignmentCenter;
myLabel1.shadowColor = [UIColor whiteColor];
myLabel1.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel1];

    menuView = [[UIView alloc] 
    initWithFrame:CGRectMake(210, 90, 300, 190)];//menu size height
    menuView.backgroundColor=[UIColor colorWithRed: 0.00 green: 0.00 blue: 0.00 alpha: 0.60];//Color
    menuView.layer.cornerRadius = 15;//Radious corner
    menuView.hidden=NO;//whether to hide
    [mainWindow addSubview:menuView];  
    //Create a close menu button
   closeButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    closeButton.frame = CGRectMake(265, 2, 30, 30);
    [closeButton setTitle:@"" forState:UIControlStateNormal];
    [closeButton setTitleColor:[UIColor yellowColor] forState:UIControlStateNormal];
    [closeButton addTarget:self action:@selector(closeMenu) forControlEvents:UIControlEventTouchUpInside];
    closeButton.hidden = NO; 
    [menuView addSubview:closeButton];
 

UILabel *myLabel2 = [[UILabel alloc]
initWithFrame:CGRectMake(65, 1, 170, 30)];
myLabel2.textColor = [UIColor cyanColor];
myLabel2.font = [UIFont systemFontOfSize:17]; 
myLabel2.numberOfLines = 1;
myLabel2.text = [NSString stringWithFormat:@"‍Menu AOV"];
myLabel2.textAlignment = NSTextAlignmentCenter;
myLabel2.shadowColor = [UIColor colorWithRed: 0.9686 green: 0.3961 blue: 0.8549 alpha: 1];
myLabel2.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel2];
 [menuView addSubview: myLabel2];


UILabel *myLabel3 = [[UILabel alloc]
initWithFrame:CGRectMake(40, 13, 170, 30)];
//myLabel3.textColor = [UIColor cyanColor];
myLabel3.font = [UIFont systemFontOfSize:8]; 
myLabel3.numberOfLines = 1;
//myLabel3.text = [NSString stringWithFormat:@"‍Copyright © by Ninh"];
myLabel3.text = [NSString stringWithFormat:@"‍"];
myLabel3.textAlignment = NSTextAlignmentCenter;
myLabel3.textColor = [UIColor colorWithRed: 1 green: 1 blue: 1 alpha: 0.60];
myLabel3.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel3];
 [menuView addSubview: myLabel3];
[UIView animateWithDuration:2.0 delay:0.0 options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat animations:^{
    CGRect frame = myLabel3.frame;
    frame.origin.x += 50;
    myLabel3.frame = frame;
} completion:nil];


UILabel *myLabel4 = [[UILabel alloc]
initWithFrame:CGRectMake(0, 70, 300, 80)];
//myLabel3.textColor = [UIColor cyanColor];
myLabel4.font = [UIFont systemFontOfSize:14]; 
myLabel4.numberOfLines = 1;
myLabel4.text = [NSString stringWithFormat:@"‍Map Bật Tại Sảng Bật Trong Trận Vô Tác Dụng"];
myLabel4.textAlignment = NSTextAlignmentCenter;
myLabel4.textColor = [UIColor whiteColor];
myLabel4.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel4];
 [menuView addSubview: myLabel4];


UILabel *myLabel5 = [[UILabel alloc]
initWithFrame:CGRectMake(34, 89, 230, 80)];
//myLabel5.textColor = [UIColor cyanColor];
myLabel5.font = [UIFont systemFontOfSize:14]; 
myLabel5.numberOfLines = 1;
myLabel5.text = [NSString stringWithFormat:@"‍Địt cụ bọn chó rách share lén"];
myLabel5.textAlignment = NSTextAlignmentCenter;
myLabel5.textColor = [UIColor whiteColor];
myLabel5.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel5];
 [menuView addSubview: myLabel5];

UILabel *myLabel6 = [[UILabel alloc]
initWithFrame:CGRectMake(104, 115, 230, 80)];
//myLabel6.textColor = [UIColor cyanColor];
myLabel6.font = [UIFont systemFontOfSize:15]; 
myLabel6.numberOfLines = 1;
myLabel6.text = [NSString stringWithFormat:@"‍-iOS Crack GB-"];
myLabel6.textAlignment = NSTextAlignmentCenter;
myLabel6.textColor = [UIColor redColor];
myLabel6.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel6];
 [menuView addSubview: myLabel6];


       //Define to store multiple data


     NSUserDefaults*defaults = [NSUserDefaults standardUserDefaults];
    [defaults synchronize];

    //添加开关功能
    UISwitch* SW1 = [[UISwitch alloc] initWithFrame:CGRectMake(80, 53, 51, 31)];
    SW1.thumbTintColor = [UIColor cyanColor];
    SW1.onTintColor = [UIColor colorWithRed: 0.9686 green: 0.3961 blue: 0.8549 alpha: 1];
    SW1.tintColor = [UIColor clearColor];
    [SW1 addTarget:self action:@selector(feature1:)  forControlEvents:UIControlEventValueChanged];
    [menuView addSubview:SW1];
   //定义开关默认开启
   BOOL sw1 = [defaults boolForKey:@"sw1"];
    if (sw1 == YES) { [SW1 setOn:YES];   } 
    else { [SW1 setOn:NO];     }
      UILabel* AL1 = [[UILabel alloc] initWithFrame:CGRectMake(141, 48, 100, 40)];
      [AL1 setText:@"Map Sáng"];
      [AL1 setTextColor:[UIColor whiteColor] ];
      [AL1 setBackgroundColor:[UIColor clearColor]];
       AL1.font = [UIFont systemFontOfSize:18];
      [menuView addSubview:AL1];
[UIView animateWithDuration:0.5
                      delay:0.0
                    options:UIViewAnimationOptionRepeat | UIViewAnimationOptionAutoreverse
                 animations:^{
                     AL1.alpha = 0.5;
                 }
                 completion:nil];

}

  
//无后
+ (void)feature1:(UISwitch *)SW1 {
    
    if ([SW1 isOn]) {
//开启
 
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

    [defaults setBool:YES forKey:@"sw1"];

    [defaults synchronize];

patchOffset(OFFSET, HEX);

        } else {

patchOffset(OFFSET, HEX);


    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

    [defaults setBool:NO forKey:@"sw1"];

    [defaults synchronize];

}}

//创建关闭菜单
+ (void)closeMenu { menuView.hidden = YES; } 


@end

 

 

 

Updated by Giabao999
Posted

 

4 hours ago, Giabao999 said:

Hello, i'm stuck with clang error while making package using Theos

Here is my error


https://img.upanh.tv/2024/07/14/E022C41A-820D-4662-8464-83D22E81CA0D.png

Im using iphone 7plus / iOS 15.7.6

sdk: iPhoneOS16.5

This is my make file:

  Hide contents
export THEOS=/var/jb/var/mobile/theos
export TARGET = iphone:clang:16.5:16.5
export SDKVERSION=16.5

ARCH = arm64 arm64e
DEBUG = 0
FINALPACKAGE = 1
FOR_RELEASE = 1
#GO_EASY_ON_ME = 1

include $(THEOS)/makefiles/common.mk


TWEAK_NAME = MenuAOV

MenuAOV_LDFLAGS += JRMemory.framework/JRMemory
MenuAOV_FRAMEWORKS =  UIKit Foundation Security QuartzCore CoreTelephony AVFoundation AudioToolbox CoreGraphics CoreText Accelerate GLKit SystemConfiguration GameController 


MenuAOV_EXTRA_FRAMEWORKS += JRMemory
MenuAOV_CCFLAGS = -std=c++11 -fno-rtti -fno-exceptions -DNDEBUG
MenuAOV_CFLAGS = -fobjc-arc -Wno-deprecated-declarations -Wno-unused-variable -Wno-unused-value
MenuAOV_FILES =tweak.mm 


include $(THEOS_MAKE_PATH)/tweak.mk

 


 

this is my tweak.mm:

  Reveal hidden contents

#import "IGGView.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <UIKit/UIAlertView.h>
#import <UIKit/UIControl.h>
#import "Offset.h"
#import "mahoa.h"

#include <substrate.h>
#import "JRMemory.framework/Headers/MemScan.h"

@interface IGGView()
@end
UIButton *closeButton;
UIView *menuView;
@implementation IGGView

#pragma mark -------------------------------------View-------------------------------------------

+ (void)load
{
//info


dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2* NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        IGGView *view = [IGGView View];
        [view show];
        [[[[UIApplication sharedApplication] windows]lastObject] addSubview:view];
//New Application Windows
      UIWindow*Window = [UIApplication sharedApplication].keyWindow;
//Open menu with 3 finger

  UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] init];
    tap.numberOfTapsRequired = 2;      // MultiTouch
    tap.numberOfTouchesRequired = 3;   // Number finger touch
    [Window addGestureRecognizer:tap];
    [tap addTarget:self action:@selector(expand)]; // Check status
//}];

    });


}

+ (instancetype)View
{
    return [[IGGView alloc] initWithFrame:[UIScreen mainScreen].bounds];
}

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        self.userInteractionEnabled = NO;
  
    }
    return self;
}

- (void)show
{
    self.hidden = NO;

}
#pragma mark -------------------------------------Event-------------------------------------------

//Start creating menu
+ (void)expand {

     //New menu view
    UIWindow*mainWindow;
    mainWindow = [UIApplication sharedApplication].keyWindow;

      

UILabel *myLabel1 = [[UILabel alloc]
initWithFrame:CGRectMake(20, 325.5, 300, 30)];
myLabel1.textColor = [UIColor cyanColor];
myLabel1.font = [UIFont fontWithName:@"AvenirNext-HeavyItalic" size:13];
myLabel1.numberOfLines = 1;
myLabel1.text = [NSString stringWithFormat:@"‍iOS Crack GB"];
myLabel1.textAlignment = NSTextAlignmentCenter;
myLabel1.shadowColor = [UIColor whiteColor];
myLabel1.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel1];

    menuView = [[UIView alloc] 
    initWithFrame:CGRectMake(210, 90, 300, 190)];//menu size height
    menuView.backgroundColor=[UIColor colorWithRed: 0.00 green: 0.00 blue: 0.00 alpha: 0.60];//Color
    menuView.layer.cornerRadius = 15;//Radious corner
    menuView.hidden=NO;//whether to hide
    [mainWindow addSubview:menuView];  
    //Create a close menu button
   closeButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    closeButton.frame = CGRectMake(265, 2, 30, 30);
    [closeButton setTitle:@"" forState:UIControlStateNormal];
    [closeButton setTitleColor:[UIColor yellowColor] forState:UIControlStateNormal];
    [closeButton addTarget:self action:@selector(closeMenu) forControlEvents:UIControlEventTouchUpInside];
    closeButton.hidden = NO; 
    [menuView addSubview:closeButton];
 

UILabel *myLabel2 = [[UILabel alloc]
initWithFrame:CGRectMake(65, 1, 170, 30)];
myLabel2.textColor = [UIColor cyanColor];
myLabel2.font = [UIFont systemFontOfSize:17]; 
myLabel2.numberOfLines = 1;
myLabel2.text = [NSString stringWithFormat:@"‍Menu AOV"];
myLabel2.textAlignment = NSTextAlignmentCenter;
myLabel2.shadowColor = [UIColor colorWithRed: 0.9686 green: 0.3961 blue: 0.8549 alpha: 1];
myLabel2.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel2];
 [menuView addSubview: myLabel2];


UILabel *myLabel3 = [[UILabel alloc]
initWithFrame:CGRectMake(40, 13, 170, 30)];
//myLabel3.textColor = [UIColor cyanColor];
myLabel3.font = [UIFont systemFontOfSize:8]; 
myLabel3.numberOfLines = 1;
//myLabel3.text = [NSString stringWithFormat:@"‍Copyright © by Ninh"];
myLabel3.text = [NSString stringWithFormat:@"‍"];
myLabel3.textAlignment = NSTextAlignmentCenter;
myLabel3.textColor = [UIColor colorWithRed: 1 green: 1 blue: 1 alpha: 0.60];
myLabel3.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel3];
 [menuView addSubview: myLabel3];
[UIView animateWithDuration:2.0 delay:0.0 options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat animations:^{
    CGRect frame = myLabel3.frame;
    frame.origin.x += 50;
    myLabel3.frame = frame;
} completion:nil];


UILabel *myLabel4 = [[UILabel alloc]
initWithFrame:CGRectMake(0, 70, 300, 80)];
//myLabel3.textColor = [UIColor cyanColor];
myLabel4.font = [UIFont systemFontOfSize:14]; 
myLabel4.numberOfLines = 1;
myLabel4.text = [NSString stringWithFormat:@"‍Map Bật Tại Sảng Bật Trong Trận Vô Tác Dụng"];
myLabel4.textAlignment = NSTextAlignmentCenter;
myLabel4.textColor = [UIColor whiteColor];
myLabel4.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel4];
 [menuView addSubview: myLabel4];


UILabel *myLabel5 = [[UILabel alloc]
initWithFrame:CGRectMake(34, 89, 230, 80)];
//myLabel5.textColor = [UIColor cyanColor];
myLabel5.font = [UIFont systemFontOfSize:14]; 
myLabel5.numberOfLines = 1;
myLabel5.text = [NSString stringWithFormat:@"‍Địt cụ bọn chó rách share lén"];
myLabel5.textAlignment = NSTextAlignmentCenter;
myLabel5.textColor = [UIColor whiteColor];
myLabel5.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel5];
 [menuView addSubview: myLabel5];

UILabel *myLabel6 = [[UILabel alloc]
initWithFrame:CGRectMake(104, 115, 230, 80)];
//myLabel6.textColor = [UIColor cyanColor];
myLabel6.font = [UIFont systemFontOfSize:15]; 
myLabel6.numberOfLines = 1;
myLabel6.text = [NSString stringWithFormat:@"‍-iOS Crack GB-"];
myLabel6.textAlignment = NSTextAlignmentCenter;
myLabel6.textColor = [UIColor redColor];
myLabel6.shadowOffset = CGSizeMake(0.70,0.70); 
[mainWindow addSubview:myLabel6];
 [menuView addSubview: myLabel6];


       //Define to store multiple data


     NSUserDefaults*defaults = [NSUserDefaults standardUserDefaults];
    [defaults synchronize];

    //添加开关功能
    UISwitch* SW1 = [[UISwitch alloc] initWithFrame:CGRectMake(80, 53, 51, 31)];
    SW1.thumbTintColor = [UIColor cyanColor];
    SW1.onTintColor = [UIColor colorWithRed: 0.9686 green: 0.3961 blue: 0.8549 alpha: 1];
    SW1.tintColor = [UIColor clearColor];
    [SW1 addTarget:self action:@selector(feature1:)  forControlEvents:UIControlEventValueChanged];
    [menuView addSubview:SW1];
   //定义开关默认开启
   BOOL sw1 = [defaults boolForKey:@"sw1"];
    if (sw1 == YES) { [SW1 setOn:YES];   } 
    else { [SW1 setOn:NO];     }
      UILabel* AL1 = [[UILabel alloc] initWithFrame:CGRectMake(141, 48, 100, 40)];
      [AL1 setText:@"Map Sáng"];
      [AL1 setTextColor:[UIColor whiteColor] ];
      [AL1 setBackgroundColor:[UIColor clearColor]];
       AL1.font = [UIFont systemFontOfSize:18];
      [menuView addSubview:AL1];
[UIView animateWithDuration:0.5
                      delay:0.0
                    options:UIViewAnimationOptionRepeat | UIViewAnimationOptionAutoreverse
                 animations:^{
                     AL1.alpha = 0.5;
                 }
                 completion:nil];

}

  
//无后
+ (void)feature1:(UISwitch *)SW1 {
    
    if ([SW1 isOn]) {
//开启
 
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

    [defaults setBool:YES forKey:@"sw1"];

    [defaults synchronize];

patchOffset(OFFSET, HEX);

        } else {

patchOffset(OFFSET, HEX);


    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

    [defaults setBool:NO forKey:@"sw1"];

    [defaults synchronize];

}}

//创建关闭菜单
+ (void)closeMenu { menuView.hidden = YES; } 


@end

 

 

 

MenuAOV_EXTRA_FRAMEWORKS += JRMemory

delete it in makefile and try again

  • Giabao999 changed the title to Theos clang error while linking tweak (solved)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • League of Dreamers - My Story v2.0 +3 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: League of Dreamers - My Story By Story Inc. Company
      Bundle ID: com.storyincorporate.leagueofdreamers
      iTunes Store Link: https://apps.apple.com/us/app/league-of-dreamers-my-story/id1591679538
       

      Hack Features:
      - 666 Gems -> Earn some then restart the game.
      - 666 Keys -> Earn some then restart the game.
      - Free In-App Purchases -> Allows free in-app purchases.


      Jailbreak required hack(s): [Mod Menu Hack] League of Dreamers - My Story v1.54 +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
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 149 replies
    • League of Dreamers - My Story v2.0 +3 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: League of Dreamers - My Story By Story Inc. Company
      Bundle ID: com.storyincorporate.leagueofdreamers
      iTunes Store Link: https://apps.apple.com/us/app/league-of-dreamers-my-story/id1591679538
       

      Hack Features:
      - 666 Gems -> Earn some then restart the game.
      - 666 Keys -> Earn some then restart the game.
      - Free In-App Purchases


      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
        • Thanks
        • Winner
        • Like
      • 69 replies
    • The Walking Zombie 2 v3.33.0 +12 Jailed Cheats [ God Mode, Damage, Speed ]
      Modded/Hacked App: The Walking Zombie 2 By Alda Games s.r.o.
      Bundle ID: com.aldagames.zombieshooter
      iTunes Store Link: https://apps.apple.com/us/app/the-walking-zombie-2/id1477794561
       

      Hack Features:
      - Unlimited Silver
      - Unlimited Gold
      - God Mode
      - Custom Damage
      - Custom Move Speed
      - Custom Doctor
      - Unlimited Ammo -> Will not decrease.
      - Instant Reload
      - Insane Fire Rate
      - No Weapon Recoil
      - No Weapon Spread
      - No Camera Shake


      Jailbreak required hack(s): [Mod Menu Hack] The Walking Zombie 2 v3.6.12 +12 Cheats [ God Mode, Damage, Speed ] - 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
    • The Walking Zombie 2 v3.33.0 +12 Cheats [ God Mode, Damage, Speed ]
      Modded/Hacked App: The Walking Zombie 2 By Alda Games s.r.o.
      Bundle ID: com.aldagames.zombieshooter
      iTunes Store Link: https://apps.apple.com/us/app/the-walking-zombie-2/id1477794561


      Hack Features:
      - Unlimited Silver
      - Unlimited Gold
      - God Mode
      - Custom Damage
      - Custom Move Speed
      - Custom Doctor
      - Unlimited Ammo -> Will not decrease.
      - Instant Reload
      - Insane Fire Rate
      - No Weapon Recoil
      - No Weapon Spread
      - No Camera Shake


      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
      • 79 replies
    • MARVEL Puzzle Quest: Hero RPG v321.0.701151 +2 Jailed Cheats [ One-Hit Kill ]
      Modded/Hacked App: MARVEL Puzzle Quest: Hero RPG By D3PA
      Bundle ID: com.d3p.yorkMPQ
      iTunes Store Link: https://apps.apple.com/us/app/marvel-puzzle-quest-hero-rpg/id618349779


      Hack Features:
      - God Mode -> Linked. Wait until it's the enemies turn then enable this feature.
      - One-Hit Kill -> Linked. Wait until it's your turn then enable this feature.


      Jailbreak required hack(s): [Mod Menu Hack] MARVEL Puzzle Quest: Hero RPG v264.0.617994 +2 Cheats [ One-Hit Kill ] - 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
      • 96 replies
    • MeChat v4.32.2 +1 Jailed Cheat [ Unlimited Gems ]
      Modded/Hacked App: MeChat By PlayMe Studio
      Bundle ID: world.playme.mechat
      iTunes Store Link: https://apps.apple.com/us/app/mechat/id1536157979
       

      Hack Features:
      - Unlimited Gems -> Will increase instead of decrease.
      - Unlimited Gems -> Earn some then uninstall this hack. DO NOT SPEND ANY GEMS WHILST THIS FEATURE IS ENABLED! [ VIP ]


      Free Jailbreak required hack(s): [Mod Menu Hack] [Free] MeChat - Love Secrets v3.3.2 +1 Cheat [ Unlimited Gems ] - Free Jailbroken Cydia Cheats - iOSGods
      ViP Jailbreak required hack(s): [Mod Menu Hack] MeChat - Love Secrets v3.3.2 +1 Cheat [ Unlimited Gems ] - ViP 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
      • 751 replies
    • Disney Speedstorm v1.11.0 +2 Jailed Cheats [ Unlimited Nitro ]
      Modded/Hacked App: Disney Speedstorm By Gameloft
      Bundle ID: com.gameloft.disneyspeedstorm
      iTunes Store Link: https://apps.apple.com/us/app/disney-speedstorm/id6449708682?uo=4


      Hack Features:
      - Unlimited Nitro -> Will not decrease.
      - Instant Nitro Max


      Jailbreak required hack(s): [Mod Menu Hack] Disney Speedstorm v1.5.0 +2 Cheats [ Unlimited Nitro ] - 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
      • 74 replies
    • Disney Speedstorm v1.11.0 +2 Cheats [ Unlimited Nitro ]
      Modded/Hacked App: Disney Speedstorm By Gameloft
      Bundle ID: com.gameloft.disneyspeedstorm
      iTunes Store Link: https://apps.apple.com/us/app/disney-speedstorm/id6449708682?uo=4


      Hack Features:
      - Unlimited Nitro -> Will not decrease.
      - Instant Nitro Max


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Disney Speedstorm v1.5.0 +2 Jailed Cheats [ Unlimited Nitro ] - 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
        • Thanks
        • Winner
        • Like
      • 63 replies
    • MARVEL Puzzle Quest: Hero RPG v321.0.701151 +2 Cheats [ One-Hit Kill ]
      Modded/Hacked App: MARVEL Puzzle Quest: Hero RPG By D3PA
      Bundle ID: com.d3p.yorkMPQ
      iTunes Store Link: https://apps.apple.com/us/app/marvel-puzzle-quest-hero-rpg/id618349779


      Hack Features:
      - God Mode -> Linked. Wait until it's the enemies turn then enable this feature. This feature will auto update itself once a new version of the app is released!
      - One-Hit Kill -> Linked. Wait until it's your turn then enable this feature. This feature will auto update itself once a new version of the app is released!


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] MARVEL Puzzle Quest: Hero RPG v264.0.617994 +1 Jailed Cheat [ One-Hit Kill ] - 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
      • 56 replies
    • [ VIP ] MeChat v4.32.2 +1 Cheat [ Unlimited Gems ]
      Modded/Hacked App: MeChat By PlayMe Studio
      Bundle ID: world.playme.mechat
      iTunes Store Link: https://apps.apple.com/us/app/mechat/id1536157979
       

      Hack Features:
      - Unlimited Gems -> Earn some then uninstall this hack. DO NOT SPEND ANY GEMS WHILST THIS FEATURE IS ENABLED!


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] MeChat - Love Secrets v3.3.2 +1 Jailed Cheat [ Unlimited Gems ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Free Jailbreak required hack(s): [Mod Menu Hack] [Free] MeChat - Love Secrets v3.3.2 +1 Cheat [ Unlimited Gems ] - 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
      • 128 replies
    • Claire's Chronicles: Solitaire v0.19.0 +1++ Jailed Cheat [ Unlimited Everything ]
      Modded/Hacked App: Claire's Chronicles: Solitaire By wooga gmbh
      Bundle ID: net.wooga.claires.chronicles.solitaire.design.mystery.town.adventure
      iTunes Store Link: https://apps.apple.com/gb/app/claires-chronicles-solitaire/id6478491092?uo=4


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


      Jailbreak required hack(s): [Mod Menu Hack] Claire's Chronicles: Solitaire v0.12.1 +1++ Cheat [ Unlimited Everything ] - 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/
        • Like
      • 13 replies
    • Claire's Chronicles: Solitaire v0.19.0 +1++ Cheat [ Unlimited Everything ]
      Modded/Hacked App: Claire's Chronicles: Solitaire By wooga gmbh
      Bundle ID: net.wooga.claires.chronicles.solitaire.design.mystery.town.adventure
      iTunes Store Link: https://apps.apple.com/gb/app/claires-chronicles-solitaire/id6478491092?uo=4


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


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Claire's Chronicles: Solitaire v0.12.1 +1++ Jailed Cheat [ Unlimited Everything ] - 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/
        • Like
      • 10 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