Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. As always, Thanks!!! Tweaks won´t popup in Flex 2, but thanks anyway
  2. Hello, How can we delete ads from a tweak like Facebook++ ? I know there are cracked ones for, but these versions are old.
  3. Yeah, I see. Still damn weird it isn't there. Will try tommorow again. Thanks dude
  4. That is pretty weird
  5. For settings And also that one doesn't work. The iOSgods patcher worked, i changed int to bool, methode to ShopViewController etc I don't get it why this doesn't work.
  6. Hey! I changed the first 3 in your tutorial, and these work! so I did something wrong in my own one!
  7. okey, I'll. Here is it: (.deb included) : http://www.dropbox.com/s/jk9blqk22ni6i2y/bikeracemix-iosgods.zip?dl=0
  8. I did Edit: I fixed the first problem, but they don't work in the game
  9. Hey, I did everything again, now I can select only 3 in the settings, but added more. anyway here should be a fix for, but even if i select these, it doesn't work in the game
  10. Alright, and euhm is (bool) and (BOOL) a big diffrence if you forgot to do it in caps ? if yes that could be the problem
  11. Hey man, you said the coding could be better, how ?
  12. Okey will try, thankyou. Maybe a stupid question, but how do I get the option: 'iOSgods/patcher' I have only 5 options. Edit: Nevermind, ugh i'm dumb.
  13. Confused now
  14. What do you mean ?
  15. Yeah, I just put by every bike the offcial name with a 'k' before it. see my prefbundle.plist: http://www.mediafire.com/view/7yy39yjbcjrr5x7/prefbundle.plist
  16. Haha, my bad just started coding And with key do you mean in the 'prefbundle.plist' ? I have for example this for each bike: '<key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>prefbundle</string> <key>key</key> <string>kDailyBike</string> <key>label</key> <string>Daily Bike</string> '
  17. Alright, ________________ #define PLIST_PATH @"/var/mobile/Library/Preferences/prefbundle.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook ShopViewController -(bool) UseDailyBike { if(GetPrefBool(@"kDailyBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseUSABike { if(GetPrefBool(@"kUsaBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseUKBike { if(GetPrefBool(@"kEnglandBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseAustraliaBike { if(GetPrefBool(@"kAustraliaBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseNetherlandsBike { if(GetPrefBool(@"kNetherlandsBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseFranceBike { if(GetPrefBool(@"kFranceBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseGermanyBike { if(GetPrefBool(@"kGermanyBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseBrazilBike { if(GetPrefBool(@"kBrazilBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseSpainBike { if(GetPrefBool(@"kSpainBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseJapanBike { if(GetPrefBool(@"kJapanBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseBelgiumBike { if(GetPrefBool(@"kBelgiumBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseItalyBike { if(GetPrefBool(@"kItalyBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseArgentiniaBike { if(GetPrefBool(@"kArgentiniaBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseMexicoBike { if(GetPrefBool(@"kMexicoBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseSuperPenguin { if(GetPrefBool(@"kSuperBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UsePenguinGirl { if(GetPrefBool(@"kNormalBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseKidsMode { if(GetPrefBool(@"kKidsBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseMagicPenguin { if(GetPrefBool(@"kGhostBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseUltraBike { if(GetPrefBool(@"kUltraBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseThanksgivingBike { if(GetPrefBool(@"kThanlsgivingBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseXmasBike { if(GetPrefBool(@"kSantaBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseEasterBike { if(GetPrefBool(@"kEasterBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseNinjaBike { if(GetPrefBool(@"kNinjaBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseCopBike { if(GetPrefBool(@"kPoliceBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseRetroBike { if(GetPrefBool(@"kRetroBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseZombieBike { if(GetPrefBool(@"kZombie")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseConstructorBike { if(GetPrefBool(@"kArmyBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseHalloweenBike { if(GetPrefBool(@"kHalloweenBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseEasyBike { if(GetPrefBool(@"kGirlBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseBronzeBike { if(GetPrefBool(@"kBronzeBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseSilverBike { if(GetPrefBool(@"kSilverBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseGoldBike { if(GetPrefBool(@"kGoldBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseAcrobaticBike { if(GetPrefBool(@"kAcrobaticBike")) { return true; } return %orig; } %end %hook ShopViewController -(bool) UseBeatBike { if(GetPrefBool(@"kHogBike")) { return true } return %orig; } %end %hook ShopViewController -(bool) UseSpamBike { if(GetPrefBool(@"kHighTechBike")) { return true; } return %orig; } %end There it is, a bit long.
  18. Bundle ID is correct, but the bool doesn't work, when i select it need to be to 'true' but it doesn't do anything ?
  19. yoo thanks No idea, worked on it for 2 hours, but idk what I did wrong Edit: Probably found the problem, pretty stupid. will ask more if I didn't fix it Edit: Looks good now, but the bool to true didn't work ?
  20. Thanks, worked! Only problem, why whole coding didn't work
  21. Okey I got the .deb now, but when I put: 'make package install' it says: 'status database area is locked by another process' How can I fix this ?
  22. My bad, i clicked the link on that topic you posted for someone. my bad lol
  23. No, but the link you gave me says I need to rename the UIAlertview.h to UIAlertView,h.bak But I'll try something. Okey, thanks. Will try after dinner
×
  • 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