Jump to content

bR34Kr

ViP Pro
  • Posts

    1,323
  • Joined

  • Last visited

Posts posted by bR34Kr

  1. Can you please say how you duplicated the app? Maybe you put in in your root Applications folder which are where the apps that don’t have an X symbol when they wiggle are. If so, delete the app from that directory.

  2. 6 minutes ago, DADi said:

    Hello,

    All file managers for iOS on your PC are mostly useless. You would not be able to browse your file system or do much without a Jailbreak.

    Also, if you go and jailbreak your device, you will need a package called Apple File Conduit "2" (arm64/KPPLess)* to have permissions to read and write all files on your device using a PC.

     

    *: For iOS 11+. For iOS 10 and below use Apple File Conduit "2"

    • Like 1
  3. From your user information, you are on iOS 11.0.2. On this version Apple dropped 32-bit support, so this means FAT binaries are no more. Furthermore, the iTunes Store on PC cannot download apps anymore because Apple also dropped support for that. The new method you should use is download the app directly to your device and crack it using CrackerXI from Cydia (from the AppCake repo)

  4. When a game is server sided, if we have our original coins value at 1000 and we set it to 9999 with a cheat, well when we’ll do math on it (buy an item for example) it won’t use our 9999 because it’ll fetch the real coins value (in this case 1000) from the server and do math on that. That’s why supercell games are server sided, since if you change your gems with a cheat it will always revert back to its original value. Another reason it cannot be hacked, is you never really interact with that value. What I mean by that is all the math happens on the server and the server will check if the value is realistic.

     

    Trainer Canyon is already hacked:

     

    But if you want coins/whatever currency it might not be possible because it might be server sided. A good and fast way to see if a game is server sided is if it requests you be connected to the internet as you play, because without internet, you won’t be able to connect to their server.

    • Like 1
    • Agree 1
  5. Hi all! My iDevice is on iOS 10.3.2 and I would like to update to a more recent iOS version because games are starting to lose support for my version and I want to play with the new frameworks :p. Also, I want to keep all my data, this means /var/mobile/* (Documents, Downloads, etc.). Anyways, I'm on doubleh3lix and here are my saved blobs:

    03ab709c3f521b5a2aec3889c1287706.png

    I'd like to update to the most stable version. The solution I found so far is to zip all the stuff I want to keep, backup iDevice to iTunes, restore and then update and put all my data back. But I wanted to indout if there's a quicker way. Thank you very much. :) 

  6. 5 hours ago, SkylarSpark said:

    I dont know how

    Lol I know, this is just a "test" if you will. To see if it works well

    This is one of the few apps that will disable their entire Application Advertisement system with just one function ( -(bool)showAds )

    To add a popup (just to test) add this code

    void showPopup() {
      UIAlertController *msgAlertController =
          [UIAlertController alertControllerWithTitle:@"Test"
                                              message:@"This hook works"
                                       preferredStyle:UIAlertControllerStyleAlert];
      [msgAlertController
          addAction:[UIAlertAction actionWithTitle:@"Close"
                                             style:UIAlertActionStyleDefault
                                           handler:nil]];
      [[[[UIApplication sharedApplication] keyWindow] rootViewController]
          presentViewController:msgAlertController
                       animated:YES
                     completion:nil];
    }

    And you can call this function any time to show a popup. So you can call this in your hooked function to see if it hooks correctly or if you want to confirm your tweak gets injected do this:

    %hook UIViewController
    
    -(void)viewDidLoad {
    showPopup();
    %orig();
    }
    
    %end

     

    • Winner 1
  7. What you can do to add a custom value is do:

    ADD X20, X20, #0xFF

    This would set X20 to the result of the addition of the value of X20 and the value 0xFF (255)

    You can specify your own value by converting it to hexadecimal.

     

    Note: I don't recommend using additions, since when the value will be increased over its type limit, it I'll cause it to wrap around. This means it will wrap around to its smallest value. Try setting it to a static value so your coins don't go negative at some point.

  8. Can you provide the errors that occur when you try to compile?

     

    The +/- before methods indicate their type. So when it's a + sign before the method, this means it's a class method, so the method belongs to the class and not an instance of that class. - signs before methods indicate they're instance methods, so they're not directly callable from the class but from an instance of that class.

  9. 1 minute ago, Agacy said:

    I thought there was i way to fooling it that you were on ios 11

    Yeah but if it's iOS 11 minimum it probably uses a framework not supported on my version or that was updated which I can't support. Sorry :( 

×
  • 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