Jump to content

Arizona94

Member
  • Posts

    29
  • Joined

  • Last visited

Everything posted by Arizona94

  1. This hack doesn't seem to be working for me. Moves, lives, and boosters are all decreasing rather than being infinite. I've tried reinstalling the IPA on several devices and the same result each time.
  2. Can anyone confirm if this method is working? Every time I try, I get the following error: Something went wrong while signing this app. Please try again later. If the issue still persists, ask for support on iOSGods.com.
  3. @Laxus Can somebody crack & upload the updated version to the iOSGods app? Then we can sideload and inject the iGameGods tool
  4. I send you a DM with the info you requested. I also ran into issues with Sideloadly. But I had no problems signing an app with a free developer account
  5. I am trying to install apps using the Apple Devloper Program install option from the iOSgods App Store. I have a paid Apple developer account. When I tap Let’s Go, I get the following message: Something went wrong while signing this app. Please try again later. If the issue still persists, ask for support on iOSGods.com. I’ve tried installing multiple apps, reinstalling the iOS gods app, and restarting my iPhone, but nothing has resolved the issue. Are there other troubleshooting steps I can try?
  6. @Laxus Would you mind updating this to the latest version of the app (1.16.1)? 😃
  7. @K_K This app has been updated to 1.1.2 now. Would you be able to update the cheat for the new version?
  8. Were you able to find a solution? I'm having the same issue on the same device
  9. Yes to this! Sad the old one no longer works
  10. Does this still work for anyone on iOS?
  11. Nevermind, I figured it out. I successfully installed app tweaks onto my non-jailbroken iPhone!!!
  12. Update: I have been able to get this working for me!! The tweak.xm file contains code for cycript and it works fine if I leave it unedited. When I deleted it and inserted my own code, the app crashes on launch. I've posted the tweak.xm code here. Where can I insert my own code? /* Bishop Fox - Theos for jailed iOS devices */ #import <dlfcn.h> #include <pthread.h> #include <errno.h> #include <objc/message.h> #import "Cycript.framework/headers/cycript.h" #include "fishhook/fishhook.h" #include "iSpy.class.h" #include "iSpy.common.h" #include "iSpy.instance.h" #include "iSpy.msgSend.common.h" #define CYCRIPT_PORT 31337 /* * Constructor */ %ctor { NSLog(@"[BF] Constructor entry"); // initialize and cache the iSpy sharedInstance. NSLog(@"[BF] Activating iSpy"); [iSpy sharedInstance]; // do nothing with the return value, just force iSpy to initialize // Start Cycript ispy_nslog("[BF] Starting Cycript. Connect by running \"cycript -r <yourIOSDeviceIP>:%d\" on your MacBook.", CYCRIPT_PORT); CYListenServer(CYCRIPT_PORT); /* * The objc_msgSend tracing feature uses a whitelist to determine which methods/classes * should be monitored and logged. By default the whitelist contains all of the methods in all * of the the classes defined by the target app. * You can add/remove individual methods and/or entire classes to/from the whitelist. * This is good for removing animations, CPU hogs, and other uninteresting crap. */ //ispy_nslog("[BF] Removing unwanted classes from msgSend whitelist"); //[mySpy msgSend_whitelistRemoveClass:@"ClassWeDoNotCareAbout"]; // Remove an individual method from the whitelist //[mySpy msgSend_whitelistRemoveMethod:@"testMethod" fromClass:@"FooClass"]; // Add a method to the whitelist //[mySpy msgSend_whitelistAddMethod:@"setHTTPBody:" forClass:@"NSMutableURLRequest"]; // Add all the methods in a single class //[mySpy msgSend_whitelistAddClass:@"NSURLConnection"]; /* * Turn on objc_msgSend tracing. * You can also turn it on/off in Cycript using: * [[iSpy sharedInstance] msgSend_enableLogging] * [[iSpy sharedInstance] msgSend_disableLogging] */ //ispy_nslog("[BF] Enabling msgSend logging to %s/Documents/.iSpy/*.log", [[mySpy appPath] UTF8String]); //[mySpy msgSend_enableLogging]; /* * Bypass SSL pinning. Uses a combination of: * - TrustMe SecTrustEvaluate() bypass * - BF's custom AFNetworking bypasses * This is disabled by default and you must enable it manually here or * in Cycript, by using: [[iSpy sharedInstance] SSLPinning_enableBypass] */ //ispy_nslog("[BF] Enabling SSL Pinning bypasses"); //[mySpy SSLPinning_enableBypass]; /* * By default the instance tracker is off. Turn it on. */ ispy_nslog("[BF] Enabling instance tracker"); [[[iSpy sharedInstance] instanceTracker] start]; /* * Now we continue with the normal load process, passing control to the app's main() function. */ ispy_nslog("[BF] All done, continuing dyld load sequence."); }
  13. That's all I need! I just want to manipulate some of the apps that I have installed. Thanks!
  14. Hello, I am very new to coding and developing tweaks, so bear with me if I make myself out to be a moron. I have a jailbroken iPhone 6 (8.4), a non-jailbroken iPhone 5 (9.1 beta), and a developer account. I successfully converted a few of my Flex tweaks using theos that work on my jailbroken device. Now I want to see if it's possible to get them onto my non-jailbroken device. I found a fork of theos for non-jailbroken devices (https://github.com/BishopFox/theos-jailed) but I don't have the knowledge/experience to use it. Is there anyone with the patience to help me out here? I can add your devices' UDIDs to my account so you can test it out and get future betas the easy way. Thanks!
×
  • 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