-
Posts
4,939 -
Joined
-
Last visited
Everything posted by Ted2
-
Stop making a new topic every time. Just answer us (me this time) in your own topic. Does iTunes recognize ur phone?
-
Using your cable
-
Take over Joka's club & access Joka's account & take a shower at like this time..
-
MTerminal would work fine.
-
Get a terminal from cydia type: su password: alpine then run this command & try again: apt-get purge com.tigisoftware.filza
-
Driving School 2017 By Alexandru Marusac v1.1.0com.ovilex.drivingschool2017Requires: iOS 9.0 or later.Price: FreeUpdated: 2017-07-25T17:46:51ZiTunes URL: https://itunes.apple.com/us/app/driving-school-2017/id1199437523?mt=8&uo=4&at=1010lce4 Hack Requirements - Jailbroken or Non-Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. Hack Features - 987654321 Coins - 987654321 xp - All Cars Unlocked - No ads (best feature lol) Hack Download Link [Hidden Content] Installation Instructions STEP 1: Open the app, play it for a bit then close it from multitasking/app switcher. STEP 2: Download the modded file(s) from the download link above. STEP 3: Unzip if necessary then copy & paste the files/folders to: For users on iOS 7 and lower: /User Applications/AppName using iFunBox or /var/mobile/Applications/AppName using iFile/Filza. Jailbroken or Non-Jailbroken iOS 8 and lower, Jailbroken iOS 9, iOS 10 and higher users: /User Applications/AppName using iFunBox or /var/mobile/Containers/Data/Application/AppName using iFile/Filza. Non-Jailbroken iOS 8.3, 8.4, 9.0, 10.0 and higher need to follow this tutorial: How to Apply Save Game Cheats on Latest iOS Versions! STEP 4: Overwrite the old files with the new hacked ones then open the app. NOTE: It is highly suggested that you backup your original app files before replacing them with these modified ones. If you have any questions or problems, read our Frequently Asked Questions topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits - @Ted2 Hack Screenshots
- 386 replies
-
- 517
-
-
-
-
-
-
-
I tagged you in a post, read it
-
@Joka @Doesthismatter
-
Mov = move value into R sub = substract value into R add = add value into R R=register The s doesn't make a diffrence
-
Hack Kim Kardashian v6.6.0+ + 6 Cheats [Infite Cash, Energy etc]
Ted2 replied to Ted2's topic in Free Jailbreak Cheats
When it gets to 0, reopening the app should work too.. -
APK Mod Potion Punch v5.0.2 +4 [Unlimited Currencies]
Ted2 replied to Joka's topic in Free Android Modded APKs
ohh, sick -
APK Mod Potion Punch v5.0.2 +4 [Unlimited Currencies]
Ted2 replied to Joka's topic in Free Android Modded APKs
ur screenshot says u got negative items -
So noob ;(
-
What do you mean by not working? Are you still jailbroken? if not, jbme doesn't jailbreak, it activates the jailbreak again. if you fully need to jailbreak, download the .ipa from Pangu site & install it using cydia impactor.
-
hacker
-
What kind of folder are you talking about. Now I have to guess, and that's useless.
-
Save Game Last Day On Earth: Zombie Survival 1.4.6 +4
Ted2 replied to Poler's topic in Save Game Cheats
Sick! Isn't this +5 or +4 if U don't count the house feature? -
Both are good explained. Do whatever you like
-
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
-
English please, thankyou.
-
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
-
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
-
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