Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. Well that's not a app. You have to open LDOE in order to see the Mod Menu popup. Nope, that's not what he meant
  2. Deb files op apps? Example?
  3. & It's because of the hack it makes it harder to win? Lol
  4. Your JB must be broken then. Why lose when time runs out? The enemy couldn't done you any damage.
  5. Updated hack: Shadow Fight 3 By Nekki Limited com.nekki.shadowfight3 Requires: iOS 9.0 or later. Price: Free Updated: 2018-06-13T12:35:36Z iTunes URL: https://itunes.apple.com/us/app/shadow-fight-3/id964827011?mt=8&uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: - Frozen Enemy Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If the hack is a Mod Menu, the cheat features can be toggled in-game. STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game. NOTE: If you have any questions or problems, read our Troubleshooting topic & 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 Cheat Video/Screenshots: N/A
  6. Wtfff, it works . Must be a coincidence
  7. I think that will result into a crash
  8. Idk if this works online Ghostbin: https://ghostbin.com/paste/swwou Site Code Box: //arm64 sh!t - shmoo's code. You can also use orignal MSHook thingy. uint64_t getRealOffset(uint64_t offset){ return _dyld_get_image_vmaddr_slide(0)+offset; } //original value or smth lul void(*old_UpdateEnemy)(void *instance) = nil; // make function of UpdateEnemy offset void UpdateEnemy(void *instance) { if(1 != 1) { //without this IF statement, both me & my enemy would freeze (don't ask me why this fixes it, I figured by accident) *(bool *)((uint64_t)instance + 0xF8) = TRUE; // 0xF8 variable = bool isDead } } %ctor { MSHookFunction((void*)getRealOffset(0x10042B5A4),(void*)UpdateEnemy,(void**)&old_UpdateEnemy); // Class: Module, Function: UpdateAi } OR: 0x10042B5A4 (UpdateAi function) to RET --> Thanks to @Joka Credits: @Ted2 & @shmoo's tutorial ofc
  9. Fill in the standard template. Don't be lazy.
  10. Make a request in the mod request section ??‍♂️
  11. Yep the app requires ios 11. However, I heard iOS 10 should support the app. So change the info.plist yourself & see if that works out.
  12. New features: Spend monkey money & it will increase instead of decrease. Unlimited Lives --> Balloon gets past, lives will increase instead of decrease (y)
  13. My IPA is broken from what I've heard Also, spendmonkeymoney doesn't work
  14. Make sure you're on ios 11, if so, you should be able to install the IPA using Filza. If not, try impactor instead.
  15. Ios 9 isn't supported Possible, yes. However, I can't add Unlimited Monkey Money then cause it should be able to enable & disable.
  16. Fixed code: void Update(void *cheats) { if(![menu isSwitchWithIdentifierActive: @"Money"]) { old_Update(cheats); } else { add_Money(cheats); } }
  17. Updated hack: Bloons TD 6 By Ninja Kiwi com.ninjakiwi.bloonstd6 Requires: iOS 11.0 or later. Price: $4.99 Updated: 2018-06-14T07:00:00Z iTunes URL: https://itunes.apple.com/us/app/bloons-td-6/id1118115766?mt=8&uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Get the cracked IPA from iPhoneCake.com or AppCake! Hack Features: Unlimited In Game Cash Add Cash Unlimited Monkey Money Unlimited Knowledge Points Unlimited Lives (Hearts) Remove All Bloons --> FIXED Level Hack No Power Cooldown All Heroes Unlocked All Towers Unlocked All Upgrades Unlocked Please read the description of the features in the Mod Menu by long pressing the feature. Hack Download Link: [Hidden Content] IPA Hack: Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If the hack is a Mod Menu, the cheat features can be toggled in-game. STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game. NOTE: If you have any questions or problems, read our Troubleshooting topic & 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: - @Joka - @Ted2 Cheat Video/Screenshots:
  18. Hi.. So I again (actually still) have issues with isSwitchWithIdentifierActive option in iGMenu. This is the code I used: void (*add_Money)(void *cheats) = (void (*)(void *))getRealOffset(0xOffset); //original value or smth lul void(*old_Update)(void *cheats) = nil; bool isFeatureActive = false; // make function of LateUpdate offset void Update(void *cheats) { if(isFeatureActive == false){ old_Update(cheats); } else { add_Money(cheats); } } //under void startAuthentication() { MSHookFunction((void*)getRealOffset(0xOffset),(void*)Update,(void**)&old_Update); //Class: SomeClass -> Func: LateUpdate isFeatureActive = [menu isSwitchWithIdentifierActive:@"Switch1"]; [menu addSwitchWithIdentifier:@"Switch1" title:@"Add Money" description:@"Enable me for something awesome!"]; //under listener changes: isFeatureActive = [menu isSwitchWithIdentifierActive:@"Switch1"]; This does not work at all, however if I use this code, it does work perfectly fine. void Update(void *cheats) { if(1 < 2){ add_Money(cheats); } old_Update(cheats); } Any idea what might issue the first code?
×
  • 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