Jump to content

Salman1700

Senior Member
  • Posts

    358
  • Joined

  • Last visited

Everything posted by Salman1700

  1. 1902
  2. 1879
  3. 1877
  4. 1875
  5. Cry
  6. And
  7. Then
  8. %hook SBUIController -(bool)shouldShowNotificationCentreTabOnFirstSwipe { if(GetPrefBool(@"kEnabled")) return TRUE; } %end Now try
  9. Checck TTGAMEDATA is not targetclass
  10. PM someone to give you their THEOS bcuz i did
  11. %hook TTGameData - (void) addBux { return 88888; } - (void) addCoins { return 88888; } - (int) coins { return 888888888; } - (int) bux { return 888888888; } - (BOOL) isLobbyFull { return FALSE; } - (int) hearts { return 8888 %end %hook TTowerLayer - (int) nextFloorCost { return 0; } %end %hook TTBitizenInfo - (BOOL) inDreamJob { return TRUE; } %end %hook TTFloor - (BOOL) hasProblem { return FALSE; } - (int) prodHurryCost { return 0; } - (void) setProblem { return 0; } %end Try if works
  12. fix it u next time i will do good u fix i dont know now
  13. I did Should i remove like return true; or return true without ";"
  14. #define PLIST_PATH @"/var/mobile/Library/Preferences/com.yourcompany.8ballpoolhack.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook something -(int)method { if(GetPrefBool(@"kKey")) { return 9999999; } return %orig; } -(int)gems { if(GetPrefBool(@"kGems")) { return 9999999; } return %orig; } -(unsigned int)lives { if(GetPrefBool(@"kLives")) { return 9999999; } return %orig; } %end %hook SomethingElse -(BOOL)Autowin { if(GetPrefBool(@"kKEY5")) { return TRUE; } return %orig; } -(BOOL)Autowin2 { if(GetPrefBool(@"kKEY6")) { return FALSE; } return %orig; } %end - (unsigned int)getNumBallsOnTable; { return 1; } - (unsigned int)numBallsPocketed; { return 8; } - (BOOL)isBallPocketed:(id)fp8; { return True; } - (int)foulReason; { return 13; } - (int)foulReason; { return 13; } - (void)setFoulReason:(int)fp8 opponentName:(id)fp12; { return 13; } - (BOOL)foulShot; { return 13; } - (id)getFoulReasonText:(int)fp8; { return 13; } - (void)setOpponentQuit:(BOOL)fp8; { return True; } - (BOOL)opponentQuit; { return True; } - (BOOL)isOnStateOpponentTurn; { return False; } - (BOOL)isOnStateOpponentTurn; { return false; } - (BOOL)isOnStateOpponentTurnOrJustLeftIt; { return false; } %hook AppDelegate -(void)applicationDidBecomeActive:(id)arg { UIAlertView *credits = [[uIAlertView alloc] initWithTitle:@"@@8Ball PoolHack@@ Cheats" message:@"Hacked by @@@Salman1700@@ for iOSGods.com!" delegate:self cancelButtonTitle:@"Thanks" otherButtonTitles:@"Visit Us", nil]; [credits show]; [credits release]; %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://www.iOSGods.com/]]; } } %end
  15. Yeah there a browser Puuffin Which Let you play JAVA games videos anything:)
  16. This one - (void)functionCall Or -(void) functionCall
  17. Making all for tweak testtweak... Preprocessing Tweak.xm... Compiling Tweak.xm... Tweak.xm:51:1: error: missing context for method declaration - (unsigned int)getNumBallsOnTable; { ^ Tweak.xm:57:1: error: missing context for method declaration - (unsigned int)numBallsPocketed; { ^ Tweak.xm:63:1: error: missing context for method declaration - (BOOL)isBallPocketed:(id)fp8; { ^ Tweak.xm:69:1: error: missing context for method declaration - (int)foulReason; { ^ Tweak.xm:75:1: error: missing context for method declaration - (int)foulReason; { ^ Tweak.xm:81:1: error: missing context for method declaration - (void)setFoulReason:(int)fp8 opponentName:(id)fp12; { ^ Tweak.xm:88:1: error: missing context for method declaration - (BOOL)foulShot; { ^ Tweak.xm:95:1: error: missing context for method declaration - (id)getFoulReasonText:(int)fp8; { ^ Tweak.xm:101:1: error: missing context for method declaration - (void)setOpponentQuit:(BOOL)fp8; { ^ Tweak.xm:107:1: error: missing context for method declaration - (BOOL)opponentQuit; { ^ Tweak.xm:113:1: error: missing context for method declaration - (BOOL)isOnStateOpponentTurn; { ^ Tweak.xm:120:1: error: missing context for method declaration - (BOOL)isOnStateOpponentTurn; { ^ Tweak.xm:127:1: error: missing context for method declaration - (BOOL)isOnStateOpponentTurnOrJustLeftIt; { ^ 13 errors generated. http://imgur.com/CRqSGMw
×
  • 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