Jump to content

2 posts in this topic

Recommended Posts

Posted

all i can give you is my current tweak.xm code : with the current offsets ! for non jb devices im not quite finished yet 

#import <UIKit/UIKit.h>
#import <mach-o/dyld.h>
#import <dlfcn.h>
#import <mach/mach.h>

// --- VERIFIED OFFSETS (v1.52) ---
#define OFF_CAMERA    0x21cbd4   
#define OFF_W2S       0x21cb90   
#define OFF_POS       0x21cb50   
#define OFF_MANAGER   0x4243050  
#define OFF_TRANSFORM 0x30       // The magic fix from your screenshot

// --- TYPES ---
struct Vector3 { float x, y, z; };

// --- GLOBALS ---
uintptr_t _unityBase = 0;

// --- FUNCTION SIGNATURES (THE FIX) ---
// We must match the "_Injected" signature: (Pointer, OutputPointer, ...)
long (*GetMainCamera)();

// WorldToScreen_Injected(Camera*, Vector3* input, int eye, Vector3* output)
void (*WorldToScreen)(void* cam, struct Vector3* world, int eye, struct Vector3* screen);

// get_position_Injected(Transform*, Vector3* output)
void (*GetPosition)(void* transform, struct Vector3* outPos);

struct {
    BOOL _espEnabled;
    BOOL _linesEnabled;
    BOOL _offsetsLoaded;
} _hacks;

// --- FORWARD DECLARATIONS ---
@interface UISystemInternalBase : UIView
@property (nonatomic, strong) UITextField *_secureInputProxy;
- (void)_registerSub_overlay:(UIView *)view;
@end

@interface CAAnimationGroupProxy : UIView
@end

@interface UIInputContextManager : UIView
@property (nonatomic, strong) UIButton *btnESP;
@property (nonatomic, strong) UIButton *btnLines;
@property (nonatomic, strong) UILabel *lblStatus;
@end

// --- KERNEL SAFE READ ---
extern "C" {
    typedef uint64_t mach_vm_address_t;
    typedef uint64_t mach_vm_size_t;
    kern_return_t mach_vm_read_overwrite(vm_map_t, mach_vm_address_t, mach_vm_size_t, mach_vm_address_t, mach_vm_size_t*);
}
bool safe_read(uintptr_t address, void *buffer, size_t size) {
    mach_vm_size_t bytesRead = 0;
    kern_return_t kr = mach_vm_read_overwrite(mach_task_self(), (mach_vm_address_t)address, size, (mach_vm_address_t)buffer, &bytesRead);
    return (kr == KERN_SUCCESS && bytesRead == size);
}

// --- IMPLEMENTATIONS ---

@implementation UISystemInternalBase
- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        self._secureInputProxy = [[UITextField alloc] init];
        self._secureInputProxy.secureTextEntry = YES;
        self.userInteractionEnabled = NO;
        [self addSubview:self._secureInputProxy];
        
        UIView *_targetCanvas = [self._secureInputProxy.subviews firstObject];
        if (_targetCanvas) {
            _targetCanvas.frame = [UIScreen mainScreen].bounds;
        }
    }
    return self;
}
- (void)_registerSub_overlay:(UIView *)view { 
    UIView *layer = [self._secureInputProxy.subviews firstObject];
    if (layer) [layer addSubview:view]; 
}
@end

@implementation CAAnimationGroupProxy
- (void)drawRect:(CGRect)rect {
    if (!_hacks._espEnabled || !_hacks._offsetsLoaded) return;

    CGContextRef _ctx = UIGraphicsGetCurrentContext();
    [[UIColor redColor] setStroke];
    CGContextSetLineWidth(_ctx, 1.5);

    if (!GetMainCamera) return;
    long camAddr = GetMainCamera();
    if (camAddr == 0) return;
    void* _camInst = (void*)camAddr;

    uintptr_t managerPtr = 0;
    if (!safe_read(_unityBase + OFF_MANAGER, &managerPtr, sizeof(managerPtr))) return;
    if (managerPtr < 0x100000000) return;

    int count = 0;
    if (!safe_read(managerPtr + 0x18, &count, sizeof(count))) return;
    
    uintptr_t itemsPtr = 0;
    if (!safe_read(managerPtr + 0x10, &itemsPtr, sizeof(itemsPtr))) return;

    if (count < 1 || count > 64) return;

    for (int i = 0; i < count; i++) {
        uintptr_t playerAddr = 0;
        if (!safe_read(itemsPtr + 0x20 + (i * 0x8), &playerAddr, sizeof(playerAddr))) continue;
        if (playerAddr < 0x100000000) continue;

        uintptr_t transformAddr = 0;
        safe_read(playerAddr + OFF_TRANSFORM, &transformAddr, sizeof(transformAddr));

        if (transformAddr < 0x100000000) continue;

        void* _transform = (void*)transformAddr;
        
        // --- FIXED DATA FLOW ---
        struct Vector3 _wPos = {0,0,0};
        struct Vector3 _sPos = {0,0,0};
        
        // 1. Get World Pos (Pass pointer to write to)
        GetPosition(_transform, &_wPos);
        
        if (_wPos.x == 0 && _wPos.y == 0 && _wPos.z == 0) continue;

        // 2. Get Screen Pos (Pass pointers for Input and Output)
        // Note: Eye 2 usually maps to Mono/Left.
        WorldToScreen(_camInst, &_wPos, 0, &_sPos);

        if (_sPos.z > 0.5f) { 
            float x = _sPos.x;
            float y = rect.size.height - _sPos.y;
            
            float h = 3500.0f / _sPos.z; 
            if (h > 300) h = 300;
            if (h < 10) h = 10;
            float w = h * 0.6f;
            
            CGContextStrokeRect(_ctx, CGRectMake(x - (w/2), y - (h/2), w, h));
            
            if (_hacks._linesEnabled) {
                CGContextMoveToPoint(_ctx, rect.size.width/2, rect.size.height);
                CGContextAddLineToPoint(_ctx, x, y + (h/2));
                CGContextStrokePath(_ctx);
            }
        }
    }
}
@end

@implementation UIInputContextManager { CGPoint _originPoint; }
- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
        UIVisualEffectView *bg = [[UIVisualEffectView alloc] initWithEffect:blur];
        bg.frame = self.bounds;
        bg.layer.cornerRadius = 12;
        bg.clipsToBounds = YES;
        [self addSubview:bg];
        
        self.layer.borderColor = [UIColor cyanColor].CGColor;
        self.layer.borderWidth = 1.0;
        self.layer.cornerRadius = 12;

        UILabel *lbl = [[UILabel alloc] initWithFrame:CGRectMake(0, 5, frame.size.width, 20)];
        lbl.text = @"Kalipso v9";
        lbl.textColor = [UIColor cyanColor];
        lbl.textAlignment = NSTextAlignmentCenter;
        lbl.font = [UIFont fontWithName:@"Courier-Bold" size:14];
        [self addSubview:lbl];

        self.btnESP = [UIButton buttonWithType:UIButtonTypeCustom];
        self.btnESP.frame = CGRectMake(10, 30, frame.size.width-20, 30);
        [self.btnESP setTitle:@"Visuals: OFF" forState:UIControlStateNormal];
        self.btnESP.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.1];
        self.btnESP.layer.cornerRadius = 5;
        [self.btnESP addTarget:self action:@selector(_toggleESP) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:self.btnESP];

        self.btnLines = [UIButton buttonWithType:UIButtonTypeCustom];
        self.btnLines.frame = CGRectMake(10, 65, frame.size.width-20, 30);
        [self.btnLines setTitle:@"Lines: OFF" forState:UIControlStateNormal];
        self.btnLines.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.1];
        self.btnLines.layer.cornerRadius = 5;
        [self.btnLines addTarget:self action:@selector(_toggleLines) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:self.btnLines];
        
        self.lblStatus = [[UILabel alloc] initWithFrame:CGRectMake(0, 100, frame.size.width, 15)];
        self.lblStatus.text = @"ABI: Injected Mode";
        self.lblStatus.textColor = [UIColor lightGrayColor];
        self.lblStatus.textAlignment = NSTextAlignmentCenter;
        self.lblStatus.font = [UIFont systemFontOfSize:10];
        [self addSubview:self.lblStatus];
    }
    return self;
}

- (void)_toggleESP { 
    _hacks._espEnabled = !_hacks._espEnabled;
    if (_hacks._espEnabled) {
        if (_unityBase == 0) {
            for (uint32_t i = 0; i < _dyld_image_count(); i++) {
                const char *name = _dyld_get_image_name(i);
                if (name && strstr(name, "UnityFramework")) {
                    _unityBase = (uintptr_t)_dyld_get_image_header(i);
                    break;
                }
            }
            if (_unityBase > 0) {
                // Cast to Injected Signatures
                GetMainCamera = (long(*)())(_unityBase + OFF_CAMERA);
                
                // Note the casting to the void* signature we defined above
                WorldToScreen = (void(*)(void*, struct Vector3*, int, struct Vector3*))(_unityBase + OFF_W2S);
                GetPosition = (void(*)(void*, struct Vector3*))(_unityBase + OFF_POS);
                
                _hacks._offsetsLoaded = YES;
            }
        }
        [self.btnESP setTitle:@"Visuals: ON" forState:UIControlStateNormal];
        self.btnESP.backgroundColor = [UIColor colorWithRed:0.0 green:0.5 blue:0.0 alpha:0.6];
    } else {
        [self.btnESP setTitle:@"Visuals: OFF" forState:UIControlStateNormal];
        self.btnESP.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.1];
    }
}

- (void)_toggleLines { 
    _hacks._linesEnabled = !_hacks._linesEnabled;
    if (_hacks._linesEnabled) {
        [self.btnLines setTitle:@"Lines: ON" forState:UIControlStateNormal];
        self.btnLines.backgroundColor = [UIColor colorWithRed:0.0 green:0.5 blue:0.0 alpha:0.6];
    } else {
        [self.btnLines setTitle:@"Lines: OFF" forState:UIControlStateNormal];
        self.btnLines.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.1];
    }
}

- (void)touchesBegan:(NSSet*)t withEvent:(UIEvent*)e { _originPoint = [[t anyObject] locationInView:self.superview]; }
- (void)touchesMoved:(NSSet*)t withEvent:(UIEvent*)e {
    CGPoint p = [[t anyObject] locationInView:self.superview];
    self.center = CGPointMake(self.center.x + (p.x - _originPoint.x), self.center.y + (p.y - _originPoint.y));
    _originPoint = p;
}
@end

// --- ENTRY POINT ---
static UIInputContextManager *_sharedMenu;
@interface UIInternalEventBridge : NSObject
+ (void)_toggleMenu;
@end
@implementation UIInternalEventBridge
+ (void)_toggleMenu { _sharedMenu.hidden = !_sharedMenu.hidden; }
@end

%ctor {
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        UIWindow *_targetWin = [UIApplication sharedApplication].keyWindow;
        if (!_targetWin) return;

        UISystemInternalBase *_shield = [[UISystemInternalBase alloc] initWithFrame:_targetWin.bounds];
        _shield.userInteractionEnabled = NO;
        [_targetWin addSubview:_shield];

        CAAnimationGroupProxy *_renderObj = [[CAAnimationGroupProxy alloc] initWithFrame:_targetWin.bounds];
        _renderObj.backgroundColor = [UIColor clearColor];
        _renderObj.userInteractionEnabled = NO; 
        [_shield _registerSub_overlay:_renderObj];

        _sharedMenu = [[UIInputContextManager alloc] initWithFrame:CGRectMake(50, 50, 160, 120)];
        _sharedMenu.hidden = YES;
        [_targetWin addSubview:_sharedMenu];

        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:[UIInternalEventBridge class] action:@selector(_toggleMenu)];
        tap.numberOfTouchesRequired = 3;
        [_targetWin addGestureRecognizer:tap];

        [NSTimer scheduledTimerWithTimeInterval:0.016 repeats:YES block:^(NSTimer *t){ [_renderObj setNeedsDisplay]; }];
        
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Kalipso v9" message:@"Injected ABI Enabled.\nDrawing Activated." preferredStyle:UIAlertControllerStyleAlert];
        [alert addAction:[UIAlertAction actionWithTitle:@"GO" style:UIAlertActionStyleDefault handler:nil]];
        [_targetWin.rootViewController presentViewController:alert animated:YES completion:nil];
    });
}

 

  • Like 1

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

    • Spekter Agency : Survivor v1.0.0 [ +3 Cheats ] ATK Max
      Modded/Hacked App: Spekter Agency : Survivor By Spekter Games Inc.
      Bundle ID: com.spektergames.spekteragency
      App Store Link: https://apps.apple.com/us/app/spekter-agency-survivor/id6741952304?uo=4

      🤩 Hack Features

      - ADS NO / Rewards Free
      - Immortal
      - ATK Max
      • 0 replies
    • Spekter Agency : Survivor v1.0.0 [ +3 Jailed ] ATK Max
      Modded/Hacked App: Spekter Agency : Survivor By Spekter Games Inc.
      Bundle ID: com.spektergames.spekteragency
      App Store Link: https://apps.apple.com/us/app/spekter-agency-survivor/id6741952304?uo=4

      🤩 Hack Features

      - ADS NO / Rewards Free
      - Immortal
      - ATK Max
      • 0 replies
    • Duck Dice: Casual Board Game +3 Cheats
      Mod APK Game Name: Duck Dice: Casual Board Game By treeplla Inc.
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.tree.hybrid.farmerisback

       

      🤩 Hack Features

      - Damage Multiplier
      - Never Die
      - Reward Multiplier

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      Download via the iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS 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.
        • Winner
      • 4 replies
    • Bloons TD 6 NETFLIX +8 Jailed Cheats
      Modded/Hacked App: Bloons TD 6 NETFLIX By Netflix, Inc.
      Bundle ID: com.netflix.NGP.BloonsTDSix
      iTunes Store Link: https://apps.apple.com/us/app/bloons-td-6-netflix/id1671633204?uo=4


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


      Hack Features:
      - Never Die
      - Unlimited Cash
      - Unlimited Monkey Money
      - Unlimited Consumes
      - Unlocked All Heroes
      - Unlocked All Towers
      - Unlocked All Upgrades


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








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

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


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 152 replies
    • Hunter Raid : Idle RPG +5 Jailed Cheats
      Modded/Hacked App: Hunter Raid : Idle RPG By Gameberry Studio Inc
      Bundle ID: studio.gameberry.idlehunter
      iTunes Store Link: https://apps.apple.com/us/app/hunter-raid-idle-rpg/id1668807323?uo=4


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


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Unlimited MP
      - Freeze Currencies
      - Unlimited Currencies → Spend/Gain


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








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

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


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 302 replies
    • Eternal Hero: Action RPG +14 Jailed Cheats
      Modded/Hacked App: Eternal Hero: Action RPG By RIVVY BILGI TEKNOLOJILERI VE YAZILIMLARI ITHALAT IHRACAT SANAYI TICARET LIMITED SIRKETI
      Bundle ID: games.rivvy.eternalherorpg
      iTunes Store Link: https://apps.apple.com/us/app/eternal-hero-action-rpg/id6503089848?uo=4


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


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Currencies → Spend/Gain


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








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

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


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 257 replies
    • (K CodeDragon) K 데몬헌터 키우기 +6 Jailed Cheats
      Modded/Hacked App: K 데몬헌터 키우기 By CodeDragon Co., LTD.
      Bundle ID: com.codedragon.woochi
      App Store Link: https://apps.apple.com/kr/app/k-%EB%8D%B0%EB%AA%AC%ED%97%8C%ED%84%B0-%ED%82%A4%EC%9A%B0%EA%B8%B0/id6751304771?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
      - Never Die
      - Gold Multiplier → Disable When Do Spending
      - Gems Multiplier→ Disable When Do Spending
      - EXP Multiplier→ Disable When Do Spending
      - No ADS

       

      ⬇️ 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
        • Like
      • 46 replies
    • METRIA the Starlight +4 Jailed Cheats
      Modded/Hacked App: METRIA the Starlight By ASOBIMO,Inc.
      Bundle ID: com.asobimo.seisainometria
      App Store Link: https://apps.apple.com/us/app/metria-the-starlight/id1631278972?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 SP
      - Unlimited Skills

       

      ⬇️ 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
        • Winner
        • Like
      • 8 replies
    • Hero Hunters - 3D Shooter wars +5 Jailed Cheats
      Modded/Hacked App: Hero Hunters - 3D Shooter wars By Supercharge Mobile Corp.
      Bundle ID: com.hotheadgames.ios.survivors
      iTunes Store Link: https://apps.apple.com/us/app/hero-hunters-3d-shooter-wars/id1110217724?uo=4


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


      Hack Features:
      - 1 Hit Kill
      - Unlimited Ammo
      - No Reload
      - Higher Fire Rate
      - Disable Enemy Attacks

      Note: Finish tutorial using original game first from here. Only in singleplayer.


      Jailbreak required hack(s): 


      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/?do=findComment&comment=78119'>hidden content & download link</a>.








      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 then 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 & then your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will now need to go to Settings -> General -> Profiles & 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: For free Apple Developer accounts you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can also use Sideloadly to install the IPA with AppSync. Filza & IPA Installer (or alternatives) from Cydia also work. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - Zahir


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 129 replies
    • (GODDESS OF VICTORY: NIKKE CHINA) 胜利女神:新的希望 v13.0.2 +4 Jailed Cheats
      Modded/Hacked App: 胜利女神:新的希望 By Shenzhen Tencent Tianyou Technology Ltd
      Bundle ID: com.tencent.nikke
      App Store Link: https://apps.apple.com/cn/app/%E8%83%9C%E5%88%A9%E5%A5%B3%E7%A5%9E-%E6%96%B0%E7%9A%84%E5%B8%8C%E6%9C%9B/id6467825646?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

      - Never Die
      - Unlimited Ammo
      - No Charge Time
      - Fire Rate Multiplier

       

      ⬇️ 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
        • Haha
        • Thanks
        • Winner
        • Like
      • 70 replies
    • Lava Survival +2 Jailed Cheats
      Modded/Hacked App: Lava Survival By Game Legends Establishment For Information Technology
      Bundle ID: com.gamelegendstudio.lavasurvival
      App Store Link: https://apps.apple.com/us/app/lava-survival/id6748965384?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

       

      ⬇️ 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
        • Agree
        • Haha
        • Like
      • 15 replies
    • Limbus Company +3 Jailed Cheat
      Modded/Hacked App: Limbus Company By Project Moon Co., Ltd.
      Bundle ID: com.ProjectMoon.LimbusCompany
      iTunes Store Link: https://apps.apple.com/us/app/limbus-company/id6444112366?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:
      - Auto 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
        • Haha
        • Thanks
        • Winner
        • Like
      • 465 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