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

    • Grim Soul: Survival v7.2.0 +19 Jailed Cheats [Free Crafting + More]
      Modded/Hacked App: Grim Soul: Survival By Andrey Pryakhin
      Bundle ID: fantasy.survival.game.rpg
      iTunes Store Link: https://itunes.apple.com/us/app/grim-soul-survival/id1366215798


      Mod Requirements:
      - Jailbroken or Non-Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Unlimited Storage Items - Taking storage items will increase them.
      - Free Crafting - Will allow you to craft items without the required materials.
      - No Crafting Level Requirement
      - Free Construction
      - Items Duplicate When Split
      - Unlimited Item Durability
        • Like
      • 4,186 replies
    • Grim Soul: Survival v7.2.0 +19 Cheats [Unlimited Currencies + More]
      Modded/Hacked App: Grim Soul: Survival By Andrey Pryakhin
      Bundle ID: fantasy.survival.game.rpg
      iTunes Store Link: https://itunes.apple.com/us/app/grim-soul-survival/id1366215798


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate (from Cydia).
      - PreferenceLoader (from Cydia).


      Hack Features:
      - Unlimited Thalers/Coins & Crafting Points - Once enabled, purchase something using coins & use a craft point so the currencies stick, then disable this feature.
      - Unlimited Storage Items - Taking storage items will increase them.
      - Unlimited Energy / Instant Energy Refills - Will refill your energy once you run to another location.
      - Godmode - Unlinked. Health will still decrease but you won't die.
      - One-Hit Kill - Linked to the enemy. Would recommend enabling 'Godmode'.
      - Increased Attack Range - Allows you to kill enemies from some distance away.
      - Free Crafting - Will allow you to craft items without the required materials.
      - No Crafting Level Requirement
      - Free Construction
      - Items Duplicate When Split
      - Unlimited Item Durability
      - x2 Player Speed
      - x3 Player Speed
        • Like
      • 5,038 replies
    • Powerlust - Action RPG Offline v1.67.09 +2 Jailed Cheats [ Damage ]
      Modded/Hacked App: Powerlust - Action RPG offline By Bartlomiej Mamzer
      Bundle ID: bartmamzer.powerlust.actionrpg.roguelike
      App Store Link: https://apps.apple.com/us/app/powerlust-action-rpg-offline/id1439088319?uo=4

       


      🤩 Hack Features

      - God Mode
      - Damage Multiplier
      • 0 replies
    • Powerlust - Action RPG Offline v1.67.09 +2 Cheats [ Damage ]
      Modded/Hacked App: Powerlust - Action RPG offline By Bartlomiej Mamzer
      Bundle ID: bartmamzer.powerlust.actionrpg.roguelike
      App Store Link: https://apps.apple.com/us/app/powerlust-action-rpg-offline/id1439088319?uo=4

       
       

      🤩 Hack Features

      - God Mode
      - Damage Multiplier
      • 2 replies
    • NETHER DUNGEONS v1.18 [+3 Cheats]
      Modded/Hacked App: NETHER DUNGEONS By ARAKUMA STUDIO S.A.
      Bundle ID: com.ArakumaStudio.NetherDungeons
      iTunes Store Link: https://apps.apple.com/us/app/nether-dungeons/id6737908225?uo=4



      🤩 Hack Features

      - Never Die
      - Activate Vip Mode
      - Add Currency
       
      • 4 replies
    • NETHER DUNGEONS v1.18 [+3 Jailed Cheats]
      Modded/Hacked App: NETHER DUNGEONS By ARAKUMA STUDIO S.A.
      Bundle ID: com.ArakumaStudio.NetherDungeons
      iTunes Store Link: https://apps.apple.com/us/app/nether-dungeons/id6737908225?uo=4

       

      🤩 Hack Features

      - Never Die
      - Activate Vip Mode
      - Add Currency
      • 3 replies
    • Kiwoyong: Raise Your Dragon ( 키워용: 도굴라이프 ) v1.5.16 +2 Cheats [ Damage ]
      Modded/Hacked App: 키워용: 도굴라이프 By Co., Ltd. NGELGAMES
      Bundle ID: kr.ngelgames.dragon
      App Store Link: https://apps.apple.com/kr/app/%ED%82%A4%EC%9B%8C%EC%9A%A9-%EB%8F%84%EA%B5%B4%EB%9D%BC%EC%9D%B4%ED%94%84/id6618145893?uo=4

       
       

      🤩 Hack Features

      - God Mode
      - Damage Multiplier
      • 2 replies
    • Hungry Shark World v6.7.7 +5 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Hungry Shark World By Ubisoft
      Bundle ID: com.ubisoft.hungrysharkworld
      iTunes Store Link: https://apps.apple.com/us/app/hungry-shark-world/id1046846443?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:
      - Unlimited Coins
      - Unlimited Gems
      - Unlimited Pearls
      - Unlimited Boost
      - Season Pass Unlocked


      Jailbreak required hack(s): [Mod Menu Hack] Hungry Shark World v5.9.1 +5 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 228 replies
    • Hungry Shark World v6.7.7 +5 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Hungry Shark World By Ubisoft
      Bundle ID: com.ubisoft.hungrysharkworld
      iTunes Store Link: https://apps.apple.com/us/app/hungry-shark-world/id1046846443?uo=4


      Hack Features:
      - Unlimited Coins
      - Unlimited Gems
      - Unlimited Pearls
      - Unlimited Boost
      - Season Pass Unlocked


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Hungry Shark World v5.9.1 +4 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 92 replies
    • Run! Goddess v1.0.10 [+3 Jailed Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4



      🤩 Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
      • 32 replies
    • Run! Goddess v1.0.10 [+3 Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4

       

      🤩 Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
       
      • 26 replies
    • Sword Master Story Cheats v4.107.556 +5
      Modded/Hacked App: Sword Master Story By SuperPlanet corp.
      Bundle ID: com.superplanet.swordmaster
      iTunes Store Link: https://apps.apple.com/us/app/sword-master-story/id1521447065?uo=4


      Hack Features:
      - Custom Player Stats
      - Weak Enemies
      - One Hit Kill
      - & More

      Press & Hold to read feature description


      iOS Hack Download Link: https://iosgods.com/topic/146819-sword-master-story-cheats-v42294-3/
      • 1,445 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