Jump to content

43 posts in this topic

Recommended Posts

Posted

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

Just now, A1XEN said:

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

@Rook @Laxus @Puddin

Posted (edited)
17 minutes ago, A1XEN said:

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

@Rook @Laxus @Puddin

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

uintptr_t get_FrameworkBaseAddress() {
    uint32_t count = _dyld_image_count();
    for (uint32_t i = 0; i < count; i++) {
        const char *name = _dyld_get_image_name(i);
        if (name && strstr(name, "UnityFramework")) {
            return (uintptr_t)_dyld_get_image_header(i);
        }
    }
    return 0;
}

void writeLocalLog(NSString *text) {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *logFilePath = [documentsDirectory stringByAppendingPathComponent:@"tweak_debug.txt"];
    
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSString *timestamp = [formatter stringFromDate:[NSDate date]];
    NSString *finalLine = [NSString stringWithFormat:@"[%@] %@\n", timestamp, text];
    
    NSFileHandle *handle = [NSFileHandle fileHandleForWritingAtPath:logFilePath];
    if (!handle) {
        [[finalLine dataUsingEncoding:NSUTF8StringEncoding] writeToFile:logFilePath atomically:YES];
    } else {
        [handle seekToEndOfFile];
        [handle writeData:[finalLine dataUsingEncoding:NSUTF8StringEncoding]];
        [handle closeFile];
    }
}

bool (*old_CanBuy)(void *instance, void *requireMoney, void *methodInfo);
bool new_CanBuy(void *instance, void *requireMoney, void *methodInfo) {
    writeLocalLog(@"[MoneyManager] CanBuy intercepted! Forcing true.");
    return true; 
}

void (*old_RemoveMoney)(void *instance, void *value, void *methodInfo);
void new_RemoveMoney(void *instance, void *value, void *methodInfo) {
    writeLocalLog(@"[MoneyManager] RemoveMoney intercepted! Protecting wallet balance.");
}

void *hook_worker_thread(void *args) {
    @autoreleasepool {
        writeLocalLog(@"MoneyManager Wallet Thread spawned safely.");
        
        uintptr_t baseAddress = get_FrameworkBaseAddress();
        while (baseAddress == 0) {
            usleep(200000); 
            baseAddress = get_FrameworkBaseAddress();
        }

        sleep(4); 

        NSString *addressLog = [NSString stringWithFormat:@"[Debug] UnityFramework Base: 0x%lx | Target CanBuy: 0x%lx", 
                                baseAddress, (baseAddress + 0xDA4D70)];
        writeLocalLog(addressLog);

        MSHookFunction((void *)(baseAddress + 0xDA4D70), (void *)&new_CanBuy, (void **)&old_CanBuy);
        MSHookFunction((void *)(baseAddress + 0xDA4E44), (void *)&new_RemoveMoney, (void **)&old_RemoveMoney);

        writeLocalLog(@"Wallet bypass successfully! :>");
    }
    return NULL;
}

%ctor {
    pthread_t pt;
    pthread_create(&pt, NULL, hook_worker_thread, NULL);
}

this is my code, this works perfect on playcover, but in iphone, it shows the log i made  "Wallet bypass successfully! :>" but it doesnt even work in-game :<
please tell me what's wrong with it (if there is)

Updated by A1XEN
Posted
38 minutes ago, A1XEN said:

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

@Rook @Laxus @Puddin

i actually tried revising the code, i used the rule:

True iPhone Offset=Disassembler Address−Disassembler Base Address (usually 0x100000000)−Segment Offset (usually 0x4000)

and still nothing 

Posted

Are you using a menu or something?

On Jailbreak there's rootful, rootless, & RootHide now so you need to compile appropriately.

Posted
19 minutes ago, Rook said:

Are you using a menu or something?

On Jailbreak there's rootful, rootless, & RootHide now so you need to compile appropriately.

im not, im on jailed device, im actually going to try to make a menu if i could tomorrow (im going to sleep) because my code might be hooking to early you see what i was tryna do is make the patches from live offset patcher to run automatically without the live offset patcher only using .dylibs so its supposed to apply the patches automatically when the game run

Posted
1 minute ago, A1XEN said:

im not, im on jailed device, im actually going to try to make a menu if i could tomorrow (im going to sleep) because my code might be hooking to early you see what i was tryna do is make the patches from live offset patcher to run automatically without the live offset patcher only using .dylibs so its supposed to apply the patches automatically when the game run

Ah, but patching on jailed we do something unique to achieve that. Though I think Batch released a menu which does something similar.

Posted (edited)
5 minutes ago, A1XEN said:

im not, im on jailed device, im actually going to try to make a menu if i could tomorrow (im going to sleep) because my code might be hooking to early you see what i was tryna do is make the patches from live offset patcher to run automatically without the live offset patcher only using .dylibs so its supposed to apply the patches automatically when the game run

you see when i apply the patches manually using the live offset patcher, it works, only when i turned on the UnityFramework from iGdebugger 

3 minutes ago, Rook said:

Ah, but patching on jailed we do something unique to achieve that. Though I think Batch released a menu which does something similar.

which menu? so you mean every jailed cheats here uses that menu released by “Batch” and who/what is Batch? :?

Updated by A1XEN
Posted
8 minutes ago, A1XEN said:

you see when i apply the patches manually using the live offset patcher, it works, only when i turned on the UnityFramework from iGdebugger 

which menu? so you mean every jailed cheats here uses that menu released by “Batch” and who/what is Batch? :?

i found it but the github link is broken, can you teach the trick you do to apply patches and tweaks for jailed devices, and also if there is a official menu/template for theos that helps apply tweaks/patches on jailed devices thanks 🙏 @Rook

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

    • Vector: Parkour Run v2.10.0 [ +7 Cheats ] Currency Max
      Modded/Hacked App: Vector: Parkour Run By Nekki Limited
      Bundle ID: com.nekki.vector.iphone.free
      App Store Link: https://apps.apple.com/us/app/vector-parkour-run/id578252579?uo=4

      🤩 Hack Features

      - Currency Max / Visual But Works Goes Negative
      - Booster Max / Visual But Works Goes Negative
      ==== VIP ====
      - Auto ADS NO
      - Unlimited Currency
      - Unlimited Booster
      - Currency Enough
      • 0 replies
    • Vector: Parkour Run v2.10.0 [ +7 Jailed ] Currency Max
      Modded/Hacked App: Vector: Parkour Run By Nekki Limited
      Bundle ID: com.nekki.vector.iphone.free
      App Store Link: https://apps.apple.com/us/app/vector-parkour-run/id578252579?uo=4

      🤩 Hack Features

      - Currency Max / Visual But Works Goes Negative
      - Booster Max / Visual But Works Goes Negative
      ==== VIP ====
      - Auto ADS NO
      - Unlimited Currency
      - Unlimited Booster
      - Currency Enough
      • 3 replies
    • Throne Arena: PvP Defense +2++ Mod [ Unlimited Currencies ]
      Mod APK Game Name: Throne Arena: PvP Defense By Deviloper Limited
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.throne.arena.strategy.rpg

       

      🤩 Hack Features

      - Unlimited Currencies -> Earn or spend some.
      - Freeze Currencies
      • 1 reply
    • Dungeons of Hinterberg +1 Jailed Cheat [ Full Game Unlocked ]
      Modded/Hacked App: Dungeons of Hinterberg By Crunchyroll, LLC
      Bundle ID: com.crunchyroll.gv.dungeonsofhinterberg
      App Store Link: https://apps.apple.com/us/app/dungeons-of-hinterberg/id6757450467?uo=4

       

      🤩 Hack Features

      -- Full Game Unlocked
        • Like
      • 3 replies
    • Gothic Girl Survivor +1 Mod [ Damage ]
      Mod APK Game Name: Gothic Girl Survivor By Just Idea
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=jp.yugi.gothicsurvivor.prod

       

      🤩 Hack Features

      - Damage Multiplier
      • 0 replies
    • Dungeon Odyssey v1.0.2 [ +2 Jailed ] ATK Max
      Modded/Hacked App: Dungeon Odyssey By SuperPlanet corp.
      Bundle ID: com.superplanet.odyssey
      App Store Link: https://apps.apple.com/us/app/dungeon-odyssey/id6782771784?uo=4

      🤩 Hack Features

      - Hero ATK Max
      - Soldier ATK Max
      Note:- Don't Abuse The Hack Incase Data Lose / Banned
        • Winner
        • Like
      • 2 replies
    • Dungeon Odyssey v1.0.2 [ +2 Cheats ] ATK Max
      Modded/Hacked App: Dungeon Odyssey By SuperPlanet corp.
      Bundle ID: com.superplanet.odyssey
      App Store Link: https://apps.apple.com/us/app/dungeon-odyssey/id6782771784?uo=4

      🤩 Hack Features

      - Hero ATK Max
      - Soldier ATK Max
      Note:- Don't Abuse The Hack Incase Data Lose / Banned
        • Thanks
        • Winner
        • Like
      • 4 replies
    • Gravewalker: Roguelike RPG v1.3 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Gravewalker: Roguelike RPG By Space Node Co., Ltd.
      Bundle ID: com.ckmin.gravewalker
      App Store Link: https://apps.apple.com/us/app/gravewalker-roguelike-rpg/id6789180274?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      Note:- Breakable Cheat / When Use Then Game Crash But Works / Disable After
        • Like
      • 0 replies
    • Gravewalker: Roguelike RPG v1.3 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Gravewalker: Roguelike RPG By Space Node Co., Ltd.
      Bundle ID: com.ckmin.gravewalker
      App Store Link: https://apps.apple.com/us/app/gravewalker-roguelike-rpg/id6789180274?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      Note:- Breakable Cheat / When Use Then Game Crash But Works / Disable After
        • Like
      • 1 reply
    • Doom Convoy v1.0 [ +7 Jailed ] Currency Max
      Modded/Hacked App: Doom Convoy By FUBU GAMES OYUN YAZILIM VE BILGI TEKNOLOJILERI TICARET LIMITED SIRKETI
      Bundle ID: com.fubugames.doomdefender
      App Store Link: https://apps.apple.com/us/app/doom-convoy/id6759977040?uo=4

      🤩 Hack Features

      - Coins Max
      - Mini Gun / Ammo Freeze
      - Mini Gun / Ammo Max Use
      - Rocket / Ammo Freeze
      - Rocket / Ammo Max Use
      - Flame Gun / Ammo Freeze
      - Flame Gun / Ammo Max Use
      • 1 reply
    • Doom Convoy v1.0 [ +7 Cheats ] Currency Max
      Modded/Hacked App: Doom Convoy By FUBU GAMES OYUN YAZILIM VE BILGI TEKNOLOJILERI TICARET LIMITED SIRKETI
      Bundle ID: com.fubugames.doomdefender
      App Store Link: https://apps.apple.com/us/app/doom-convoy/id6759977040?uo=4

      🤩 Hack Features

      - Coins Max
      - Mini Gun / Ammo Freeze
      - Mini Gun / Ammo Max Use
      - Rocket / Ammo Freeze
      - Rocket / Ammo Max Use
      - Flame Gun / Ammo Freeze
      - Flame Gun / Ammo Max Use
      • 1 reply
    • Animal Hunt: PvP Clash v1.0 [ +1 Jailed ] Enough Currency
      Modded/Hacked App: Animal Hunt: PvP Clash By Creative Distrix
      Bundle ID: com.cd.sniper.hunting.shooter
      App Store Link: https://apps.apple.com/us/app/animal-hunt-pvp-clash/id6761612123?uo=4

      🤩 Hack Features

      - Enough Currency
        • Winner
        • Like
      • 3 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