Jump to content

MM button not showing up IOS11


AxCE

13 posts in this topic

Recommended Posts

Posted

jo im so f***ing tired of ths sh!t i tred for so long to get this sh!t working..

I tried to install shmoos MM and it showed up.

When i tried to add new offsets/buttons/colors to the Menu, the changes just didn't apply to the Menu.

So i made a new project, with a different name.  I changed the basic stuff and tried to compile it but its not showing up.

(the app bundle is correct, the color of the button should be visible and the app delegate is correct)

here's my tweak.xm:

#include "Macros.h"
 
/*****************************/
// Please see sample.xm for sample menu code.
 
// title of your menu
static NSString *const title = @"Stampede Hack";
 
// who made the hack?
static NSString *const credits = @"AxCE";
 
// what font do you want the text to be? don't put anything for the default font
static NSString *const font = @"";
 
// should the menu have a blurred background? true or false
// FYI: this won't always look pretty
static const bool blur = false;
 
// blur style
// you MUST pick from these three: UIBlurEffectStyleExtraLight, UIBlurEffectStyleLight, or UIBlurEffectStyleDark
// *** If you opted for no blur background, this is ignored. However, you still need to fill it in. ***
static const UIBlurEffectStyle blurStyle = UIBlurEffectStyleExtraLight;
 
// A complete list of fonts can be found here: http://iosfonts.com/
/******************************/
 
%hook UnityAppController
 
- (void)applicationDidBecomeActive:(id)arg0 {
    /* For iOS 11 compatibility, the theme color must be here. */
    /* The overall color for the menu and the button. */
    /* If you want a custom color, use rgb(color code) */
    /* Use rgb(arc4random_uniform(0xFFFFFF)) for a random color each launch. */
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
 
    UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
 
    UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);
    openButton.backgroundColor = [UIColor clearColor];
    openButton.layer.cornerRadius = 16;
    openButton.layer.borderWidth = 2;
    openButton.layer.borderColor = themeColor.CGColor;
    [openButton addTarget:self action:@selector(wasDragged:withEvent:)
    forControlEvents:UIControlEventTouchDragInside];
    [openButton addTarget:self action:@selector(showMenu)
    forControlEvents:UIControlEventTouchDownRepeat];
 
    if(!buttonAdded){
        timer(5){
            UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
            menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor blur:blur blurStyle:blurStyle];
 
            /*
            Add features below this comment. Feel free to delete this comment if you're comfortable with how this menu works.
 
            Things are added to the menu in the order you have added them.
 
            A Hack is a switch that contains offsets, hacked hexes, and original hexes. Straightforward.
            To create one, call addHack.
            addHack is called as follows: addHack(@"Hack Name", @"The description of your hack", themeColor, {offsets}, {hacked hexes}, {original hexes});
            For example:
            addHack(@"Infinite Ammo", @"Ammo doesn't run out.", themeColor, {0x1001B292A}, {0xC0035FD6}, {0xD213AEB5});
            You can also have multiple offsets, hacked hexes, and original hexes. There's no limit to the number of offsets you can have! For example:
            addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", themeColor, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});
           
            A Hook is a switch that used to hook a function and apply a feature. This doesn't make much sense because you cannot "unhook" a function if
            the user wants the feature off. It currently serves no purpose except for backward compatibility. All it does is turn on or off now.
 
            A SliderHook is a slider that can be customized to have a minimum and maximum value.
            Good for hooking a function and returning user-specified values. To create one, call addSliderHook.
            addSliderHook is called as follows: addSliderHook(@"Hack Name", @"Description of your hack", themeColor, initial value, minimum value, maximum value);
            For example:
            addSliderHook(@"Adjust Field of View", @"Adjust your field of view.", themeColor, 0, 100, 50);
            To get the value of a SliderHook:
            float value = [SliderHook getSliderValueForHook:@"hack name here"];
            int value = (int)[SliderHook getSliderValueForHook:@"hack name here"];
 
            A TextfieldHook is a textfield. Again, good for hooking a function and returning user-specified values.
            To create one, call addTextfieldHook.
            addTextfieldHook is called as follows: addTextfieldHook(@"Hack name", @"Description of your hack", themeColor);
            For example:
            addTextfieldHook(@"Set Gems", @"Set your gem amount.", themeColor);
            To get the value of a TextfieldHook:
            NSString *value = [TextfieldHook getTextfieldValueForHook:@"hack name here"];
            float value = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];
            int value = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];
 
            A Switch does nothing but turn on or off. Useful when you are in a hooked function and need to know when to call a function or mod an instance variable.
            Since it doesn't do anything but turn on or off, it is essentially the same thing as a Hook.
            To create one, call addSwitch.
            addSwitch is called as follows:
            addSwitch(@"Hack name", @"Description of your hack", themeColor);
            For example:
            addSwitch(@"Kill Everyone", @"Kill everyone in the lobby", themeColor);
            To test whether or not a Switch is on:
            bool on = [Switch getSwitchOnForSwitch:@"hack name here"];
 
            If you want to use writeData in your Tweak.xm, now you can! Call writeData like you normally would.
            Call writeData after the menu has been created. If you use it where you add features, you'll be fine.
 
            Handle hooking with the HOOK and HOOK_NO_ORIG macros. I decided to let you guys handle hooking because
            it is too troublesome to make sure I handle cases where you guys pass parameters incorrectly.
 
            If I wanted to hook a function called LocalPlayer::Update at 0x1001B762A with a pointer to the original function, I would do this:
            HOOK(0x1001B762A, _LocalPlayer_Update, LocalPlayer_Update);
 
            Where _LocalPlayer_Update is the function you write, and LocalPlayer_Update is the pointer to the original function.
 
            You can use HOOK_NO_ORIG if you don't need the pointer to the original function:
            HOOK_NO_ORIG(0x1001B762A, _LocalPlayer_Update);
 
            If that is too confusing, you can always just use MSHookFunction. HOOK and HOOK_NO_ORIG just wrap MSHookFunction in a cleaner call.
            */
 
            // add features here!
 
 addHack(@"Test", @"Ammo doesn't run out.", themeColor, {0x1001B292A}, {0xC0035FD6}, {0xD213AEB5});
 
 
 
 
 
            [main addSubview:openButton];
            [main addSubview:menu];
 
            buttonAdded = true;
        });
    }
 
    %orig;
}
 
%new
- (void)showMenu {
    [menu show];
}
 
%new
- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event
{
    UITouch *touch = [[event touchesForView:button] anyObject];
 
    CGPoint previousLocation = [touch previousLocationInView:button];
    CGPoint location = [touch locationInView:button];
    CGFloat delta_x = location.x - previousLocation.x;
    CGFloat delta_y = location.y - previousLocation.y;
 
    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);
}
%end
 
void addHack(NSString *name, NSString *description, UIColor *theme, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){
    if(menu == nil)
        return;
   
    std::vector<uint64_t> offsetVector;
    std::vector<uint64_t> hackedHexVector;
    std::vector<uint64_t> originalHexVector;
   
    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());
    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());
    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());
   
    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:font theme:theme offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];
    [menu addHack:h];
}
 
void addHook(NSString *name, NSString *description, UIColor *theme){
    if(menu == nil)
        return;
   
    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:font theme:theme];
    [menu addHook:h];
}
 
void addSliderHook(NSString *name, NSString *description, UIColor *theme, float initialValue, float minValue, float maxValue){
    if(menu == nil)
        return;
 
    if(minValue > maxValue)
        return;
   
    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:font theme:theme initialValue:initialValue minValue:minValue maxValue:maxValue];
    [menu addHook:sh];
}
 
void addTextfieldHook(NSString *name, NSString *description, UIColor *theme){
    if(menu == nil)
        return;
   
    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:font theme:theme];
    [menu addHook:th];
}
 
void addSwitch(NSString *name, NSString *description, UIColor *theme){
    if(menu == nil)
        return;
   
    Switch *s = [[Switch alloc] initWithSwitchName:name info:description fontName:font theme:theme];
    [menu addHook:s];
}
 
void writeData(uint64_t offset, uint64_t hex){
    if(menu == nil)
        return;
   
    [menu writeTo:offset withHex:hex];
}

 

Someone please help me.

Posted
1 hour ago, Laxus said:

Run: make clean package everytime you compile. 

i did, and got this:

iPhone5x:/var/mobile/stampedecheat root# make clean package
==> Cleaning
> Making clean in ww
make[1]: Entering directory '/private/var/mobile/stampedecheat/ww'
==> Cleaning
make[1]: Leaving directory '/private/var/mobile/stampedecheat/ww'
> Making all for tweak StampedeCheat
==> Preprocessing Tweak.xm
==> Compiling ModMenu.mm (arm64)…
==> Compiling Hack.mm (arm64)…
==> Compiling Hook.mm (arm64)…
==> Compiling SliderHook.mm (arm64)…
==> Compiling TextfieldHook.mm (arm64)…
==> Compiling InfoView.mm (arm64)…
==> Compiling Switch.mm (arm64)…
==> Compiling Tweak.xm (arm64)…
Tweak.xm:34:59: error: expected ')'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: note: to match this '('
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^
/var/mobile/stampedecheat/Macros.h:46:24: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
                       ^
Tweak.xm:34:59: error: expected ')'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: note: to match this '('
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^
/var/mobile/stampedecheat/Macros.h:46:23: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
                      ^
Tweak.xm:34:59: error: expected ')'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: note: to match this '('
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^
/var/mobile/stampedecheat/Macros.h:46:15: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
              ^
Tweak.xm:34:59: error: expected ']'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: error: invalid operands to binary expression ('void (^)()' and '                                     int')
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/var/mobile/stampedecheat/Macros.h:46:34: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
                        ~~~~~~~~ ^ ~~~~~~~~
5 errors generated.
make[3]: *** [/var/theos/makefiles/instance/rules.mk:246: /var/mobile/stampedech                                     eat/.theos/obj/debug/arm64/Tweak.xm.93196aa9.o] Error 1
rm /var/mobile/stampedecheat/.theos/obj/debug/arm64/Tweak.xm.mm
make[2]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/stampedec                                     heat/.theos/obj/debug/arm64/StampedeCheat.dylib] Error 2
make[1]: *** [/var/theos/makefiles/instance/library.mk:24: internal-library-all_                                     ] Error 2
make: *** [/var/theos/makefiles/master/rules.mk:123: StampedeCheat.all.tweak.var                                     iables] Error 2
iPhone5x:/var/mobile/stampedecheat root# make clean package
==> Cleaning
> Making clean in ww
make[1]: Entering directory '/private/var/mobile/stampedecheat/ww'
==> Cleaning
make[1]: Leaving directory '/private/var/mobile/stampedecheat/ww'
> Making all for tweak StampedeCheat
==> Preprocessing Tweak.xm
==> Compiling ModMenu.mm (arm64)…
==> Compiling Hack.mm (arm64)…
==> Compiling Hook.mm (arm64)…
==> Compiling SliderHook.mm (arm64)…
==> Compiling Switch.mm (arm64)…
==> Compiling TextfieldHook.mm (arm64)…
==> Compiling InfoView.mm (arm64)…
==> Compiling Tweak.xm (arm64)…
==> Linking tweak StampedeCheat (arm64)…
Undefined symbols for architecture arm64:
  "__Unwind_Resume", referenced from:
      addHack(NSString*, NSString*, UIColor*, std::initializer_list<unsigned lon                                     g long>, std::initializer_list<unsigned long long>, std::initializer_list<unsign                                     ed long long>) in Tweak.xm.93196aa9.o
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::vect                                     or(std::vector<unsigned long long, std::allocator<unsigned long long> > const&)                                      in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::_Vector_base(unsigned long, std::allocator<unsigned long long> const&) in Twea                                     k.xm.93196aa9.o
      -[ModMenu show] in ModMenu.mm.93196aa9.o
      -[ModMenu hackToggled:] in ModMenu.mm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::oper                                     ator=(std::vector<unsigned long long, std::allocator<unsigned long long> > const                                     &) in Hack.mm.93196aa9.o
      ...
  "std::terminate()", referenced from:
      ___clang_call_terminate in Tweak.xm.93196aa9.o
      ___clang_call_terminate in Hack.mm.93196aa9.o
  "operator delete(void*)", referenced from:
      __gnu_cxx::new_allocator<unsigned long long>::deallocate(unsigned long lon                                     g*, unsigned long) in Tweak.xm.93196aa9.o
      __gnu_cxx::new_allocator<unsigned long long>::deallocate(unsigned long lon                                     g*, unsigned long) in ModMenu.mm.93196aa9.o
      __gnu_cxx::new_allocator<unsigned long long>::deallocate(unsigned long lon                                     g*, unsigned long) in Hack.mm.93196aa9.o
  "operator new(unsigned long)", referenced from:
      __gnu_cxx::new_allocator<unsigned long long>::allocate(unsigned long, void                                      const*) in Tweak.xm.93196aa9.o
      __gnu_cxx::new_allocator<unsigned long long>::allocate(unsigned long, void                                      const*) in Hack.mm.93196aa9.o
  "___cxa_begin_catch", referenced from:
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      ___clang_call_terminate in Tweak.xm.93196aa9.o
      unsigned long long* std::vector<unsigned long long, std::allocator<unsigne                                     d long long> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<unsigned long                                      long const*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > > >(unsigned long, __gnu_cxx::__normal_iterator<unsigned long long const*, std                                     ::vector<unsigned long long, std::allocator<unsigned long long> > >, __gnu_cxx::                                     __normal_iterator<unsigned long long const*, std::vector<unsigned long long, std                                     ::allocator<unsigned long long> > >) in Hack.mm.93196aa9.o
      ___clang_call_terminate in Hack.mm.93196aa9.o
  "___cxa_call_unexpected", referenced from:
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in ModMenu.mm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in ModMenu.mm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in Hack.mm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in Hack.mm.93196aa9.o
  "___cxa_end_catch", referenced from:
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      unsigned long long* std::vector<unsigned long long, std::allocator<unsigne                                     d long long> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<unsigned long                                      long const*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > > >(unsigned long, __gnu_cxx::__normal_iterator<unsigned long long const*, std                                     ::vector<unsigned long long, std::allocator<unsigned long long> > >, __gnu_cxx::                                     __normal_iterator<unsigned long long const*, std::vector<unsigned long long, std                                     ::allocator<unsigned long long> > >) in Hack.mm.93196aa9.o
  "___cxa_rethrow", referenced from:
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      unsigned long long* std::vector<unsigned long long, std::allocator<unsigne                                     d long long> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<unsigned long                                      long const*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > > >(unsigned long, __gnu_cxx::__normal_iterator<unsigned long long const*, std                                     ::vector<unsigned long long, std::allocator<unsigned long long> > >, __gnu_cxx::                                     __normal_iterator<unsigned long long const*, std::vector<unsigned long long, std                                     ::allocator<unsigned long long> > >) in Hack.mm.93196aa9.o
  "___gxx_personality_v0", referenced from:
      addHack(NSString*, NSString*, UIColor*, std::initializer_list<unsigned lon                                     g long>, std::initializer_list<unsigned long long>, std::initializer_list<unsign                                     ed long long>) in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in Tweak.xm.93196aa9.o
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::vect                                     or(std::vector<unsigned long long, std::allocator<unsigned long long> > const&)                                      in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::_Vector_base(unsigned long, std::allocator<unsigned long long> const&) in Twea                                     k.xm.93196aa9.o
      Dwarf Exception Unwind Info (__eh_frame) in Tweak.xm.93196aa9.o
      ...
  "_memcpy", referenced from:
      _logosLocalInit() in Tweak.xm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke in ModMenu.mm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke.200 in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke.221 in ModMenu.mm.93196aa9.o
      -[SliderHook setTriangleTransform:] in SliderHook.mm.93196aa9.o
      -[TextfieldHook setTriangleTransform:] in TextfieldHook.mm.93196aa9.o
      ...
  "_memmove", referenced from:
      unsigned long long* std::__copy<true, std::random_access_iterator_tag>::co                                     py<unsigned long long>(unsigned long long const*, unsigned long long const*, uns                                     igned long long*) in Tweak.xm.93196aa9.o
      unsigned long long* std::__copy_backward<true, std::random_access_iterator                                     _tag>::__copy_b<unsigned long long>(unsigned long long const*, unsigned long lon                                     g const*, unsigned long long*) in Tweak.xm.93196aa9.o
      unsigned long long* std::__copy<true, std::random_access_iterator_tag>::co                                     py<unsigned long long>(unsigned long long const*, unsigned long long const*, uns                                     igned long long*) in Hack.mm.93196aa9.o
  "_memset", referenced from:
      -[ModMenu show] in ModMenu.mm.93196aa9.o
      -[ModMenu hackToggled:] in ModMenu.mm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke in ModMenu.mm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke.200 in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke.221 in ModMenu.mm.93196aa9.o
      -[SliderHook getTriangleTransform] in SliderHook.mm.93196aa9.o
      ...
ld: symbol(s) not found for architecture arm64
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocati                                     on)
make[3]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/stampedec                                     heat/.theos/obj/debug/arm64/StampedeCheat.dylib] Error 1
rm /var/mobile/stampedecheat/.theos/obj/debug/arm64/Tweak.xm.mm
make[2]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/stampedec                                     heat/.theos/obj/debug/arm64/StampedeCheat.dylib] Error 2
make[1]: *** [/var/theos/makefiles/instance/library.mk:24: internal-library-all_                                     ] Error 2
make: *** [/var/theos/makefiles/master/rules.mk:123: StampedeCheat.all.tweak.var                                     iables] Error 2
iPhone5x:/var/mobile/stampedecheat root#

 

Posted
45 minutes ago, AxCE said:

i did, and got this:


iPhone5x:/var/mobile/stampedecheat root# make clean package
==> Cleaning
> Making clean in ww
make[1]: Entering directory '/private/var/mobile/stampedecheat/ww'
==> Cleaning
make[1]: Leaving directory '/private/var/mobile/stampedecheat/ww'
> Making all for tweak StampedeCheat
==> Preprocessing Tweak.xm
==> Compiling ModMenu.mm (arm64)…
==> Compiling Hack.mm (arm64)…
==> Compiling Hook.mm (arm64)…
==> Compiling SliderHook.mm (arm64)…
==> Compiling TextfieldHook.mm (arm64)…
==> Compiling InfoView.mm (arm64)…
==> Compiling Switch.mm (arm64)…
==> Compiling Tweak.xm (arm64)…
Tweak.xm:34:59: error: expected ')'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: note: to match this '('
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^
/var/mobile/stampedecheat/Macros.h:46:24: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
                       ^
Tweak.xm:34:59: error: expected ')'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: note: to match this '('
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^
/var/mobile/stampedecheat/Macros.h:46:23: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
                      ^
Tweak.xm:34:59: error: expected ')'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: note: to match this '('
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^
/var/mobile/stampedecheat/Macros.h:46:15: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
              ^
Tweak.xm:34:59: error: expected ']'
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                                                          ^
Tweak.xm:34:27: error: invalid operands to binary expression ('void (^)()' and '                                     int')
    UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/var/mobile/stampedecheat/Macros.h:46:34: note: expanded from macro 'rgb'
 colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
                        ~~~~~~~~ ^ ~~~~~~~~
5 errors generated.
make[3]: *** [/var/theos/makefiles/instance/rules.mk:246: /var/mobile/stampedech                                     eat/.theos/obj/debug/arm64/Tweak.xm.93196aa9.o] Error 1
rm /var/mobile/stampedecheat/.theos/obj/debug/arm64/Tweak.xm.mm
make[2]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/stampedec                                     heat/.theos/obj/debug/arm64/StampedeCheat.dylib] Error 2
make[1]: *** [/var/theos/makefiles/instance/library.mk:24: internal-library-all_                                     ] Error 2
make: *** [/var/theos/makefiles/master/rules.mk:123: StampedeCheat.all.tweak.var                                     iables] Error 2
iPhone5x:/var/mobile/stampedecheat root# make clean package
==> Cleaning
> Making clean in ww
make[1]: Entering directory '/private/var/mobile/stampedecheat/ww'
==> Cleaning
make[1]: Leaving directory '/private/var/mobile/stampedecheat/ww'
> Making all for tweak StampedeCheat
==> Preprocessing Tweak.xm
==> Compiling ModMenu.mm (arm64)…
==> Compiling Hack.mm (arm64)…
==> Compiling Hook.mm (arm64)…
==> Compiling SliderHook.mm (arm64)…
==> Compiling Switch.mm (arm64)…
==> Compiling TextfieldHook.mm (arm64)…
==> Compiling InfoView.mm (arm64)…
==> Compiling Tweak.xm (arm64)…
==> Linking tweak StampedeCheat (arm64)…
Undefined symbols for architecture arm64:
  "__Unwind_Resume", referenced from:
      addHack(NSString*, NSString*, UIColor*, std::initializer_list<unsigned lon                                     g long>, std::initializer_list<unsigned long long>, std::initializer_list<unsign                                     ed long long>) in Tweak.xm.93196aa9.o
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::vect                                     or(std::vector<unsigned long long, std::allocator<unsigned long long> > const&)                                      in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::_Vector_base(unsigned long, std::allocator<unsigned long long> const&) in Twea                                     k.xm.93196aa9.o
      -[ModMenu show] in ModMenu.mm.93196aa9.o
      -[ModMenu hackToggled:] in ModMenu.mm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::oper                                     ator=(std::vector<unsigned long long, std::allocator<unsigned long long> > const                                     &) in Hack.mm.93196aa9.o
      ...
  "std::terminate()", referenced from:
      ___clang_call_terminate in Tweak.xm.93196aa9.o
      ___clang_call_terminate in Hack.mm.93196aa9.o
  "operator delete(void*)", referenced from:
      __gnu_cxx::new_allocator<unsigned long long>::deallocate(unsigned long lon                                     g*, unsigned long) in Tweak.xm.93196aa9.o
      __gnu_cxx::new_allocator<unsigned long long>::deallocate(unsigned long lon                                     g*, unsigned long) in ModMenu.mm.93196aa9.o
      __gnu_cxx::new_allocator<unsigned long long>::deallocate(unsigned long lon                                     g*, unsigned long) in Hack.mm.93196aa9.o
  "operator new(unsigned long)", referenced from:
      __gnu_cxx::new_allocator<unsigned long long>::allocate(unsigned long, void                                      const*) in Tweak.xm.93196aa9.o
      __gnu_cxx::new_allocator<unsigned long long>::allocate(unsigned long, void                                      const*) in Hack.mm.93196aa9.o
  "___cxa_begin_catch", referenced from:
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      ___clang_call_terminate in Tweak.xm.93196aa9.o
      unsigned long long* std::vector<unsigned long long, std::allocator<unsigne                                     d long long> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<unsigned long                                      long const*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > > >(unsigned long, __gnu_cxx::__normal_iterator<unsigned long long const*, std                                     ::vector<unsigned long long, std::allocator<unsigned long long> > >, __gnu_cxx::                                     __normal_iterator<unsigned long long const*, std::vector<unsigned long long, std                                     ::allocator<unsigned long long> > >) in Hack.mm.93196aa9.o
      ___clang_call_terminate in Hack.mm.93196aa9.o
  "___cxa_call_unexpected", referenced from:
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in ModMenu.mm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in ModMenu.mm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in Hack.mm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in Hack.mm.93196aa9.o
  "___cxa_end_catch", referenced from:
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      unsigned long long* std::vector<unsigned long long, std::allocator<unsigne                                     d long long> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<unsigned long                                      long const*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > > >(unsigned long, __gnu_cxx::__normal_iterator<unsigned long long const*, std                                     ::vector<unsigned long long, std::allocator<unsigned long long> > >, __gnu_cxx::                                     __normal_iterator<unsigned long long const*, std::vector<unsigned long long, std                                     ::allocator<unsigned long long> > >) in Hack.mm.93196aa9.o
  "___cxa_rethrow", referenced from:
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      unsigned long long* std::vector<unsigned long long, std::allocator<unsigne                                     d long long> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<unsigned long                                      long const*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > > >(unsigned long, __gnu_cxx::__normal_iterator<unsigned long long const*, std                                     ::vector<unsigned long long, std::allocator<unsigned long long> > >, __gnu_cxx::                                     __normal_iterator<unsigned long long const*, std::vector<unsigned long long, std                                     ::allocator<unsigned long long> > >) in Hack.mm.93196aa9.o
  "___gxx_personality_v0", referenced from:
      addHack(NSString*, NSString*, UIColor*, std::initializer_list<unsigned lon                                     g long>, std::initializer_list<unsigned long long>, std::initializer_list<unsign                                     ed long long>) in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::~vec                                     tor() in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::~_Vector_base() in Tweak.xm.93196aa9.o
      void std::vector<unsigned long long, std::allocator<unsigned long long> >:                                     :_M_range_insert<unsigned long long const*>(__gnu_cxx::__normal_iterator<unsigne                                     d long long*, std::vector<unsigned long long, std::allocator<unsigned long long>                                      > >, unsigned long long const*, unsigned long long const*, std::forward_iterato                                     r_tag) in Tweak.xm.93196aa9.o
      std::vector<unsigned long long, std::allocator<unsigned long long> >::vect                                     or(std::vector<unsigned long long, std::allocator<unsigned long long> > const&)                                      in Tweak.xm.93196aa9.o
      std::_Vector_base<unsigned long long, std::allocator<unsigned long long> >                                     ::_Vector_base(unsigned long, std::allocator<unsigned long long> const&) in Twea                                     k.xm.93196aa9.o
      Dwarf Exception Unwind Info (__eh_frame) in Tweak.xm.93196aa9.o
      ...
  "_memcpy", referenced from:
      _logosLocalInit() in Tweak.xm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke in ModMenu.mm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke.200 in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke.221 in ModMenu.mm.93196aa9.o
      -[SliderHook setTriangleTransform:] in SliderHook.mm.93196aa9.o
      -[TextfieldHook setTriangleTransform:] in TextfieldHook.mm.93196aa9.o
      ...
  "_memmove", referenced from:
      unsigned long long* std::__copy<true, std::random_access_iterator_tag>::co                                     py<unsigned long long>(unsigned long long const*, unsigned long long const*, uns                                     igned long long*) in Tweak.xm.93196aa9.o
      unsigned long long* std::__copy_backward<true, std::random_access_iterator                                     _tag>::__copy_b<unsigned long long>(unsigned long long const*, unsigned long lon                                     g const*, unsigned long long*) in Tweak.xm.93196aa9.o
      unsigned long long* std::__copy<true, std::random_access_iterator_tag>::co                                     py<unsigned long long>(unsigned long long const*, unsigned long long const*, uns                                     igned long long*) in Hack.mm.93196aa9.o
  "_memset", referenced from:
      -[ModMenu show] in ModMenu.mm.93196aa9.o
      -[ModMenu hackToggled:] in ModMenu.mm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke in ModMenu.mm.93196aa9.o
      ___22-[ModMenu showSlider:]_block_invoke.200 in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke in ModMenu.mm.93196aa9.o
      ___25-[ModMenu showTextfield:]_block_invoke.221 in ModMenu.mm.93196aa9.o
      -[SliderHook getTriangleTransform] in SliderHook.mm.93196aa9.o
      ...
ld: symbol(s) not found for architecture arm64
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocati                                     on)
make[3]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/stampedec                                     heat/.theos/obj/debug/arm64/StampedeCheat.dylib] Error 1
rm /var/mobile/stampedecheat/.theos/obj/debug/arm64/Tweak.xm.mm
make[2]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/stampedec                                     heat/.theos/obj/debug/arm64/StampedeCheat.dylib] Error 2
make[1]: *** [/var/theos/makefiles/instance/library.mk:24: internal-library-all_                                     ] Error 2
make: *** [/var/theos/makefiles/master/rules.mk:123: StampedeCheat.all.tweak.var                                     iables] Error 2
iPhone5x:/var/mobile/stampedecheat root#

 

Bruh look at it, obviously it's wrong:

UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);

This is correct: 

UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF));

 

Obviously you need to close the arc4random_uniform call too.

Posted
1 minute ago, Ted2 said:

Bruh look at it, obviously it's wrong:

UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF);

This is correct: 

UIColor *themeColor = rgb(arc4random_uniform(0xFFFFFF));

 

Obviously you need to close the arc4random_uniform call too.

I changed it to rgb(0xFF99FF) and it still didnt work..

Posted
24 minutes ago, AxCE said:

I changed it to rgb(0xFF99FF) and it still didnt work..

What's the error? I mean it compiles fine for everyone so you must do something wrong

Posted
55 minutes ago, Ted2 said:

What's the error? I mean it compiles fine for everyone so you must do something wrong

I posted it above...

Archived

This topic is now archived and is closed to further replies.

  • Our picks

    • King God Castle: Pixel Defense v157.1.00 +8 Cheats
      Modded/Hacked App: King God Castle By AWESOMEPIECE
      Bundle ID: com.awesomepiece.castle
      iTunes Store Link: https://apps.apple.com/us/app/king-god-castle/id1526791430?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
      - Unlimited Skills
      - Kill All Enemies
      - Spawn Max Level Units
      - Game Speed Multiplier
      - Free Summon Cost
      - Free Expand Cost
      - 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. 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
      • 151 replies
    • SDガンダム ジージェネレーション エターナル v1.3.2 +4 cheats
      Modded/Hacked App: SDガンダム ジージェネレーション エターナル By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0403
      iTunes Store Link: https://apps.apple.com/jp/app/sd%E3%82%AC%E3%83%B3%E3%83%80%E3%83%A0-%E3%82%B8%E3%83%BC%E3%82%B8%E3%82%A7%E3%83%8D%E3%83%AC%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3-%E3%82%A8%E3%82%BF%E3%83%BC%E3%83%8A%E3%83%AB/id6692611665?uo=4

       

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Skill Energy
      - Game Speed Multiplier

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content
      React or reply to this topic to see the <a href='https://iosgods.com/topic/3762-info-how-to-unlockview-the-hidden-content-on-iosgods/#findComment-78119'>hidden content & download link</a>. 👀







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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 8: 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. 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 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

      - @KyosukeNanbu
        • Haha
        • Thanks
        • Winner
        • Like
      • 52 replies
    • SDガンダム ジージェネレーション エターナル v1.3.2 +4 cheats
      Modded/Hacked App: SDガンダム ジージェネレーション エターナル By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0403
      iTunes Store Link: https://apps.apple.com/jp/app/sd%E3%82%AC%E3%83%B3%E3%83%80%E3%83%A0-%E3%82%B8%E3%83%BC%E3%82%B8%E3%82%A7%E3%83%8D%E3%83%AC%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3-%E3%82%A8%E3%82%BF%E3%83%BC%E3%83%8A%E3%83%AB/id6692611665?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Skill Energy
      - Game Speed Multiplier

       

      ⬇️ iOS Hack Download Link


      Hidden Content
      React or reply to this topic to see the <a href='https://iosgods.com/topic/3762-info-how-to-unlockview-the-hidden-content-on-iosgods/#findComment-78119'>hidden content & download link</a>. 👀







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

      - @KyosukeNanbu

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
        • Thanks
        • Winner
        • Like
      • 62 replies
    • SD Gundam G Generation ETERNAL v1.3.2 +4 Cheats
      Modded/Hacked App: SD Gundam G Generation ETERNAL By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0405
      iTunes Store Link: https://apps.apple.com/us/app/sd-gundam-g-generation-eternal/id6692615881?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Skills Energy

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 83 replies
    • SD Gundam G Generation ETERNAL v1.3.2 +4 Jailed Cheats
      Modded/Hacked App: SD Gundam G Generation ETERNAL By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0405
      iTunes Store Link: https://apps.apple.com/us/app/sd-gundam-g-generation-eternal/id6692615881?uo=4

       

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Skills Energy

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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 8: 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. 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 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
      • 140 replies
    • (Contra Returns China) 魂斗罗:归来-仙境迎春 v1.74.125.3953 +4 Jailed Cheats
      Modded/Hacked App: 魂斗罗:归来-仙境迎春 By Shenzhen Tencent Tianyou Technology Ltd
      Bundle ID: com.tencent.shootgame
      iTunes Store Link: https://apps.apple.com/cn/app/%E9%AD%82%E6%96%97%E7%BD%97-%E5%BD%92%E6%9D%A5-%E4%BB%99%E5%A2%83%E8%BF%8E%E6%98%A5/id983122251?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:
      - Weak Enemies
      - Unlimited Ammo
      - Increase Fire Range
      - Increase Fire Rate


      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
        • Like
      • 22 replies
    • (Bloons TD 6 China) 气球塔防6-超人气塔防手游 v49.0 +8 Jailed Cheats
      Modded/Hacked App: 气球塔防6-超人气塔防手游 By X.D. Network Inc.
      Bundle ID: com.xd.bloonstd
      iTunes Store Link: https://apps.apple.com/cn/app/%E6%B0%94%E7%90%83%E5%A1%94%E9%98%B26-%E8%B6%85%E4%BA%BA%E6%B0%94%E5%A1%94%E9%98%B2%E6%89%8B%E6%B8%B8/id6467381694?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
      - Cash 
      - Monkey Money
      - Consumes
      - All Heroes Unlock
      - All Towers Unlock
      - All Upgrades Unlock
      - All Knowledges Unlock


      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
      • 58 replies
    • (Bloons TD 6 China) 气球塔防6-超人气塔防手游 v49.0 +8 Cheats
      Modded/Hacked App: 气球塔防6-超人气塔防手游 By X.D. Network Inc.
      Bundle ID: com.xd.bloonstd
      iTunes Store Link: https://apps.apple.com/cn/app/%E6%B0%94%E7%90%83%E5%A1%94%E9%98%B26-%E8%B6%85%E4%BA%BA%E6%B0%94%E5%A1%94%E9%98%B2%E6%89%8B%E6%B8%B8/id6467381694?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
      - Cash 
      - Monkey Money
      - Consumes
      - All heroes unlock
      - All towers unlock
      - All upgrades unlock
      - All knowledges unlock


      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
        • Haha
        • Thanks
        • Winner
        • Like
      • 57 replies
    • (Contra Returns China) 魂斗罗:归来-联盟夺宝 v1.74.125.3953 +4 Cheats
      Modded/Hacked App: 魂斗罗:归来-全球集结 By Shenzhen Tencent Computer Systems Company Limited
      Bundle ID: com.tencent.shootgame
      iTunes Store Link: https://apps.apple.com/cn/app/%E9%AD%82%E6%96%97%E7%BD%97-%E5%BD%92%E6%9D%A5-%E5%85%A8%E7%90%83%E9%9B%86%E7%BB%93/id983122251?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:
      - Weak Enemies
      - Increase Fire Range
      - Increase Fire Rate


      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
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 137 replies
    • (Isekai & Isekai) 異世界 異世界 ~次はどの作品を、集めよう~ v2.2.1 +2 Cheats
      Modded/Hacked App: 異世界 異世界 ~次はどの作品を、集めよう~ By COLOPL, Inc.
      Bundle ID: jp.colopl.isekai
      iTunes Store Link: https://apps.apple.com/jp/app/%E7%95%B0%E4%B8%96%E7%95%8C-%E7%95%B0%E4%B8%96%E7%95%8C-%E6%AC%A1%E3%81%AF%E3%81%A9%E3%81%AE%E4%BD%9C%E5%93%81%E3%82%92-%E9%9B%86%E3%82%81%E3%82%88%E3%81%86/id6468440641?uo=4

       

       

      🔧 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🚀 Hack Features

      - Damage Multiplier
      - Defense Multiplier


      🍏 For Non-Jailbroken & No Jailbreak required hacks: 

       

      📥 iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

       

      🔗 More iOS App Hacks & Android Modded APKs

      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOSGods No Jailbreak Section for a variety of modded games and apps for non-jailbroken iOS devices.

      Need Modded Android APKs too? Head over to the iOSGods Android Section for custom APK mods, cheats, and more.
        • Agree
        • Winner
        • Like
      • 22 replies
    • (Isekai & Isekai) 異世界 異世界 ~次はどの作品を、集めよう~ v2.2.1 +2 Jailed Cheats
      Modded/Hacked App: 異世界 異世界 ~次はどの作品を、集めよう~ By COLOPL, Inc.
      Bundle ID: jp.colopl.isekai
      iTunes Store Link: https://apps.apple.com/jp/app/%E7%95%B0%E4%B8%96%E7%95%8C-%E7%95%B0%E4%B8%96%E7%95%8C-%E6%AC%A1%E3%81%AF%E3%81%A9%E3%81%AE%E4%BD%9C%E5%93%81%E3%82%92-%E9%9B%86%E3%82%81%E3%82%88%E3%81%86/id6468440641?uo=4

       

       

      🔧 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🚀 Hack Features

      - Damage Multiplier
      - Defense Multiplier


      🍏 Jailbreak iOS hacks: 

       

      📥 iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email when prompted, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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 8: 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. 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 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
        • Thanks
        • Winner
        • Like
      • 40 replies
    • (Legen Clover Japan) れじぇくろ! ~レジェンド・クローバー~ v3.18.0 +1 Cheat
      Modded/Hacked App: れじぇくろ! ~レジェンド・クローバー~ By EXNOA LLC
      Bundle ID: com.dmm.games.legeclo
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%82%8C%E3%81%98%E3%81%87%E3%81%8F%E3%82%8D-%E3%83%AC%E3%82%B8%E3%82%A7%E3%83%B3%E3%83%89-%E3%82%AF%E3%83%AD%E3%83%BC%E3%83%90%E3%83%BC/id1536354906?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:
      - Instant Win


      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
        • Thanks
        • Like
      • 46 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