Jump to content

Fadexz

Senior Member
  • Posts

    2,205
  • Joined

  • Last visited

Everything posted by Fadexz

  1. 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.
  2. Yeah give that a try. What do you spell Theos "Theo's" lol.
  3. Just update it...
  4. @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.
  5. Okay if that already works, i'm pretty sure they are exactly the same.
  6. Oh wait, so it says otherButtonTitles, ...; meaning I can just add another to that? otherButtonTitles:(NSString *)otherButtonTitles, ...;
  7. 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
  8. Okay maybe google translate is good enough anyway.
  9. Maybe site translations would help also if you wanna go international.
  10. What does that mean? I'm on iOS 9..
  11. 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.
  12. Try using their other repo http://rasha.yourepo.com/ that one works still.
  13. No problem. BTW you didn't mention me properly but oh well.
  14. 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.
  15. 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.
  16. What would be the 3rd button code if I wanted to add a 3rd button to an UIAlertView be? After cancelButtonTitle:@"" otherButtonTitles:@"" Thanks.
  17. @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.
  18. Don't think that's the right help you should be asking for.
  19. Don't see how this is asking for help...
×
  • 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