Jump to content

Rook

Administrator
  • Posts

    65,820
  • Joined

  • Last visited

Everything posted by Rook

  1. Go Zimon! But you do know some want to download on PC also? That link won't work for them.
  2. 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!
  3. Check the FAQ topic in Forum Announcements section.
  4. You want to return a custom value in a function instead of a huge amount?
  5. 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.
  6. Nice find.
  7. Thanks for sharing.
  8. Ahah. Nice. Time to find a credit card now.
  9. There is still one more $10 iTunes Gift Card to be won. Check here: http://iosgods.com/topic/21769-10-itunes-giftcard-giveaway-riddlepuzzle-2/
  10. The giveaway has ended now. It's been running long enough and only 1 iTunes Gift Card was left to be found. The 4 winners of 1 Year ViP prize are: @@iampatricktan @@Insanitised @ @ The winners of x4 $10 iTunes Gift cards are: @@-King @@Damian @@DeathToAll32211 @@BlazinDarkness I have messaged all iTunes Gift Card winners so they can redeem their prize. All ViP winners have been promoted. Thanks for celebrating our 200,000 Members milestone with us! Stay tuned to iOSGods for more great things!
  11. You can save the changes, what do you mean?
  12. It probably won't bear Star Wars though but it will be there at the top.
  13. Can't wait for February the 12th.
×
  • 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