Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. Oh god, this question is totally stupid, they did block iap on iOS version of game, how can I unblock it, not how can they block it
  2. Hey! Today I talked with a dev of a game, he said 'we protected the game for in app purchases, thanks for telling how..' well, I told them that they could protect there self better for android, just when a app like freedom is activated in game, the purchase can't work. but how do it on iOS ? the same ? or any other thing they check ? Please, lemme know
  3. OMG, it is my device
  4. lol, I'm gonna delete all my tweaks, solve this post is useless now, anywaya thanks
  5. Hmm, idk then.. weird device do I have euhm, I don't see one where you can mix Bikes ?
  6. 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
  7. hmm, link for that one ? I'll try that one. and what arm do you have ?
  8. Bike Race Pro (get it from appcake or any other alternative)
  9. 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
  10. Mweh, don't think so. Can't you test it on your device ?
  11. Hahah, I made you a new experience but yeah, it is damn weird..
  12. 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..
  13. That is a nice one, only it is slow when you open a app... any other ?
  14. I'll try 7.1, if that won't help I'll show my makefile.
  15. 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!
  16. Thanks!!! You are the man worked!
  17. Already did lol, even reboot I did
  18. 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!
  19. Install a windows virtual machine, and you´re able to jailbreak your iDevice
  20. Alright, will check at it. thanks dude.
  21. 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
  22. I got some errors anyway: http://imgur.com/KKKpB1H And: http://imgur.com/okGiXSO I seriously don't understand what I did wrong
  23. 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!
  24. 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)
  25. I don't understand...?
×
  • 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