Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. Sick! Isn't this +5 or +4 if U don't count the house feature?
  2. Both are good explained. Do whatever you like
  3. Sometimes it can be same function, I had this too which made the game bugy tho. Try sub to add & see tutorials for how to make it in a tweak please
  4. English please, thankyou.
  5. What sdks do you have? Add this to first 3 linea of your makefile & remove the ones that are almost same (should be first 3 linea) ARCHS = armv7 arm64 TARGET = iphone:clang:latest:latest CFLAGS = -fobjc-arc
  6. I don't think there's a program for that. Maybe iBackupBot but not sure
  7. Oh yea, it the second should be other key, key5. Not sure if that what makes it a error. lemme test edit: nope, doesn't fix
  8. Hi, I'm using the code for the 'Modemenu settings based' Worked fine for one function, but when I'm adding a second function it's telling me this: %end does not make sense inside a block Mostly, I do understand this 'error' when I look into my code, but now nothing works. I must see something wrong. This codes works fine: %hook AppDelegate -(void)applicationDidBecomeActive:(id)arg { if(GetPrefBool(@"key4")) { vm_writeData(0x1004316D8, 0x20008052); vm_writeData(0x1004316DC, 0xC0035FD6); vm_writeData(0x1002BE83C, 0x20008052); vm_writeData(0x1002BE840, 0xC0035FD6); } else { vm_writeData(0x1004316D8, 0xC00000B4); //Original HEX vm_writeData(0x1004316DC, 0x889F0090); //Original HEX vm_writeData(0x1002BE83C, 0xC00000B4); //Original HEX vm_writeData(0x1002BE840, 0x889F0090); //Original HEX } } %end %hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc. - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app.{ SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow]; [alert addButton: @"Visit my Channel!" actionBlock: ^(void) { [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com"]]; }]; alert.shouldDismissOnTapOutside = NO; //Dismiss alert when tapped outside? YES or NO alert.backgroundType = Blur; // Blur, Shadow or Transparent background alert.customViewColor = [UIColor redColor]; // Overwrite SCLAlertView (Buttons, top circle and borders) colors alert.showAnimationType = SlideInFromLeft; // Animation when the popup is shown. Default is SlideInFromTop //alert.hideAnimationType = SlideOutToBottom; // Animation when closing the popup. Default is FadeOut [alert showSuccess: nil // Success, Error, Notice, Warning, Info, Edit, Custom, Waiting subTitle: @"Hacked by Ted2\n" closeButtonTitle: @"Thank You" // The text on the button which closes the popup duration: 10.0f]; // Seconds until the popup auto closes. return %orig; } %end & then I add my second function, which looks like this: %hook AppDelegate -(void)applicationDidBecomeActive:(id)arg { if(GetPrefBool(@"key4")) { vm_writeData(0x1004316D8, 0x20008052); vm_writeData(0x1004316DC, 0xC0035FD6); vm_writeData(0x1002BE83C, 0x20008052); vm_writeData(0x1002BE840, 0xC0035FD6); } else { vm_writeData(0x1004316D8, 0xC00000B4); //Original HEX vm_writeData(0x1004316DC, 0x889F0090); //Original HEX vm_writeData(0x1002BE83C, 0xC00000B4); //Original HEX vm_writeData(0x1002BE840, 0x889F0090); //Original HEX } } %end %hook AppDelegate -(void)applicationDidBecomeActive:(id)arg { if(GetPrefBool(@"key4")) { vm_writeData(0x1004316F4, 0x20008052); vm_writeData(0x1004316F8, 0xC0035FD6); vm_writeData(0x1002BE89C, 0x20008052); vm_writeData(0x1002BE8A0, 0xC0035FD6); } else { vm_writeData(0x1004316F4, 0xC00000B4); //Original HEX vm_writeData(0x1004316F8, 0x889F0090); //Original HEX vm_writeData(0x1002BE89C, 0xC00000B4); //Original HEX vm_writeData(0x1002BE8A0, 0x889F0090); //Original HEX } } %end %hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc. - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app.{ SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow]; [alert addButton: @"Visit my Channel!" actionBlock: ^(void) { [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com"]]; }]; alert.shouldDismissOnTapOutside = NO; //Dismiss alert when tapped outside? YES or NO alert.backgroundType = Blur; // Blur, Shadow or Transparent background alert.customViewColor = [UIColor redColor]; // Overwrite SCLAlertView (Buttons, top circle and borders) colors alert.showAnimationType = SlideInFromLeft; // Animation when the popup is shown. Default is SlideInFromTop //alert.hideAnimationType = SlideOutToBottom; // Animation when closing the popup. Default is FadeOut [alert showSuccess: nil // Success, Error, Notice, Warning, Info, Edit, Custom, Waiting subTitle: @"Hacked by Ted2\n" closeButtonTitle: @"Thank You" // The text on the button which closes the popup duration: 10.0f]; // Seconds until the popup auto closes. return %orig; } %end First code compiles fine, second one doesn't. I gotta close the %hook AppDelgate & add a new one right? I mean otherwise it'll load the same function in one hook, which shouldn't be possible. Can anyone tell me what's wrong with the code.. Thanks
  9. You never played past 25, but you were level 64? Lmao
  10. Already reinstalled normal theos, sort of. So it's good
  11. Hi, I'm already trying to make setupkit working for like 24 hours, and I keep getting errors. Whole theos on phone damaged, so I tried it on my macbook. Same error I got one phone a few times. cannot define category for undefined class 'PSTableCell' @interface PSTableCell (SettingsKit) Anyone knows a solution, it really pisses me of..
  12. http://www.icopybot.com/blog/error-code-1-when-restore-to-ipad-or-iphone-with-ibackupbot.htm
  13. Hi there, I tried setting up Kirb's theos, since this one gets updates. I got a bunch of errors, fixed them by googling etc. Now I get this error: You do not have an SDK in /Platforms/iPhoneOS.platform/Developer/SDKs The error is right, since it's path isn't on iOS only on macbook. I've read kirbs theos is mainly for macbook, but I know people got it on their phone too. So my question, How would I fix this?
  14. iCloud activation lock?
  15. Then see the tutorial section. There are tutorials on how to unban yorself
  16. You can kind of unban yoursel. But you'll loose your data. It's like impossible to actually unban a banned from a server
  17. Turned of find my iphone?
  18. This one is sick, only the answers are helping allot.
×
  • 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