Jump to content

AnotherLurker

Senior Member
  • Posts

    1,093
  • Joined

  • Last visited

Everything posted by AnotherLurker

  1. all of those suggestions work work, and most likely crash the game
  2. 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
  3. Gh0stByte's Family is in despair :( , Please Pray! :)

  4. Once Updated, an iPhone 4s cannot be downgraded. /locked
  5. @@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
  6. @@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); } }
  7. @@ZahirSher er... *awkward silence*
  8. @@ZahirSher Happy Birthday
  9. yo @@TheOnlySkiff69
  10. MYHACKNAME_FRAMEWORKS = UIKit in Makefile
  11. @@Laxus really?, with syscall patched? try brothers in arms 3, me and Swag had it crash on our devices
  12. @ he already understands arm, no need to go through all that outdated crap @@Shmoo419 hmmm... me and Swag had the same issue with Brothers In arms 3... trying disabling calls to _dlsym
  13. Add this in your Tweak.xm: #import <UIKit/UIKit.h>
  14. @@KingRalph It is Objective-C, He's not hooking any methods so he doesn't need %hook
  15. @@Laxus LOL @@DiDA
  16. @@KingRalph STR is a ARM function that is used to store values in memory, When u have a function like str r0, [r1, #0x99], what the computer does, is it grabs the value of r0, and stores it into R1 at the address 0x99 in memory. Changing the address to 0x0 (0) will without a doubt cause a crash, as the program would be modifying section of memory that probably doesn't even exist. Same goes for NOPing an STR, sooner or later, some function will try to access the amount stored at the register at the memory address, and crash, since the value is not present. When we hack, we changes R0 to another register so when the program stores the values, it will store a higher value from the other register, into a register at a memory location, which could hold currency, energy, health, damage, stats etc etc.
×
  • 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