Jump to content

castix

Senior Member
  • Posts

    2,379
  • Joined

  • Last visited

Everything posted by castix

  1. Poeple are blaming i0n1c because he doesn't sell his exploits to TaiG this time they ain't rip off his exploits like last year
  2. Yes. I also came across a Bluetooth Settings setup on my laptop which claimed to install some Bluetooth drivers. I was lake "Oh that must be it" but it asked me to connect a Bluetooth device and also that didn't work..
  3. Hm, thanks. I'll wait for some more replies
  4. Btw: VFP instructions means Vector Floating Point. As you can take from the title it's a float.Floating Point architecture provides floating point operations in half-, single- and double-precision floating point arithmetic. Usually they are used to increase 3D performance of games but I don't know how's that related to your Infinite Health. Are you sure the VSTR isn't flagged somewhere else
  5. Is that website trustworthy?
  6. Hello guys ! I have a Playstation 4 controller and wanted to pair it with my laptop to play some games with it but I ran into a problem. On every tutorial how to connect it it says I have to go to my Bluetooth Settings (Devices and Printers) and add a new device. Following the instructions I have to press the PS-Button and the Share button for 5 seconds until there's a white blinky light and my controller should be visible as new divice. Well, that works and I was really confident when my controller was blinking. Unfortunately when I clicked on adding a new device, my controller was just not visible or not detected whatever. This only happened to me when I tried to connect my Dual Shock 4 controller wireless. Using my micro cable and DS Tool 1.2.2 it succesfully paired but that's not the solution I want ! Have you any idea why it doesn't how up when adding the new device? Do you had the same problem? Leave some suggestions please, everything is welcome
  7. Using the search function would be useful next time - (void)activateReloadTimer { }
  8. There are reasons for it to be locked. Maybe it doesn't work anymore or it's outdated. Why should you reply to something that doesn't work
  9. No, unfortunately you can't unlock topics by giving reputation points :|
  10. Yes, I used AppHeads for it to keep it running in the background.
  11. I love you how did you find that out ? I thought the GameGem / iGameGuardian address changes every session for an item
  12. This website offers a free CoC raiding bot for all devices http://cocraidingbot.com/
  13. What's the OP Code for VSTR S0 ? This is a great website to go to http://www.8052.com
  14. Nah, that's when you want to give a custom text
  15. That is int The app just has a different name for it
  16. This has been asked before http://iosgods.com/topic/5978-need-help-with-these-arguments/ http://iosgods.com/topic/5680-return-void-function/ http://iosgods.com/topic/4249-help-with-converting-flex-void-values-to-patcher/
  17. From Andoid to computer you need to login with your Google account. Android to iOS doesn't work because Android doesn't have Gamecenter
  18. In the first step you have your function method which is - (void)vungleViewDidDisappear:(id)fp8 willShowProductView:(BOOL)fp12 See how I already added fp8 and fp12 after the argument type? You can write there anything you want instead fp8 etc. Just note that you can't use the same name more than once in a method. That's why I've named it fp12 and then fp16, fp20 etc... So let's have a look what you want to hack here. Like I said, changing id doesn't work with NSNumber or NSArray however as you have already seen it in custom alertviews, you can use NSString for it if you are 100% sure what the id does in the game. So what's left is the last boolean. Since we named it fp12 here in this example it also has the same name if you want to return it so always keep it in mind. - (void)vungleViewDidDisappear:(id)fp8 willShowProductView:(BOOL)fp12 { return %orig(fp8, fp12); } This is the default return if we wouldn't change anything but you can clearly see here how the function method is built. We have our %orig for the void, fp8 for the id and also our boolean fp12. As you guessed right, the arguments are indeed in brackets. What I will show you now does not fit to that term you know here. We are going to assign fp12 to a custom value. - (void)vungleViewDidDisappear:(id)fp8 willShowProductView:(BOOL)fp12 { fp12 = true; return %orig(fp8, fp12); } Now we set the value of fp12 (BOOl) to true the first time. You can continue like this depending on the argument count: fp8 = fp12 = fp16 = fp20 = ... You can also hack it your way - (void)vungleViewDidDisappear:(id)fp8 willShowProductView:(BOOL)fp12 { return %orig(fp8, true); } Please note that this way leads to more mismatches within the arguments so I recommend you doing it the first way. A common error would be ".. is not a function pointer ~ return 999(true, 999). The two integers would conflict with each other because iOS thinks you are giving an address. You can do whatever you want, it's up to you According to what I said above it is - (BOOL)hasDailyCapReachedForProvider:(id)fp8 zone:(id)fp12 { return true; } If you don't hack the arguments, ignore them.
  19. @@dzcracker Add #include <Foundation/Foundation.h> and replace return [[unlocktext objectForKey:@"kKey"] intValue]; with return [unlocktext objectForKey:@"kKey"];
  20. %hook SBLockScreenView - (id)_defaultSlideToUnlockText { NSDictionary *unlocktext = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"/var/mobile/Library/Preferences/preference.plist"]]; return [[unlocktext objectForKey:@"kKey"] intValue]; NSLog(unlocktext); return 0; } %end <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>Custom Unlock Text</string> </dict> <dict> <key>cell</key> <string>PSEditTextCell</string <key>default</key> <integer>preference</integer> <key>defaults</key> <string>preference</string> <key>key</key> <string>kKey</string> <key>label</key> <string></string> <key>isNumeric</key> <false/> <key>noAutoCorrect</key> <true/> </dict>
  21. I can give you 4 other ways to return an NSString if you're not satisfied with my code
  22. The class is the same. I used another method because his was outdated and not for iOS 8 ( He found it on Google).
  23. %hook SBLockScreenView - (id)_defaultSlideToUnlockText { NSString *unlocktext = @"Slide me hard"; NSLog(unlocktext); return 0; } %end
  24. That comment is even worse. 1. There is no thing such as a preferencepatcher, also not a preference patcher. 2. It's a Preference Bundle (Preference pane in your Preferences.app) 3. Your code has nothing to do with a Preference Bundle 4. Nothing you said above has to do with a Preference Bundle
×
  • 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