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
×
  • 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