-
Posts
2,205 -
Joined
-
Last visited
Everything posted by Fadexz
-
Cool
-
Help/Support Is it okay to delete empty folders in iFile?
Fadexz replied to Fadexz's topic in Help & Support
I may .... or may not have had a sex change. -
Help/Support Is it okay to delete empty folders in iFile?
Fadexz replied to Fadexz's topic in Help & Support
Wanna or are we?... △ I guess we'll never know if its too good to be true... jk. -
Help/Support Is it okay to delete empty folders in iFile?
Fadexz replied to Fadexz's topic in Help & Support
Well at least I know it probably won't do anything but yeah, the only reason would be so there are as many folders listed so its easier to find stuff but yeah thanks. -
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
@TheArmQueen The app seemed to fix itself over night and it no longer crashes. Although I don't know if the UIAlertView worked because I had the tweak working with a different UIAlertView and it may have caused it to not show up again since its only a one time thing but you said once per launch so that means it should have showed up. Any idea why the Alert isn't popping up at launch? #import <substrate.h> #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> %hook PromoteViewController -(void)goBuyViews:(int)arg1 numbercoins:(int)arg2 { %orig (arg2, 5); } %end %hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc. +(void)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app. UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"READ Important!" message:@"Before using this make sure you stick to 1 active promotion per google account at one time for it not to get blocked. Views amount equals Cost amount e.g 600 coins for 100 views equals 600 views. Watch 1 video to get your 600 views, if it gets block after a day do 100 views instead (normal max). Enjoy your free unlimited Views and Likes!" delegate:self cancelButtonTitle:@"Thanks AUSSIE G4M3R!" otherButtonTitles:@"Visit iOSGods!", nil]; [igcredits show]; [igcredits release]; return %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Visit iOSGods!"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://iosgods.com/"]]; } } %end Maybe I didn't change the AppDelegate to the correct one, i'll have a look later. -
Help/Support Stuck on Yalu no GO button?! Help pleaseee
Fadexz replied to Lukus77's topic in Help & Support
I said "signed" meaning that you can restore to that version in iTunes (mostly the latest version only) which there isn't a jailbreak for 10.3.3. Yes there are current jailbreaks for iOS 10 but not the signed restorable versions (iOS 10.3.3). -
It would makes sense for them to do that and if an exploit(s) gets patched on iOS 11 then they will probably release one for iOS 10 but yeah.
-
If that doesn't work try using Apps Manger to wipe all data for the app (reset app). And if that doesn't work its probably connected to your account so you would need a new game center account if you can't delete it from inside the app.
-
If there were anything they would save it for iOS 11.
-
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
Any idea why it is causing the app to launch crash now? #import <substrate.h> #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> %hook PromoteViewController -(void)goBuyViews:(int)arg1 numbercoins:(int)arg2 { %orig (arg2, 5); } %end %hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc. - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app. UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"READ Important!" message:@"Before using this make sure you stick to 1 active promotion per google account at one time for it not to get blocked. Views amount equals Cost amount e.g 600 coins for 100 views equals 600 views. Watch 1 video to get your 600 views, if it gets block after a day do 100 views instead (normal max). Enjoy your free unlimited Views and Likes!" delegate:self cancelButtonTitle:@"Thanks AUSSIE G4M3R!" otherButtonTitles:@"Visit iOSGods!", nil]; [igcredits show]; [igcredits release]; return %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Visit iOSGods!"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://iosgods.com/"]]; } } %end Is the UIAlertView making it crash? I changed - (BOOL)application... to +(void)application... as that's what it said in Flex. Removed tweak from Cydia but app is still crashing even after reinstall? (only when jailbroken) What could possibly be causing my app to crash, is it fully uninstalled? -
No problem, at least that's my understanding of it, I haven't even touched that myself but that's what I heard.
-
Yeah if you want to do more advanced hacking like IDA you need to crack the binary to have access to the app to modify the files if you wanna have a hacked IPA. It has nothing to do with LocalIAPStore but physically modifying the app itself for free in-app purchases if you wanted to do that and if it works for that app.
-
Help/Support how do i jailbreak 9.3.3 probably
Fadexz replied to Tubbytiger88's topic in Help & Support
Yeah its pretty cool. -
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
YEP I FIXED IT! It was just the '=' that caused it. -
Help/Support Would it be safe to remove this file from Ifile?
Fadexz replied to steezy.andress's topic in Help & Support
No problem! If you reboot and its still fine you know its all good but it should be anyways. Make sure to empty the trash to get rid of it too. -
What do you mean "crack" that has nothing to do with in-app purchases, no it won't do anything its unrelated. If LocalIAPStore doesn't work then it won't work, you will need to result to using other methods of hacking like GameGem (iGameGuardian or Game Player) for changing currency values, using Flex and/or Theos or using IDA.
-
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
I added two ':' (colons) at the places it told me, now this? Is it being confused with my message? -
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
Removed @ and both " " Now this. Is it because i used symbols or something idk. IDK what it wants now. "Expected :"? -
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
There's less this time. It seems to not like my text or where the green arrows are? It's the '@'? "missing terminating character"? -
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
@TheArmQueen Awesome, thanks so much for adding the link button! -
Awesome!
-
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
Okay well i'm gonna go very soon. -
Help/Support Theos Make Errors (Now UIAlertView) [Testing]
Fadexz replied to Fadexz's topic in Help & Support
Diversityy @TheArmQueen Can you correct the line for me then?