Jump to content

AnotherLurker

Senior Member
  • Posts

    1,093
  • Joined

  • Last visited

Everything posted by AnotherLurker

  1. @@DiDA its %orig(); not return %orig;
  2. I just realized why: add this: %orig();
  3. actually the reason for the comparatively "small" sdks for iOS 8 < is because apple has stripped the binaries of any info, making them useless, you should still have all the errors, but i suggest you use the iOS 7.1 SDK, which has no issues like this, and will run on iOS 8 just fine.
  4. isn't this visual?
  5. when you see char in a header, it usually means that is a BOOL the reason being, is that BOOL is a typedef for char so: %hook ClassName -(BOOL)isCorrect { return true; } %end @@DiDA ur answer won't do anything because that method doesn't have any BOOL arguments
    1. K3NNNY
    2. Rook

      Rook

      Best song ever

    3. Rook

      Rook

      I remember this when the first Shrek movie came out :')

  6. Stop using Flex Cloud its the same as leeching
  7. all of those suggestions work work, and most likely crash the game
  8. u need to add a } before the - (void)link method, without it, ur essentially adding - (void)link method inside another method itself like this: #import <Preferences/Preferences.h> #import <UIKit/UIKit.h> @interface BraveFrontierCheats1241ListController: PSListController { } @end @implementation BraveFrontierCheats1241ListController - (id)specifiers { if(_specifiers == nil) { _specifiers = [[self loadSpecifiersFromPlistName:@"BraveFrontierCheats1241" target:self] retain]; } return _specifiers; } - (void)link { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iosgods.com/topic/4158-VIP-exclusive-brave-frontier-global-1241-14/"]]; } @end
  9. Gh0stByte's Family is in despair :( , Please Pray! :)

  10. Once Updated, an iPhone 4s cannot be downgraded. /locked
  11. @@castix u can't return a value unless the value is a function with parameters %hook ClassName - (BOOL)affordProduct:(id)fp8 withCurrency:(int)fp12 { return true; } %end you don't need to modify the currency, u can just return true to always afford a product no matter what @@tigger
  12. @@Gh0stByte Oh my goodness.... why do iOSGods coders always do everything the inefficient way!?! For the keys use this: #define PLIST_PATH @"/var/mobile/Library/Preferences/YOUR_PLIST_NAME.plist" NSDictionary *dict; inline BOOL GetPrefBool(NSString *key) { return [dict[key] boolValue]; } then call is by GetPrefBool(@"kSomeKey"); You also only need one %ctor Example: %ctor{ dict = [NSDictionary dictionaryWithContentsOfFile:PLIST_PATH]; if(GetPrefBool(@"kSomeKey")) { writeData(0xBlah, 0xBlah); }else { writeData(0xBlah, 0xBlah); } if(GetPrefBool(@"kOtherKey")) { writeData(0xBlah, 0xBlah); } }
  13. @@ZahirSher er... *awkward silence*
  14. @@ZahirSher Happy Birthday
  15. yo @@TheOnlySkiff69
×
  • 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