-
Posts
2,205 -
Joined
-
Last visited
Everything posted by Fadexz
-
Help/Support How do I add a 3rd option to an UIAlertView?
Fadexz replied to Fadexz's topic in Help & Support
What does that mean? I'm on iOS 9.. -
Help/Support Any working Instagram followers apps?
Fadexz replied to Tippy's topic in Help & Support
Awesome! -
Try not to mess with it. Also please click the code button to show it like this its a lot easier to read. Tweak.xm #import <substrate.h> #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> %hook SBPowerDownController -(void)orderFront{ UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Hello" message:@"Noooo" // IDK if it supports emojis, I think it does but try without first. delegate:self cancelButtonTitle:@"Okay" otherButtonTitles:@ nil]; [alert show]; } %end Make file ARCHS = armv7 arm64 include theos/makefiles/common.mk TWEAK_NAME = Biztweak // Make sure "Biztweak" is still the name of your tweak folder name. Biztweak_FILES = Tweak.xm include $(THEOS_MAKE_PATH)/tweak.mk Biztweak_FRAMEWORKS = UIKit CFLAGS = -w after-install:: install.exec "killall -9 SpringBoard" // Try removing this line if it doesn't work as it can cause compiling issues. Try not to change it. I recommend you delete your iOS 8 SDK because it seems to be wrong a bit. I think that's all right, just replace it with the current one.
-
Yep
-
No problem. BTW you didn't mention me properly but oh well.
-
Had to look it up because I forgot the location. Go to '/var/mobile/Library/Preferences' Open 'com.rpetrich.videopace.plist' with Property List Viewer Scroll to bottom and set 'VPRateFactor' to e.g 100 (100 makes it 10000% (x100) speed) (Mine is on 1000) Then just reboot your device to apply the setting.
-
I made the script easy to edit or identify, every 3 spaced lines is 1 account or a repeat other then it selects the next account. Just delete most of the script from the end until there is only the first 5 bits with 3 spaces if you want only 5 accounts. Though the end of the script is suppose to scroll back up to the start or first account but you can just record your touch of you scrolling up then paste it into the other script unless of course 5 accounts fit on-screen without scrolling then you don't need to do that.
-
What would be the 3rd button code if I wanted to add a 3rd button to an UIAlertView be? After cancelButtonTitle:@"" otherButtonTitles:@"" Thanks.
-
@staybizzy BTW make sure to quote or mention me for me to see it. "aliased.pm line 42" I think I get that too, it might be a minor error, as long as your tweak is successfully compiled into a deb file. #import <substrate.h> #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> %hook SBPowerDownController -(void)orderfront{ UIAlertView *alert = [UIAlertView alloc]initwithtitle:@"Bizzy" message:@"??" delegate:self cancelButtonTitle:@"Dismiss" Otherbuttontitles:nil]; [alert show]; } %end That looks a little nicer and might actually work then. You may want someone else to confirm that as i'm not the most experienced but it looks right.
-
Don't think that's the right help you should be asking for.
-
Help/Support How to install using lower install tweak
Fadexz replied to Mr Pirates's topic in Help & Support
No problem. -
Don't see how this is asking for help...
-
@habibhabib No problem!
-
@thanksiosgods I suggest contacting him via message on his profile since you haven't received your VIP yet.
-
You can also use iFile but Filza will give you the names of the apps instead of the folder app name's ID.
-
Help/Support Ios 10.2 jaillbroken device restarts on its own
Fadexz replied to Shanix's topic in Help & Support
@Shanix I suggest you install 'Crash Reporter' and it might show the cause of your crashes. I do get random reboots overnight waking up with it being un-jailboken, unsure how it happens but it does happen sometimes probably from a tweak. -
It's as easy as it gets. BTW the flashing in your gif is a little over the top.
-
Awesome, can't wait for your first hack!
-
Help/Support A good site to install cracked ipa's?
Fadexz replied to datagen 's topic in Help & Support
A good and popular one is www.tweakboxapp.com -
@Setbling Yeah the tweak name would be nice so we can see what is happening.
-
Nice you got it working.