Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. 1. Download the app 2. Install my .deb 3. Open the game 4. After 8secs, you can tap with three fingers on screen & MM shows up 5. Enable the 2 hacks 6. Make a change in money 7. You get unlimited
  2. Be sure you installed the game earlier than hack. If not works, delete the tweak and app. Then reinstall the app & then the hack.
  3. 'Can you fix the link for the itunes store please?' yes sure, no problem
  4. Keychain method will just give you a new account.
  5. Great Royale Wars - Clash of Block By Asya Akopyan v3.1 com.mightyblocks.clashcraft Requires: iOS 8.2 or later. Price: Free Updated: 2017-09-01T19:41:16Z iTunes URL: https://itunes.apple.com/us/app/great-royale-wars-clash-of-block/id1109008912?mt=8&uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: - Unlimited Gold - Unlimited Gems info You activate the ModMenu by tapping with three fingers on the screen when game is loaded. Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. STEP 7: Turn on the features you want and then open the game. NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - @Ted2 Cheat Video/Screenshots:
  6. ios 9 & higher need itunes
  7. Don't think so, the binary is for autolipo, but this isn't automaticly activated, so filling nothing shouldn't results in errors & the AppDelgate thing also not
  8. Yea, I understand. I used both too, but shmoo's worked just fine for me . No idea why it doesn't work for you
  9. Idk why it gives you errors about that %orig, my tweak.xm got that too, Btw, why are you using Shmoo's MM & not Arthurs?
  10. Sorry, din't read it lol. Which port do you use?
  11. Have you installed OpenSSh from cydia?
  12. This should work #import "Macros.h" #import "ModMenu.h" #import "Hack.h" #import "Hook.h" #import "SliderHook.h" #import "TextfieldHook.h" #import <substrate.h> #import <initializer_list> #import <vector> #import <mach-o/dyld.h> /*****************************/ static NSString *const title = @""; //title of your menu static NSString *const credits = @""; //who made the hack? static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font static UIColor *const themeColor = rgb(0x738282); //the overall color for the menu and the button //replace the ? with anything from this list: //https://ghostbin.com/paste/mbkfb //or you could specify a custom color with //rgb(0xCOLORCODE) ex: rgb(0x738282) //a complete list of fonts can be found here: //http://iosfonts.com/ //please refer to README.txt for more info. /******************************/ uint64_t getRealOffset(uint64_t); void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>); void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *); void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *); void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *); static ModMenu *menu; bool buttonAdded; %hook - (void)applicationDidBecomeActive:(id)arg0 { UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view; UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30); openButton.backgroundColor = [UIColor clearColor]; openButton.layer.cornerRadius = 16; openButton.layer.borderWidth = 2; openButton.layer.borderColor = themeColor.CGColor; [openButton addTarget:self action:@selector(wasDragged:withEvent:) forControlEvents:UIControlEventTouchDragInside]; [openButton addTarget:self action:@selector(showMenu) forControlEvents:UIControlEventTouchDownRepeat]; if(!buttonAdded){ timer((int64_t)1){ UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view; menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor]; /*********************** add your features below this multi line comment. they show in the order you have added them. for example: addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5}); multi offset hacks can be added like this (there is no limit to the number of offsets you can have!): addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5}); parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es)); to add a slider hook: for example: addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov); parameters: addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name); to retrieve the value of the slider, use: float val = [SliderHook getSliderValueForHook:@"hack name here"]; to add a textfield hook: for example: addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov); parameters: addSliderHook(hack name, description, font, function to hook, hooked function name, original function name); to retrieve the value of the textfield: int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue]; float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue]; to add a normal hook: for example: addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov); parameters: addHook(hack name, description, font, function to hook, hooked function name, original function name); to see if the the user turned on the hook or not: bool isOn = [Hook getHookOnForHook:@"hack name here"] ************************/ //add features here! [main addSubview:openButton]; [main addSubview:menu]; buttonAdded = true; }); } %orig; } %new - (void)showMenu { [menu show]; } %new - (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event { UITouch *touch = [[event touchesForView:button] anyObject]; CGPoint previousLocation = [touch previousLocationInView:button]; CGPoint location = [touch locationInView:button]; CGFloat delta_x = location.x - previousLocation.x; CGFloat delta_y = location.y - previousLocation.y; button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y); } %end void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){ std::vector<uint64_t> offsetVector; std::vector<uint64_t> hackedHexVector; std::vector<uint64_t> originalHexVector; offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end()); hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end()); originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end()); Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector]; [menu addHack:h]; } void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){ MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig); Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832]; [menu addHook:h]; } void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){ MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig); SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue]; [menu addHook:sh]; } void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){ MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig); TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset]; [menu addHook:th]; } uint64_t getRealOffset(uint64_t offset){ return _dyld_get_image_vmaddr_slide(0)+offset;
  13. Lol, it's f**ked now. Nvm the code, just paste it.... edit: nvm got it
  14. [.code] <--> here [./code]
  15. can you add your tweak.xm in [.code] [./code] (without the '.')
  16. yea, aslong as you don't touch tweak.xm.
  17. You should not copy readme.txt into tweak.xm, start from scratch & tell me what errors, without touching anything yet
  18. You did not copy the readme.txt into tweak.xm?
  19. What format is it & try open it with your pc
  20. ps: so much languages
  21. Hi, So I've had a few games that were checking the binary when staring the app, which we could easily bypass by setting NSTimer or a Mod Menu. But now a friend, is not jailbroken. So I firstly tested the hack on my jailbroken device, worked good. Now tested by Cydia Impactor, game loads t 75% & then CRASH. Is there a way we can bypass this easily? I assume it's, crc protection, but not sure. Thankyou in advance
  22. You just copied the README file & pasted it in tweak.xm, ofcourse this causes errors. Start from scratch
×
  • 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