-
Posts
2,205 -
Joined
-
Last visited
Everything posted by Fadexz
-
The apps can't fully prevent you from faking your location. Could you please explain your question in one simple question, IDK what you are exactly asking for.
-
Yeah give that a try. What do you spell Theos "Theo's" lol.
-
Just update it...
-
@staybizzy Try this which I found somewhere. export TARGET := iphone:clang:8.4:6.1 export 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. IDK. If it doesn't work its probably your Theos missing stuff or someone else may know what is happening.
-
Help/Support How do I add a 3rd option to an UIAlertView?
Fadexz replied to Fadexz's topic in Help & Support
Oh wait, so it says otherButtonTitles, ...; meaning I can just add another to that? otherButtonTitles:(NSString *)otherButtonTitles, ...; -
Destiny Item Manager allows you to transfer items between each of your characters and your vault in real-time. Is recommended for transferring items on the go. Website: https://app.destinyitemmanager.com
-
Awesome!
-
iOSGods Goes International! Italiano, Français, Sverige & More!
Fadexz replied to Rook's topic in Forum Announcements
Okay maybe google translate is good enough anyway. -
iOSGods Goes International! Italiano, Français, Sverige & More!
Fadexz replied to Rook's topic in Forum Announcements
Maybe site translations would help also if you wanna go international. -
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...