Jump to content

.deb lag problem


Ted2

18 posts in this topic

Recommended Posts

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)

Link to comment
Share on other sites

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!

Link to comment
Share on other sites

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

Without hacks it works fine?

I got some errors anyway: http://imgur.com/KKKpB1H

 

And: http://imgur.com/okGiXSO

 

I seriously don't understand what I did wrong

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Archived

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

  • Our picks

    • West Escape v1.0.15 +7++ Jailed Cheats [ Unlimited Everything ]
      Modded/Hacked App: West Escape By Estoty LLC
      Bundle ID: com.western.escape
      iTunes Store Link: https://apps.apple.com/us/app/west-escape/id6474681724?uo=4


      Hack Features:
      - Unlimited Everything
      - God Mode
      - God Mode - Horse
      - One-Hit Kill
      - No Ads -> Head into Settings and toggle the Discord Support button.


      Jailbreak required hack(s): [Mod Menu Hack] West Escape v1.0.13 +7++ Cheats [ Unlimited Everything ] - 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/
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 44 replies
    • Merge 2 Survive: Zombie Game v1.1.2 +3 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Merge 2 Survive: Zombie Game By Pixodust Aplicativos LTDA
      Bundle ID: com.pixodust.games.merge.survive.puzzle.game
      iTunes Store Link: https://apps.apple.com/us/app/merge-2-survive-zombie-game/id6468487156?uo=4


      Hack Features:
      - Unlimited Coins
      - Unlimited Diamonds
      - Unlimited Energy


      Jailbreak required hack(s): [Mod Menu Hack] Merge 2 Survive: Zombie Game v1.0.3 +3 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/
        • Agree
        • Thanks
        • Like
      • 10 replies
    • Merge 2 Survive: Zombie Game v1.1.2 +3 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Merge 2 Survive: Zombie Game By Pixodust Aplicativos LTDA
      Bundle ID: com.pixodust.games.merge.survive.puzzle.game
      iTunes Store Link: https://apps.apple.com/us/app/merge-2-survive-zombie-game/id6468487156?uo=4


      Hack Features:
      - Unlimited Coins
      - Unlimited Diamonds
      - Unlimited Energy


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Merge 2 Survive: Zombie Game v1.0.3 +3 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/
        • Informative
        • Thanks
        • Winner
        • Like
      • 16 replies
    • West Escape v1.0.15 +7++ Cheats [ Unlimited Everything ]
      Modded/Hacked App: West Escape By Estoty LLC
      Bundle ID: com.western.escape
      iTunes Store Link: https://apps.apple.com/us/app/west-escape/id6474681724?uo=4


      Hack Features:
      - Unlimited Everything
      - God Mode
      - God Mode - Horse
      - One-Hit Kill
      - One-Hit w/ Tool
      - No Tool Level Requirement
      - No Ads -> Head into Settings and toggle the Discord Support button.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] West Escape v1.0.13 +5++ Cheats [ Unlimited Everything ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 25 replies
    • Hoosegow: Prison Survival v2.6.7 +40++ Jailed Cheats [ Debug Menu ]
      Modded/Hacked App: Hoosegow: Prison Survival By D.DREAM GAMES LLC
      Bundle ID: com.ddreamgames.hoosegow
      iTunes Store Link: https://apps.apple.com/us/app/hoosegow-prison-survival/id1587312327?uo=4


      Hack Features:
      - Debug Menu -> Head into Settings and toggle the Report a problem button.


      Jailbreak required hack(s): [Mod Menu Hack] Hoosegow: Prison Survival v2.2.4 +40++ Cheats [ Debug Menu ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 57 replies
    • Hoosegow: Prison Survival v2.6.7 +40++ Cheats [ Debug Menu ]
      Modded/Hacked App: Hoosegow: Prison Survival By D.DREAM GAMES LLC
      Bundle ID: com.ddreamgames.hoosegow
      iTunes Store Link: https://apps.apple.com/us/app/hoosegow-prison-survival/id1587312327?uo=4


      Hack Features:
      - Debug Menu -> Head over to Settings and toggle the Report a problem button.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Hoosegow: Prison Survival v2.2.4 +40++ Jailed Cheats [ Debug Menu ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 36 replies
    • Supermarket Manager Simulator v1.0.9 +3 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Supermarket Manager Simulator By Digital Melody S.A.
      Bundle ID: com.dmg.supermarket.simulator
      iTunes Store Link: https://apps.apple.com/us/app/supermarket-manager-simulator/id6479982512?uo=4


      Hack Features:
      - Unlimited Cash -> Will increase instead of decrease.
      - Unlimited Energy -> Will increase instead of decrease.
      - No Ads


      Jailbreak required hack(s): [Mod Menu Hack] Supermarket Manager Simulator v1.0.6 +3 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 48 replies
    • Supermarket Manager Simulator v1.0.9 +3 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Supermarket Manager Simulator By Digital Melody S.A.
      Bundle ID: com.dmg.supermarket.simulator
      iTunes Store Link: https://apps.apple.com/us/app/supermarket-manager-simulator/id6479982512?uo=4


      Hack Features:
      - Unlimited Cash -> Will increase instead of decrease.
      - Unlimited Energy -> Will increase instead of decrease.
      -- No Ads


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Supermarket Manager Simulator v1.0.6 +3 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/
        • Informative
        • Agree
        • Thanks
        • Like
      • 21 replies
    • Stealth Master: Assassin Ninja v1.12.15 +4++ Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Stealth Master: Assassin Ninja By SayGames LTD
      Bundle ID: io.highcore.stealthmaster
      iTunes Store Link: https://apps.apple.com/us/app/stealth-master-assassin-ninja/id1518389230
       

      Hack Features:
      - God Mode
      - One-Hit Kill
      - Unlimited Currencies
      - All Characters Unlocked


      Jailbreak required hack(s): https://iosgods.com/topic/173267-stealth-master-assassin-ninja-v1128-4-cheats-damage-defence/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 13 replies
    • Mighty DOOM v1.13.1 +2 Jailed Cheats [ God & OHK ]
      Modded/Hacked App: Mighty DOOM By Bethesda
      Bundle ID: com.bethsoft.ubu
      iTunes Store Link: https://apps.apple.com/us/app/mighty-doom/id1535673981
       

      Hack Features:
      - God Mode -> You will take damage but you won't die.
      - One-Hit Kill


      Jailbreak required hack(s): https://iosgods.com/topic/170017-mighty-doom-v100-2-cheats-damage-multiplier/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 127 replies
    • Mighty DOOM v1.13.1 +2 Cheats [ Damage Multiplier ]
      Modded/Hacked App: Mighty DOOM By Bethesda
      Bundle ID: com.bethsoft.ubu
      iTunes Store Link: https://apps.apple.com/us/app/mighty-doom/id1535673981
       

      Hack Features:
      - God Mode -> You will take damage but you won't die.
      - Damage Multiplier


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/170103-mighty-doom-v100-2-jailed-cheats-one-hit-kill/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 157 replies
    • Stealth Master: Assassin Ninja v1.12.15 +4++ Cheats [ Damage & Defence ]
      Modded/Hacked App: Stealth Master: Assassin Ninja By SayGames LTD
      Bundle ID: io.highcore.stealthmaster
      iTunes Store Link: https://apps.apple.com/us/app/stealth-master-assassin-ninja/id1518389230
       

      Hack Features:
      - Damage Multiplier
      - Defence Multiplier
      - Unlimited Currencies -> Restart the app for it to take effect.
      - All Characters Unlocked


      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/
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 25 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