I've encountered 3 issues today and my day cannot get any better! So basically, I've tried compiling my patcher and this is the error I get: and --------------------------------------- This is my tweak.xm: #define PLIST_PATH @"/var/mobile/Library/Preferences/com.iOSGods.BuddymanKickByJoka.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook PBGlobalStatistic -(int)money { if(GetPrefBool(@"kGold")) { return 999999999; } return %orig; } -(int)coinsCount { if(GetPrefBool(@"kCoin")) { return 999999999; } return %orig; } %end %hook PBSlotsManager -(unsigned long long)getSpinsCount { if(GetPrefBool(@"kSpins")) { return 999999999; } return %orig; } %end /* Popup with a link Varieties of a UIAlertView Popup can be found here: http://iosgods.com/topic/13988-varieties-of-uialertview-types-to-use-in-your-tweaks-patchers/ */ %hook PocketBuddyAppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc. - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app. UIAlertView *igcredits = [[uIAlertView alloc] initWithTitle:@"Bm Cheats" message:@"\nBm Cheats by Joka for iOSGods.com" delegate:self cancelButtonTitle:@"Thanks" otherButtonTitles:@"Visit Us", nil]; [igcredits show]; [igcredits release]; return %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Visit Us"]) { [[uIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://iosgods.com/]]; } } %end If you have any idea on how to fix, please leave a comment. Thank you!