Jump to content

Rook

Administrator
  • Posts

    66,289
  • Joined

  • Last visited

Everything posted by Rook

  1. Code Injection with writeData? There's nothing hard about that to make a generator in my opinion. You're just entering offsets into the Template in Tools and done. But I'd love to hear any suggestions you might have!
  2. Happy New Year iOSGods! <3

    1. Show previous comments  2 more
    2. Diversityy

      Diversityy

      Happy New Year DeeDuh

    3. --Techarmor--

      --Techarmor--

      Happy New Year DieDahh

    4. 1Jakey

      1Jakey

      THIS WAS POSTED ON THE 31 OF DECEMBER!!!

    5. --Techarmor--

      --Techarmor--

      This was posted last era ago!!!

    6. BaROCK Obama

      BaROCK Obama

      Hello from the other... year!

  3. A year ago from today, iOSGods had 35,000 members in total. Now at the end of 2015 and the beginning of 2016, we have almost 250,000 members! This is a great accomplishment for our community and we couldn't have made it this far without YOU! 2015 has been a great year and we're looking forward to make 2016 even better. But first, let's take a look back at what happened in 2015. More than 16,600 Topics were made and in these topics there have been more than 700,000 Posts, 200+ Giveaways, 2,500+ Help & Support topics answered, 700+ Hack Requests filled and lots and lots of iOS Hacks! This year has also been splendid for Cheaters thanks to the new Cheating Tools made by the iOSGods Team, some of which are: ARM to HEX Converter Online with x32 & x64 support which has successfully converted over 5,700 instructions, Binary Tools Online - allowing Cheaters to perform various actions to make hacking easier, The New Auto Lipo/LipoARM64 which facilitated the installation of cheats, our new MSHook Online Generator which was finished just today and many more! We'd also like to mention new promotions in the iOSGods Staff: @Diversityy, , @Klepto & @Raggnar! We're grateful for our industrious staff and we are grateful for all of you! The iOSGods Team wishes everyone a Happy New Year! May it be filled with Love, Happiness and many more hacks. So, here's to 2016.
  4. Another update will come tomorrow. It's some minor changes.
  5. Updated! Removed extra spaces on Tablets and Mobiles. Added "Tweak.xm" text on top of the Tweak.xm output box and fixed MSHook Function Patcher - Thumb/ARM.
  6. You don't have to use it so it can be fun for you.
  7. Go Zimon! But you do know some want to download on PC also? That link won't work for them.
  8. This is the latest project we've been working on to make everything for Cheaters easier than it was and to give you guys better hacks! This is our MSHook Generator Tools Online! Features: - Normal MSHook Tweak Generator - Normal MSHook Patcher Generator - MSHook Patcher with PSEditTextCell Generator - MSHook Patcher with PSSliderCell Generator - MSHook Function Tweak - Thumb Generator - MSHook Function Tweak - ARM Generator - MSHook Function Patcher - Thumb Generator - MSHook Function Patcher - ARM Generator - MSHook Function Patcher - Thumb with PSEditTextCell Generator - MSHook Function Patcher - Thumb with PSSliderCell Generator - MSHook Function Patcher - ARM with PSEditTextCell Generator - MSHook Function Patcher - ARM with PSSliderCell Generator - This tool is online (web-based) therefore you can access it on any device as long as you have a browser. - Ability to generate multiple times on the same output box. *MSHook with PSEditTextCell & PSSliderCell Generators also have an output box for Preferences plist file. Example Work of the MSHook Generator: And many more to come! Thanks to: - Kienn - @@Chrizk0 - @@shmoo - DiDA - And everyone else who gave their suggestions and ideas on how to improve it. Happy Hacking Everyone!
  9. Check the FAQ topic in Forum Announcements section.
  10. You want to return a custom value in a function instead of a huge amount?
  11. In this tutorial, I will show you how you can add a PSSliderCell in your Patcher/PreferenceBundle project. Step 1. Start a new theos project. Step 2: This is the code required in Tweak.xm: #import <substrate.h> #import <Foundation/Foundation.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/YOUR PLIST NAME HERE.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } inline int GetPrefInt(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] intValue]; } %hook Coins - (int)have { if(GetPrefBool(@"key1")) { // Your key name here int newValue = GetPrefInt(@"key1slider"); // Your key name here return newValue; } else { return %orig; } } %end Step 3: Now in your preferences plist file, you will need to add two cells. One is a button to toggle the PSSliderCell on/of and the other is the PSSliderCell itself. <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>iosgods.com.pouslider</string> <key>key</key> <string>key1</string> <key>label</key> <string>Enable Coins Hack</string> <!-- The text of your switch --> </dict> <dict> <key>cell</key> <string>PSSliderCell</string> <key>default</key> <integer>50</integer> <!-- Default value of the slider --> <key>defaults</key> <string>iosgods.com.pouslider</string> <!-- Your package name here --> <key>key</key> <string>key1slider</string> <!-- Your key name here --> <key>max</key> <real>99</real> <!-- Enter your maximum value here --> <key>min</key> <real>1</real> <!-- Enter your minimum value here --> <key>showValue</key> <!-- Show the value of the slider. true or false. --> <true/> </dict> Now save and compile and you should be good to go! If you have any questions or need any help, post down below.
  12. Niice one buddy!
  13. Nice find.
×
  • 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