Jump to content

18 posts in this topic

Recommended Posts

Posted

Ahh it's a for a Tweak why you didn't say that. The Tweak is causing the lag, inspect the functions. (Especially the Enlgand Bike ;) )

I don't understand...?

Posted

Ahh it's a for a Tweak why you didn't say that. The Tweak is causing the lag, inspect the functions. (Especially the Enlgand Bike ;) )

I'm known i misspelled England Bike, but I don't understand, what do you mean with check the functions (i guess in tweak.xm)

Posted

Try removing some features from the hack. I'm not sure what could be causing this.

 

Without hacks it works fine?

Posted

Try removing some features from the hack. I'm not sure what could be causing this.

Without hacks it works fine?

Will try, and yes withlut the tweak everything is fine, but even when i didn't select anything in the tweak, it still gave lag!

Posted

Maeh, I don'f find the problem, maybe it could be the terminal errors from above?

 

Anyway this is my tweak.xm: (if you can give it a look)

 

#define PLIST_PATH @"/var/mobile/Library/Preferences/com.0m1cr0n.brm.plist"

 

inline bool GetPrefBool(NSString *key)

{

return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];

}

 

%hook ShopViewController

 

-(bool)useDailyBike {

if(GetPrefBool(@"k1")) {

return true;

}

return %orig;

}

 

-(bool)useUSABike {

if(GetPrefBool(@"k2")){

return true;

}

return %orig;

}

 

-(bool)useUKBike {

if(GetPrefBool(@"k3")) {

return true;

}

return %orig;

}

 

-(bool)useAustraliaBike {

if(GetPrefBool(@"k4")) {

return true;

}

return %orig;

}

 

-(bool)useNetherlandsBike {

if(GetPrefBool(@"k5")) {

return true;

}

return %orig;

}

 

-(bool)useFranceBike {

if(GetPrefBool(@"k6")) {

return true;

}

return %orig;

}

 

-(bool)useGermanyBike {

if(GetPrefBool(@"k7")) {

return true;

}

return %orig;

}

 

-(bool)useBrazilBike {

if(GetPrefBool(@"k8")) {

return true;

}

return %orig;

}

 

-(bool)useSpainBike {

if(GetPrefBool(@"k9")) {

return true;

}

return %orig;

}

 

-(bool)useJapanBike {

if(GetPrefBool(@"k10")) {

return true;

}

return %orig;

}

 

-(bool)useBelgiumBike {

if(GetPrefBool(@"k11")) {

return true;

}

return %orig;

}

 

-(bool)useItalyBike {

if(GetPrefBool(@"k12")) {

return true;

}

return %orig;

}

 

-(bool)useArgentiniaBike {

if(GetPrefBool(@"k13")) {

return true;

}

return %orig;

}

 

-(bool)useMexicoBike {

if(GetPrefBool(@"k14")) {

return true;

}

return %orig;

}

 

-(bool)useSuperPenguin {

if(GetPrefBool(@"k15")) {

return true;

}

return %orig;

}

 

-(bool)usePenguinGirl {

if(GetPrefBool(@"k16")) {

return true;

}

return %orig;

}

 

-(bool)useKidsMode {

if(GetPrefBool(@"k17")) {

return true;

}

return %orig;

}

 

-(bool)useMagicPenguin {

if(GetPrefBool(@"k18")) {

return true;

}

return %orig;

}

 

-(bool)useUltraBike {

if(GetPrefBool(@"k19")) {

return true;

}

return %orig;

}

 

-(bool)useThanksgivingBike {

if(GetPrefBool(@"k20")) {

return true;

}

return %orig;

}

 

-(bool)useXmasBike {

if(GetPrefBool(@"k21")) {

return true;

}

return %orig;

}

 

-(bool)useEasterBike {

if(GetPrefBool(@"k22")) {

return true;

}

return %orig;

}

 

-(bool)useNinjaBike {

if(GetPrefBool(@"k23")) {

return true;

}

return %orig;

}

 

-(bool)useCopBike {

if(GetPrefBool(@"k24")) {

return true;

}

return %orig;

}

 

-(bool)useRetroBike {

if(GetPrefBool(@"k25")) {

return true;

}

return %orig;

}

 

-(bool)useZombieBike {

if(GetPrefBool(@"k26")) {

return true;

}

return %orig;

}

 

-(bool)useConstructorBike {

if(GetPrefBool(@"k27")) {

return true;

}

return %orig;

}

 

-(bool)useHalloweenBike {

if(GetPrefBool(@"k28")) {

return true;

}

return %orig;

}

 

-(bool)useEasyBike {

if(GetPrefBool(@"k29")) {

return true;

}

return %orig;

}

 

-(bool)useBronzeBike {

if(GetPrefBool(@"k30")) {

return true;

}

return %orig;

}

 

-(bool)useSilverBike {

if(GetPrefBool(@"k31")) {

return true;

}

return %orig;

}

 

-(bool)useGoldBike {

if(GetPrefBool(@"k32")) {

return true;

}

return %orig;

}

 

-(bool)useAcrobaticBike {

if(GetPrefBool(@"k33")) {

return true;

}

return %orig;

}

 

-(bool)useBeatBike {

if(GetPrefBool(@"k34")) {

return true;

}

return %orig;

}

 

-(bool)useSpamBike {

if(GetPrefBool(@"k35")) {

return true;

}

return %orig;

}

 

%end

 

%hook MultiplayerConfiguration

-(int)freeDailyTracks {

if(GetPrefBool(@"k36")) {

return 999999999;

}

return %orig;

}

 

%end

Posted

Both Terminal errors are in your Makefile. You put a character in the killall command which makes no sense. Execution name or leave it empty. The other error is because you try to compile for 64-Bit but iOS 8.1 SDK doesn't have native arm64 support

Posted

Both Terminal errors are in your Makefile. You put a character in the killall command which makes no sense. Execution name or leave it empty. The other error is because you try to compile for 64-Bit but iOS 8.1 SDK doesn't have native arm64 support

Alright, will check at it. thanks dude.

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

    • Knight Survivor v1.2.7 [ +12 APK MOD ] Currency Max
      Mod APK Game Name: Knight Survivor
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.zykj.princessknight&hl=en

       

      🤩 Hack Features

      - ATK MAX
      - ATK Speed
      ::::::::: VIP ::::::::::
      - Unlimited Gems
      - Unlimited Gold
      - Unlimited Energy
      - Unlimited AD Kit
      - Unlimited Weapon EXP
      - Unlimited Premium Keys
      - Unlimited Mythic Keys
      - Unlimited Wish Keys
      - Unlimited Dragons
      - Unlocked All Weapon

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      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

      - IK_IK

       

      📷 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.
      • 0 replies
    • Knight Survivor v1.0.1 [ +12 Cheats ] Currency Max
      Modded/Hacked App: Knight Survivor By MOBIBRAIN TECHNOLOGY PTE. LTD.
      Bundle ID: com.zykj.princessknight
      App Store Link: https://apps.apple.com/us/app/knight-survivor/id6758685645?uo=4

      🤩 Hack Features

      - ATK MAX
      - ATK Speed
      ::::::::: VIP ::::::::::
      - Unlimited Gems
      - Unlimited Gold
      - Unlimited Energy
      - Unlimited AD Kit
      - Unlimited Weapon EXP
      - Unlimited Premium Keys
      - Unlimited Mythic Keys
      - Unlimited Wish Keys
      - Unlocked All Weapon
      • 1 reply
    • Knight Survivor v1.0.1 [ +12 Jailed ] Currency Max
      Modded/Hacked App: Knight Survivor By MOBIBRAIN TECHNOLOGY PTE. LTD.
      Bundle ID: com.zykj.princessknight
      App Store Link: https://apps.apple.com/us/app/knight-survivor/id6758685645?uo=4

      🤩 Hack Features

      - ATK MAX
      - ATK Speed
      ::::::::: VIP ::::::::::
      - Unlimited Gems
      - Unlimited Gold
      - Unlimited Energy
      - Unlimited AD Kit
      - Unlimited Weapon EXP
      - Unlimited Premium Keys
      - Unlimited Mythic Keys
      - Unlimited Wish Keys
      - Unlocked All Weapon
        • Thanks
        • Like
      • 1 reply
    • Pandao Wars: Fight for Freedom v0.7.10 [ +2 APK MOD ] Currency Max
      Mod APK Game Name: Pandao Wars: Fight for Freedom
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.jbxgames.island.wars.fight.defender

       

      🤩 Hack Features

      - Unlimited Crystal
      - Unlimited Coins

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      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

      - IK_IK

       

      📷 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.
      • 0 replies
    • Tower Defense Rumble v0.7568 [ +10 APK MOD ] Easy Win
      Mod APK Game Name: Tower Defense Rumble
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.superplanet.rumble&hl=en

       

      🤩 Hack Features

      - Always Last Wave / Easy Win
      Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      Base Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      - ATK Speed

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      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

      - IK_IK

       

      📷 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.
      • 0 replies
    • Tower Defense Rumble v7568 [ +10 Cheats ] Easy Win
      Modded/Hacked App: Tower Defense Rumble By DU-EON YOO
      Bundle ID: com.i.dfr
      App Store Link: https://apps.apple.com/ph/app/tower-defense-rumble/id6738600584?uo=4

      🤩 Hack Features

      - Always Last Wave / Easy Win
      Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      Base Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      - ATK Speed
      • 11 replies
    • Tower Defense Rumble v7568 [ +10 Jailed ] Easy Win
      Modded/Hacked App: Tower Defense Rumble By DU-EON YOO
      Bundle ID: com.i.dfr
      App Store Link: https://apps.apple.com/ph/app/tower-defense-rumble/id6738600584?uo=4

      🤩 Hack Features

      - Always Last Wave / Easy Win
      Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      Base Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      - ATK Speed
        • Thanks
        • Like
      • 14 replies
    • Idle Nuns Tycoon: Church Life v1.1.4 [ +7 APK MOD ] Currency Max
      Mod APK Game Name: Idle Nuns Tycoon: Church Life
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.idle.nums.empire.tycoon&hl=es_UY

       

      🤩 Hack Features

      - ADS NO / Rewards Free
      Pre Activated
      - Gold Enough
      - Money Income / Upgrade Building just
      - Premium Growth Fund
      - Premium Pass Active
      - Deluxe Pass Active
      - Premium & Deluxe Pass Level Skip Cost 0

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      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

      - IK_IK

       

      📷 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.
      • 0 replies
    • Idle Nuns Tycoon v1.1.11 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Idle Nuns Tycoon By SAMZU LIMITED
      Bundle ID: com.idle.nums.empire.tycoon
      App Store Link: https://apps.apple.com/us/app/idle-nuns-tycoon/id6747325865?uo=4
       

      🤩 Hack Features

      - ADS NO [ Rewards Free ]
      - Gold [ Disable After Get ]
      - Money [ Disable After Get ]
      - Silver [ Disable After Get ] Don't Use When Earn [ LVL & EXP ] Because Linked LvL & EXP Not Work
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 17 replies
    • Idle Nuns Tycoon v1.1.11 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Idle Nuns Tycoon By SAMZU LIMITED
      Bundle ID: com.idle.nums.empire.tycoon
      App Store Link: https://apps.apple.com/us/app/idle-nuns-tycoon/id6747325865?uo=4

       
      🤩 Hack Features

      - ADS NO [ Rewards Free ]
      - Gold [ Disable After Get ]
      - Money [ Disable After Get ]
      - Silver [ Disable After Get ] Don't Use When Earn [ LVL & EXP ] Because Linked LvL & EXP Not Work
        • Agree
        • Haha
        • Winner
        • Like
      • 22 replies
    • Travel Merge Family Game v3.070 [ +1++ APK MOD ] Currency Max
      Mod APK Game Name: Travel Merge Family Game
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.TravelMergeFamily&hl=en

       

      🤩 Hack Features

      - Currency Max

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      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

      - IK_IK

       

      📷 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.
      • 0 replies
    • Travel Merge Family Game v3.070 [ +1++ Cheats ] Currency Max
      Travel Merge Family

      🤩 Hack Features

      - Currency Max 
        • Informative
        • Like
      • 20 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