Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. Hmm, idk then.. weird device do I have euhm, I don't see one where you can mix Bikes ?
  2. The ultra bikes in NOT written in the nometris.plist. it is in preferences plist, under ShopFileSavedInfo (something like that) it is in base64. but there are lots of hack for the ultra bike, I've not been succesfull to unlock it via Flex 2 btw
  3. hmm, link for that one ? I'll try that one. and what arm do you have ?
  4. Bike Race Pro (get it from appcake or any other alternative)
  5. Okey, this version is a little f*cked up, because it only shows 4 things (still lags) link: https://www.dropbox.com/s/wb9z4myl7tw4ikf/com.0m1cr0n.brm_1.0.0-1_iphoneos-arm.deb?dl=0
  6. Mweh, don't think so. Can't you test it on your device ?
  7. Hahah, I made you a new experience but yeah, it is damn weird..
  8. Okey, I've done this: Restore my device, jailbroke iOS 8.4 (was on 8.3) Then I did code EVERYTHING again, and still lags, don't work well.. I'm pretty sure I do it right, well I'll gave you all the files in it. Link: http://www.mediafire.com/download/erdgd387qsqjwyc/Bike+Race+Mix+LAG.zip I seriously hope you can help me out! thanks anyway..
  9. That is a nice one, only it is slow when you open a app... any other ?
  10. I'll try 7.1, if that won't help I'll show my makefile.
  11. Today I did wanna complete my tweak but I get a multiply errors: 'While building for 6.0 will generat armv7-only binaries (not sure if this is a error)' 'Warning! No files to link. Please check your make file! Make sure you set Bike_FILES (or similar variables), I actually don't understand this error' 'Linking Tweak Bike... Warning! Ignore file blabla/dylibl.o, missing required architecture arm64 in file blabla/dylibl.o (2 slices) I have sdk iOS 8.1 installed btw Hope someone can help me with these anoying problems!
  12. Thanks!!! You are the man worked!
  13. Already did lol, even reboot I did
  14. Hey, Here I am again.. lol I have a problem, sometimes when I install a tweak like f.lux it appears on homescreen, but sometimes not, like today. I deleted f.lux yesterday, and installed it again today, nothing appears, but yesterday it did ? So what I tried: 1. Reinstall Cydia Substrate and Preference Loader 2. Run uicache Any more options ? Thanks!
  15. Install a windows virtual machine, and you´re able to jailbreak your iDevice
  16. Alright, will check at it. thanks dude.
  17. 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
  18. I got some errors anyway: http://imgur.com/KKKpB1H And: http://imgur.com/okGiXSO I seriously don't understand what I did wrong
  19. 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!
  20. 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)
  21. I don't understand...?
  22. http://imgur.com/R08HJx8
  23. Even more weird: the .deb doesn't show up as installed in cydia
  24. It's not my device, before it did run right, and I use the same units as in flex, but now using settings. It allows me to mix bikes, like I did via flex, but via the preference bundle it is easier. It allows me to mix bikes, like i did via flex, but the preference bundle makes it easier.
  25. Hello, Today I made a preference bundle, but when I use it, the game lags, what can be the problem ?
×
  • 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