Jump to content

Crypto

Senior Member
  • Posts

    3,170
  • Joined

  • Last visited

Everything posted by Crypto

  1. This hack was made in june 2015, it's most likely outdated which is probably the reason it's not working.
  2. Welcome
  3. Welcome
  4. Go search for Amuyea Mimo's hack. It's a pretty good app for begginers who wants to learn coding. There's #C , c++ , HTML, Swift and many more things.
  5. Is it a (void) ?
  6. Follow the pinned tutorial on how to hack with MSHook, it tells you how each value works
  7. Yeah but I still say goodjob to games that are easy to hack. You'll probably make that one kid in that one country happy so that's what matters in the end. Easy or not, it's to give and make ppl happy
  8. Just delete all the .debs you previously downloaded since they're already installed. It will give you some extra storage
  9. @Goggwell has created a Mega Hack for Bloons TD 5
  10. Goggwell has created a Mega Hack for Bloons TD 5
  11. Goggwell has created a Mega Hack for Bloons TD 5
  12. ***MEGAHACK*** patchet is coming soon guys
  13. Welcome
  14. Compiling Tweak.xm... Tweak.xm:29:12: error: assigning to 'double' from incompatible type 'NSNumber * _Nonnull' ...= [NSNumber numberWithInt:GetPrefDouble(@"kMoney")]; ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated.
  15. Basically with Mobile terminal or Mterminal, you can make tweaks, patchers and all kinds of things. But you kinda need some knowledge in coding I guess. You can pretty much do anything with it if you know what you're doing. If you want to learn how to create some things, you can always check out the tutorial section to enhance your knowledge in hacking or wtv you're trying to do
  16. #define PLIST_PATH @"/var/mobile/Library/Preferences/terapref.plist" #import <UIKit/UIKit.h> inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } #include <Foundation/Foundation.h> %hook GNGame -(void) setGenesisPoints:(int)arg1 { if(GetPrefBool(@"kGenesis")) { arg1 = 999999; } return %orig; } %end %hook GNGame - (void)setMoney:(double)arg1 { if(GetPrefBool(@"kMoney")) { arg1 = [NSNumber numberWithInt:GetPrefDouble(@"kMoney")]; } } %end %hook AppDelegate -(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"IosGods" message:@"TeraGenesis Cheat By Crypto" delegate:self cancelButtonTitle:@"Thanks!" otherButtonTitles:@"For more hacks, Click Here!", nil]; [alert show]; [alert release]; return %orig(); %new } -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { if(buttonIndex !=alertView.cancelButtonIndex) { [[uIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.iosgods.com]]; } } %end -------------------------------------------------------- I have like 15 other classes but They all have 1 argument and I need to know how to make 1 PSEditTextCell so I can use it on all the other classes.
×
  • 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