Jump to content

Pro

Senior Member
  • Posts

    1,587
  • Joined

  • Last visited

Everything posted by Pro

  1. It gets rid of the 0 you put. As to why it can't access it, I don't know. Try putting it in again without the 0 after 0x
  2. No problem, and thanks
  3. I know, that's why you're in the credits
  4. DiDA sent it to me and nothing seemed wrong with it. The only problem is that it doesn't seem to work with applicationDidFinishLaunching methods, which kind of sucks
  5. Cheaters, are you tired of having to use the same old credit pop-ups in your tweaks/patchers? Today, I'm going to show you how to go from this to this Requirements: Theos iFile/iFilza/Whatever (I prefer iFile for this) Knowledge on making a tweak RKDropdownAlert files Instructions: 1. Download the files for RKDropdownAlert here: https://www.dropbox.com/s/6i04lvg9tea18ls/RKDropdownAlert.zip?dl=0 2. Have a project made from Theos. This can be a new/old one; it won't matter. In my case, I will be making a new project, using the template found here: https://iosgods.com/topic/6289-update-13template-custom-cscsci-nictheos-template/ 3. Take the files you downloaded, unarchive them, and copy them into your project folder. Your project folder should look like this after doing so if you use the template provided above: 4. Remove everything that's in the Tweak.xm, unless you plan on making a tweak with the project that you have. If that's the case, please have 5. Now that you have everything you want removed, add this to the top of your Tweak.xm #import "RKDropdownAlert.h" @interface AppDelegate : NSObject <RKDropdownAlertDelegate> @end @implementation AppDelegate -(BOOL)dropdownAlertWasDismissed { return YES; } -(BOOL)dropdownAlertWasTapped:(RKDropdownAlert*)alert; { return true; } @end Change "AppDelegate" to whatever class you're using for your credits pop-up. 6. Go add eveything else you want in your tweak, features for some hack, whatever. After you're done with that (if you even did anything), add this to the bottom of your Tweak.xm %hook AppDelegate -(void)applicationDidBecomeActive:(id)argument { [RKDropdownAlert title:@"RKDropdownAlert Test" message:@"Isn't this better than UIAlertView?" backgroundColor:[UIColor yellowColor] textColor:[UIColor orangeColor] time:10]; return %orig; } %end You can change the text by simply changing what's inside the quotations. I will leave it for now. You can also change the colors of the background and text of the view. Where it says [uIColor yellowColor] as well as orange, there is a list of default colors found here: http://foobarpig.com/iphone/uicolor-cheatsheet-color-list-conversion-from-and-to-rgb-values.html. With that, you can change yellow and orange to whatever's on there, except for clear, otherwise you won't see your view/text! 7. In your Makefile, find the line that says ProjectName_FILES = Tweak.xm, and add RKDropdownAlert.m (ProjectName is of course the name of the project you made) After you've done this, this is what your Makefile should look like, if you've used the template: 8. After that, you can compile it and test it on whatever app you use it on! Credits: @Pro (Me) for showing this to you guys @DiDA for showing this to me and having me make this tut @0xBL4Z3R He pretty much started it all
  6. Get GDB from radare's repo, http://cydia.radare.org For sub_x games, you will need to plug your device to your computer
  7. Yeah, try it as a regular tweak or something to test, then add it into your next patcher
  8. You should be able to return them the same way as an int, but I'm not too sure about a negative number
  9. You can't downgrade. All previous iOS firmwares haven't been signed by Apple in a while.
  10. I miss RaisinToast. Only DiDA would understand

    1. Show previous comments  1 more
    2. Goggwell

      Goggwell

      You're right. I don't understand

    3. Pro

      Pro

      Diversityy: Yes the alert. Gave up on it a couple months ago.

      Shmoo: I forgot I showed it to you (I believe)

    4. Diversityy

      Diversityy

      If I have free time, I can try to get it working and hopefully, teach you how to.

    5. Rook

      Rook

      FireCubes was going to make a tutorial about it last I saw him :p

  11. This will be so useful!
  12. Have you followed this tut? https://iosgods.com/topic/1737-tutorial-how-to-add-psedittextcell-in-a-patcher/
  13. -(void)setTime:(double)fp8 { %orig(xxx.x); } xxx would be whatever number you want
  14. What was the point of the topic?
  15. Either stay on 8.3, or upgrade to 9.2.1 now and wait for it.
  16. From what I've heard, Saurik has a beta of Cydia Impactor for iOS 9.
  17. https://www.dropbox.com/s/8p4omu0ey9pgiyu/include.zip?dl=0
  18. https://www.dropbox.com/s/haxrgsuowp9zer0/Preferences.zip?dl=0 Here's a Preferences folder. Just unzip and put it in /var/theos/include
  19. Nah, there's already another site if we all move to Android
  20. Good thing I'm staying on 8.4
×
  • 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