-
Posts
4,939 -
Joined
-
Last visited
Everything posted by Ted2
-
http://imgur.com/R08HJx8
-
Even more weird: the .deb doesn't show up as installed in cydia
-
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.
-
Hello, Today I made a preference bundle, but when I use it, the game lags, what can be the problem ?
-
As always, Thanks!!! Tweaks won´t popup in Flex 2, but thanks anyway
-
Hello, How can we delete ads from a tweak like Facebook++ ? I know there are cracked ones for, but these versions are old.
-
Yeah, I see. Still damn weird it isn't there. Will try tommorow again. Thanks dude
-
That is pretty weird
-
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.
-
Hey! I changed the first 3 in your tutorial, and these work! so I did something wrong in my own one!
-
okey, I'll. Here is it: (.deb included) : http://www.dropbox.com/s/jk9blqk22ni6i2y/bikeracemix-iosgods.zip?dl=0
-
I did Edit: I fixed the first problem, but they don't work in the game
-
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
-
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
-
Hey man, you said the coding could be better, how ?
-
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.
-
Confused now
-
What do you mean ?
-
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
-
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> '
-
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.
-
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 ?
-
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 ?