Jump to content

3 posts in this topic

Recommended Posts

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
Link to comment
https://iosgods.com/topic/184007-theos-clang-error-while-linking-tweak-solved/
Share on other sites

 

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

    • Matchington Mansion v1.170.0 Jailed Cheats +3
      Modded/Hacked App: Matchington Mansion By Magic Tavern, Inc.
      Bundle ID: com.matchington.mansion
      iTunes Store Link: https://apps.apple.com/us/app/matchington-mansion/id1216575026?uo=4


      Hack Features:
      - Infinite Moves
      - Infinite Booster
      - Infinite Lives
       


      Jailbreak required hack(s): https://iosgods.com/topic/75127-arm64-matchington-mansion-cheats-all-versions-5/#


      Hack Download Link: https://iosgods.com/topic/75130-arm64-matchington-mansion-v1970-jailed-cheats-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 619 replies
    • Ninja Must Die v1.0.72 +2 Jailed Cheats
      Modded/Hacked App: Ninja Must Die By Pandada Games Limited
      Bundle ID: com.pandadagames.ninja.global
      iTunes Store Link: https://apps.apple.com/us/app/ninja-must-die/id1628517224?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Never Die
      - Unlimited Jumps


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Like
      • 12 replies
    • Ninja Must Die v1.0.72 +2 Cheats
      Modded/Hacked App: Ninja Must Die By Pandada Games Limited
      Bundle ID: com.pandadagames.ninja.global
      iTunes Store Link: https://apps.apple.com/us/app/ninja-must-die/id1628517224?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - God Mode 
      - No Cooldown on Skill


      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/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - K_K


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 72 replies
    • 僕のヒーローアカデミア ULTRA IMPACT v3.5.1 +5 Jailed Cheats
      Modded/Hacked App: 僕のヒーローアカデミア ULTRA IMPACT By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0378
      iTunes Store Link: https://apps.apple.com/jp/app/%E5%83%95%E3%81%AE%E3%83%92%E3%83%BC%E3%83%AD%E3%83%BC%E3%82%A2%E3%82%AB%E3%83%87%E3%83%9F%E3%82%A2-ultra-impact/id1547368590?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Skill Always Active
      - Auto Win
      - Weak Enemies


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Haha
        • Winner
        • Like
      • 12 replies
    • MY HERO ULTRA IMPACT v3.5.1 +5 Jailed Cheats
      Modded/Hacked App: MY HERO ULTRA IMPACT By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0379
      iTunes Store Link: https://apps.apple.com/us/app/my-hero-ultra-impact/id1548871462?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier 
      - Skill Always Active
      - Auto Win
      - Weak Enemies


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 30 replies
    • 僕のヒーローアカデミア ULTRA IMPACT v3.5.1 +5 Cheats
      Modded/Hacked App: 僕のヒーローアカデミア ULTRA IMPACT By BANDAI NAMCO Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0378
      iTunes Store Link: https://apps.apple.com/jp/app/%E5%83%95%E3%81%AE%E3%83%92%E3%83%BC%E3%83%AD%E3%83%BC%E3%82%A2%E3%82%AB%E3%83%87%E3%83%9F%E3%82%A2-ultra-impact/id1547368590?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - Weak Enemies
      - Jailbreak Detection Removed


      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/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 77 replies
    • MY HERO ULTRA IMPACT v3.5.1 +5 Cheats
      Modded/Hacked App: MY HERO ULTRA IMPACT By BANDAI NAMCO Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0379
      iTunes Store Link: https://apps.apple.com/us/app/my-hero-ultra-impact/id1548871462?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - Weak Enemies


      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/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 294 replies
    • Tiny Fantasy: Action Adventure v1.517 +7 Jailed Cheats
      Modded/Hacked App: Tiny Fantasy: Action Adventure By MINIDRAGON LTD
      Bundle ID: com.minidragon.dungeonwarriors
      iTunes Store Link: https://apps.apple.com/us/app/tiny-fantasy-action-adventure/id1519955511?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Never Die
      - Add Gold
      - Add Gems
      - Add Stones
      - Add Minion Items
      - Freeze Stamina
      - Unlimited Skills


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Like
      • 12 replies
    • Tiny Fantasy: Action Adventure v1.517 +8 Cheats
      Modded/Hacked App: Tiny Fantasy: Action Adventure By MINIDRAGON LTD
      Bundle ID: com.minidragon.dungeonwarriors
      iTunes Store Link: https://apps.apple.com/us/app/tiny-fantasy-action-adventure/id1519955511?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - unlimited skills





      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/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 272 replies
    • Fortias Saga: Action Adventure v1.0.58 +5 Jailed Cheats
      Modded/Hacked App: Fortias Saga: Action Adventure By ONDI TECHNOLOGY JOINT STOCK COMPANY
      Bundle ID: com.ondi.fortias.saga
      iTunes Store Link: https://apps.apple.com/us/app/fortias-saga-action-adventure/id6475805032?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Shards & Items Multiplier*
      - Freeze Resources
      - No Ads

      *Turn Off When You Get Enough So It Don't Go Negative


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 74 replies
    • The Demonized: Idle RPG v2.8.0 +5 Jailed Cheats
      Modded/Hacked App: The Demonized: Idle RPG By Game Duo Co.,Ltd.
      Bundle ID: com.deepgames.release.becamethedevil
      iTunes Store Link: https://apps.apple.com/us/app/the-demonized-idle-rpg/id6477870177?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Never Die
      - Dumb Enemies
      - Attack Speed Multiplier
      - Freeze Resources


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 77 replies
    • Fortias Saga: Action Adventure v1.0.58 +5 Cheats
      Modded/Hacked App: Fortias Saga: Action Adventure By ONDI TECHNOLOGY JOINT STOCK COMPANY
      Bundle ID: com.ondi.fortias.saga
      iTunes Store Link: https://apps.apple.com/us/app/fortias-saga-action-adventure/id6475805032?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Shards & Items Multiplier*
      - Freeze Resources
      - No Ads
      *Turn Off When You Get Enough So It Don't Go Negative


      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/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 161 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