Jump to content

11 posts in this topic

Recommended Posts

Posted

help me add sclalertview in theos??

i use : https://github.com/dogo/SCLAlertView

error:

ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(atomic_signal_fence.c.o)) was built for newer iOS version (6.0) than being linked (5.0)
ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(atomic_thread_fence.c.o)) was built for newer iOS version (6.0) than being linked (5.0)
ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(emutls.c.o)) was built for newer iOS version (6.0) than being linked (5.0)
Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_SCLAlertView", referenced from:
      objc-class-ref in Tweak.xm.cde924a7.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

have help me fixxx !

Posted (edited)
  On 2/22/2017 at 3:35 AM, mikiyan1978 said:

Makefile add xxxxx_FRAMEWORKS = UIKit

 

 

  On 2/22/2017 at 4:09 AM, Pro said:

Did you do #import <SCLAlertView/SCLAlertView.h> in your Tweak.xm?

i have but not work :( error 

Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_SCLAlertView", referenced from:
      objc-class-ref in Tweak.xm.cde924a7.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Updated by vinhthai222006
Posted
  On 2/23/2017 at 3:29 PM, vinhthai222006 said:

 

i have but not work :( error 

Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_SCLAlertView", referenced from:
      objc-class-ref in Tweak.xm.cde924a7.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Try adding this to your Makefile

xxx_FILES = Tweak.xm $(shell find $(THEOS)/include/SCLAlertView -name '*.m')
xxx_FRAMEWORKS = UIKit MessageUI Social QuartzCore CoreGraphics Foundation AVFoundation Accelerate GLKit
Posted
  On 2/23/2017 at 4:42 PM, Pro said:

 

Try adding this to your Makefile

xxx_FILES = Tweak.xm $(shell find $(THEOS)/include/SCLAlertView -name '*.m')
xxx_FRAMEWORKS = UIKit MessageUI Social QuartzCore CoreGraphics Foundation AVFoundation Accelerate GLKit

 

 

error: 


/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:9: error: 
      '__weak' only applies to Objective-C object or block pointer types; type
      here is 'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:23: error: a
      parameter list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:28: error: 
      expected ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1710:13: error: 
      use of undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1711:20: error: 
      use of undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:9: error: 
      '__weak' only applies to Objective-C object or block pointer types; type
      here is 'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:23: error: a
      parameter list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:28: error: 
      expected ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1744:13: error: 
      use of undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1745:20: error: 
      use of undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:9: error: 
      '__weak' only applies to Objective-C object or block pointer types; type
      here is 'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:23: error: a
      parameter list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:28: error: 
      expected ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1754:13: error: 
      use of undeclared identifier 'weakSelf'
            weakSelf.parameterTarget = target;
            ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1755:20: error: 
      use of undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1762:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
Posted
  On 2/25/2017 at 6:57 AM, vinhthai222006 said:

 

error: 


/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:9: error: 
      '__weak' only applies to Objective-C object or block pointer types; type
      here is 'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:23: error: a
      parameter list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:28: error: 
      expected ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1710:13: error: 
      use of undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1711:20: error: 
      use of undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:9: error: 
      '__weak' only applies to Objective-C object or block pointer types; type
      here is 'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:23: error: a
      parameter list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:28: error: 
      expected ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1744:13: error: 
      use of undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1745:20: error: 
      use of undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:9: error: 
      '__weak' only applies to Objective-C object or block pointer types; type
      here is 'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:23: error: a
      parameter list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:28: error: 
      expected ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1754:13: error: 
      use of undeclared identifier 'weakSelf'
            weakSelf.parameterTarget = target;
            ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1755:20: error: 
      use of undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1762:16: error: 
      type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.

You need different headers. Download 1.0.3 from dogo's GitHub

Posted
  On 2/25/2017 at 9:09 AM, Pro said:

You need different headers. Download 1.0.3 from dogo's GitHub

 

i have use guide in https://iosgods.com/topic/27214-how-to-do-sclalertview-in-a-theos-tweak-like-this/

makefile

ARCHS = armv7 arm64

CFLAGS = -fobjc-arc # ARC is needed for SCLAlertView

include $(THEOS)/makefiles/common.mk

TWEAK_NAME = YOURTWEAKNAMEHERE
YOURTWEAKNAMEHERE_FILES = Tweak.xm $(shell find $(THEOS)/vendor/include/SCL -name '*.m')
YOURTWEAKNAMEHERE_FRAMEWORKS = UIKit MessageUI Social QuartzCore CoreGraphics Foundation AVFoundation Accelerate GLKit AudioToolbox
YOURTWEAKNAMEHERE_LDFLAGS += -Wl,-segalign,4000

include $(THEOS_MAKE_PATH)/tweak.mk

tweak.xm

#import <SCL/SCLAlertView.h> // Imports the popup headers.

%hook UnityAppController

- (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app.

    SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];
    
    [alert showSuccess: @"Title here"// Success, Error, Notice, Warning, Info, Edit, Custom, Waiting
              subTitle: @"Subtitle here"
      closeButtonTitle: @"Close button"
              duration: 0.0f];
		return %orig;
}
%end

and i use SCLAlertView 1.0.3 download github but error:

==> Compiling /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m (armv7)…
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:9: error: '__weak'
      only applies to Objective-C object or block pointer types; type here is
      'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:23: error: a parameter
      list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:28: error: expected
      ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1644:13: error: use of
      undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1645:20: error: use of
      undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:9: error: '__weak'
      only applies to Objective-C object or block pointer types; type here is
      'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:23: error: a parameter
      list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:28: error: expected
      ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1678:13: error: use of
      undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1679:20: error: use of
      undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:9: error: '__weak'
      only applies to Objective-C object or block pointer types; type here is
      'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:23: error: a parameter
      list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:28: error: expected
      ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1688:13: error: use of
      undeclared identifier 'weakSelf'
            weakSelf.parameterTarget = target;
            ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1689:20: error: use of
      undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1696:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
fatal error: too many err
Posted
  On 2/25/2017 at 4:13 PM, vinhthai222006 said:

 

i have use guide in https://iosgods.com/topic/27214-how-to-do-sclalertview-in-a-theos-tweak-like-this/

makefile

ARCHS = armv7 arm64

CFLAGS = -fobjc-arc # ARC is needed for SCLAlertView

include $(THEOS)/makefiles/common.mk

TWEAK_NAME = YOURTWEAKNAMEHERE
YOURTWEAKNAMEHERE_FILES = Tweak.xm $(shell find $(THEOS)/vendor/include/SCL -name '*.m')
YOURTWEAKNAMEHERE_FRAMEWORKS = UIKit MessageUI Social QuartzCore CoreGraphics Foundation AVFoundation Accelerate GLKit AudioToolbox
YOURTWEAKNAMEHERE_LDFLAGS += -Wl,-segalign,4000

include $(THEOS_MAKE_PATH)/tweak.mk

tweak.xm

#import <SCL/SCLAlertView.h> // Imports the popup headers.

%hook UnityAppController

- (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app.

    SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];
    
    [alert showSuccess: @"Title here"// Success, Error, Notice, Warning, Info, Edit, Custom, Waiting
              subTitle: @"Subtitle here"
      closeButtonTitle: @"Close button"
              duration: 0.0f];
		return %orig;
}
%end

and i use SCLAlertView 1.0.3 download github but error:

==> Compiling /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m (armv7)…
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:9: error: '__weak'
      only applies to Objective-C object or block pointer types; type here is
      'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:23: error: a parameter
      list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:28: error: expected
      ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1644:13: error: use of
      undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1645:20: error: use of
      undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:9: error: '__weak'
      only applies to Objective-C object or block pointer types; type here is
      'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:23: error: a parameter
      list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:28: error: expected
      ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1678:13: error: use of
      undeclared identifier 'weakSelf'
            weakSelf.parameterTitle = title;
            ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1679:20: error: use of
      undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:9: error: '__weak'
      only applies to Objective-C object or block pointer types; type here is
      'int' [-Werror,-Wignored-attributes]
        __weak typeof(self) weakSelf = self;
        ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:23: error: a parameter
      list without types is only allowed in a function definition
        __weak typeof(self) weakSelf = self;
                      ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:28: error: expected
      ';' at end of declaration
        __weak typeof(self) weakSelf = self;
                           ^
                           ;
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1688:13: error: use of
      undeclared identifier 'weakSelf'
            weakSelf.parameterTarget = target;
            ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1689:20: error: use of
      undeclared identifier 'weakSelf'
            return weakSelf;
                   ^
/Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1696:16: error: type
      specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
        __weak typeof(self) weakSelf = self;
               ^
fatal error: too many err

Try make clean package and see if you get the same thing

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

    • The Seven Deadly Sins Cheats v2.78.1 +5
      Modded/Hacked App: The Seven Deadly Sins by Netmarble Corporation
      Bundle ID: com.netmarble.nanagb
      iTunes Store Link: https://apps.apple.com/us/app/the-seven-deadly-sins/id1475440231?uo=4&at=1010lce4


      Hack Features:
      - God Mode
      - OHK
      - Infinite MP


      iOS Hack Download Link: https://iosgods.com/topic/131686-arm64-the-seven-deadly-sins-cheats-v117-3/
        • Like
      • 2,039 replies
    • Thronefall - A Little Kingdom v2.12.3 +5 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Thronefall - A Little Kingdom By Doghowl Games Ltd
      Bundle ID: com.doghowlgames.thronefall
      App Store Link: https://apps.apple.com/us/app/thronefall-a-little-kingdom/id6744029320?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Unlimited Coins -> Will increase instead of decrease.
      - Free In-App Purchases
      • 0 replies
    • Thronefall - A Little Kingdom v2.12.3 +5 Cheats [ Damage & Defence ]
      Modded/Hacked App: Thronefall - A Little Kingdom By Doghowl Games Ltd
      Bundle ID: com.doghowlgames.thronefall
      App Store Link: https://apps.apple.com/us/app/thronefall-a-little-kingdom/id6744029320?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Unlimited Coins -> Will increase instead of decrease.
      - Free In-App Purchases
      • 0 replies
    • Nightfall: Kingdom Frontier TD v1.0.386 +8 Jailed Cheats [ Currencies ]
      Modded/Hacked App: Nightfall: Kingdom Frontier TD By Fansipan Limited
      Bundle ID: com.fansipan.nightfall.tower.simulation.strategy.td.game
      iTunes Store Link: https://apps.apple.com/us/app/nightfall-kingdom-frontier-td/id6621272416?uo=4


      Hack Features:
      - God Mode
      - Unlimited In-Game Coins -> Will increase instead of decrease.
      - Unlimited Currencies -> Will increase instead of decrease.
      - No Ads
      - Add 1K Currency -> Head over to Settings and toggle the Discord button. [ VIP ]
      - Unlock All Features -> Head over to Settings and toggle the Discord button. [ VIP ]
      - Unlock All / Everything ->  Head over to Settings and toggle the Discord button. [ VIP ]
      - Complete Tutorial -> Head over to Settings and toggle the Discord button. [ VIP ]


      Jailbreak required hack(s): [Mod Menu Hack] Nightfall: Kingdom Frontier TD v1.0.41 +8 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/
      • 84 replies
    • Nightfall: Kingdom Frontier TD v1.0.386 +8 Cheats [ Currencies ]
      Modded/Hacked App: Nightfall: Kingdom Frontier TD By Fansipan Limited
      Bundle ID: com.fansipan.nightfall.tower.simulation.strategy.td.game
      iTunes Store Link: https://apps.apple.com/us/app/nightfall-kingdom-frontier-td/id6621272416?uo=4


      Hack Features:
      - God Mode
      - Unlimited In-Game Coins -> Will increase instead of decrease.
      - Unlimited Currencies -> Will increase instead of decrease.
      - No Ads
      - Add 1K Currency -> Head over to Settings and toggle the Discord button. [ VIP ]
      - Unlock All Features -> Head over to Settings and toggle the Discord button. [ VIP ]
      - Unlock All / Everything ->  Head over to Settings and toggle the Discord button. [ VIP ]
      - Complete Tutorial -> Head over to Settings and toggle the Discord button. [ VIP ]


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Nightfall: Kingdom Frontier TD v1.0.41 +8 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/
      • 100 replies
    • Evil Hunter Tycoon Cheats v1.391 +10
      Modded/Hacked App: Evil Hunter Tycoon by SuperPlanet corp.
      Bundle ID: com.superplanet.evilhunter
      iTunes Store Link: https://apps.apple.com/us/app/evil-hunter-tycoon/id1493512288?uo=4&at=1010lce4


      Hack Features:
      - Hero Legendary when visit the village
      - God Mode PvE
      - Huge Damage PvE
      - Infinite Coin (Turn on before tap to enter the game, earn some or spend some)
      - Freeze Material (Upgrade, create new weapon, armor, etc ...)
      - Free Store  
      - Free iAP
      - Disabled Anti Cheat

      iOS Hack Download Link: https://iosgods.com/topic/121180-arm64-evil-hunter-tycoon-cheats-v124-10/

      Credit: Laxus
      • 2,346 replies
    • Zooba: Zoo Battle Royale Game v5.11.0 Jailed Cheats +2
      Modded/Hacked App: Zooba: Zoo Battle Royale Games By Wildlife Studios Limited
      Bundle ID: com.fungames.battleroyale
      iTunes Store Link: https://apps.apple.com/us/app/zooba-zoo-battle-royale-games/id1459402952?uo=4


      Hack Features:
      - Map Hacks
      - Allow Shoot in Water


      Jailbreak required hack(s): https://iosgods.com/topic/131104-arm64-zooba-zoo-battle-royale-game-cheats-all-versions-2/


      iOS Hack Download Link: https://iosgods.com/topic/131134-arm64-zooba-zoo-battle-royale-game-v320-jailed-cheats-2/
        • Informative
      • 1,275 replies
    • Cooking Diary Restaurant Game v2.40.0 Jailed Cheats +3
      Modded/Hacked App: Cooking Diary® Restaurant Game by MyTona Pte Ltd
      Bundle ID: com.mytonallc.cookingdiary
      iTunes Store Link: https://apps.apple.com/us/app/cooking-diary-restaurant-game/id1214763610?uo=4&at=1010lce4


      Hack Features:
      - Infinite Currencies (Get some)
      - Freeze Boosters


      iOS Hack Download Link: https://iosgods.com/topic/110310-arm64-cooking-diary-restaurant-game-v1160-3/
      • 674 replies
    • Seven Hearts Cheats v1.3.351 +6 [ Always Win & More ]
      Modded/Hacked App: Seven Hearts By BROKKSINDRI Co.,LTD.
      Bundle ID: com.brokksindri.sevenhearts.ios.kr
      iTunes Store Link: https://apps.apple.com/us/app/seven-hearts/id1525657053?uo=4


      Hack Features:
      - Infinite Coins
      - Infinite Mana
      - Instant Deploy (Enable before Battle)
      - God Mode (Tower)
      - Always Win (Quit / Surrender the Game)
      - Always 3 Stars


      iOS Hack Download Link: https://iosgods.com/topic/145909-seven-hearts-cheats-v1280-6-always-win-more/
      • 337 replies
    • Zombastic: Time to Survive v1.7.0 [ +1+++ Jailed ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 30 replies
    • Zombastic: Time to Survive v1.7.0 [ +1+++ Cheats ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      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/
      • 38 replies
    • Cat & Farm: Cute Cat game v0.8.4 [ +1 Cheats ] Currency Max
      Modded/Hacked App: Cat & Farm: Cute Cat game By CSCMOBI VIET NAM TECHNOLOGY JOINT STOCK COMPANY
      Bundle ID: com.cscmobi.catfarm
      App Store Link: https://apps.apple.com/us/app/cat-farm-cute-cat-game/id6723863960?uo=4

        

      🤩 Hack Features

      - Currency Max [ Use Only Currency Disable After Hack ] Because Linked With Exp & Resources


      • 4 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