Arizona94
Member-
Posts
29 -
Joined
-
Last visited
Everything posted by Arizona94
-
Non-Jailbroken Hack Candy Crush Saga v1.315.0 Jailed Cheats +3
Arizona94 replied to Laxus 's topic in Free Non-Jailbroken IPA Cheats
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. -
Non-Jailbroken Hack Godus v1.47.0 Jailed Cheats +1
Arizona94 replied to Laxus 's topic in Free Non-Jailbroken IPA Cheats
@Laxus Can somebody crack & upload the updated version to the iOSGods app? Then we can sideload and inject the iGameGods tool -
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?
-
Android Tool 4 Apps to Hack In-App Purchase in Android
Arizona94 replied to GGGGGGGGGG's topic in Android Tools
Thanks! -
Mod Menu Hack [ViP - Ultra Hack] Last Day on Earth: Survival v1.6.12 +22 Hacks
Arizona94 replied to Alyce's topic in ViP Cheats
Thanks -
Yes to this! Sad the old one no longer works
-
General iOSGods Hacks Compilation [All the working hacks here]
Arizona94 replied to Raggnar's topic in General Talk
thanks! -
Does this still work for anyone on iOS?
-
Help/Support Theos tweaks on non-jailbroken device with developer account
Arizona94 replied to Arizona94's topic in Help & Support
Nevermind, I figured it out. I successfully installed app tweaks onto my non-jailbroken iPhone!!! -
Help/Support Theos tweaks on non-jailbroken device with developer account
Arizona94 replied to Arizona94's topic in Help & Support
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."); } -
Help/Support Theos tweaks on non-jailbroken device with developer account
Arizona94 replied to Arizona94's topic in Help & Support
That's all I need! I just want to manipulate some of the apps that I have installed. Thanks! -
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!