Jump to content

 Something great is coming! 🤖

Stay tuned for the big reveal happening here on iOSGods on the 20th of February!

The countdown has finished!

26 posts in this topic

Recommended Posts

Posted (edited)

This is what happens when you leave too many hooked functions in your tweak.xm

image.png

image.png


Help me :(

 

 

 

 

 

 

My tweak.xm:

 

#include <substrate.h>
 
%hook TNDRAppDelegate
 
-(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {
UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"Tinder Hack!"
message:@"Hack contains Tinder Plus, Unlimited boosts & AntiJB. Made by Joka on iOSGods." delegate:nil cancelButtonTitle:@"Thank you!"
otherButtonTitles:nil];
[alert show];
[alert release];
return %orig;
}
 
%end
 
%hook TNDRCurrentUser
-(bool) isTinderPlusSubscriber {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(bool) isTinderPlusEnabled {
return TRUE;
}
%end
 
%hook TNDRGroupCardCellManager
-(bool) shouldAllowUndoButtonForPlusUsers {
return TRUE;
}
%end
 
%hook TNDRProductsManager
-(bool) isTinderPlusActive {
return TRUE;
}
%end
 
%hook TNDRBoostSummaryViewController
-(bool) isTinderPlusSubscriber {
return %orig;
}
%end
 
%hook TNDRCurrentUser
-(bool) isTinderPlusRecentlyExpired {
return TRUE;
}
%end
 
%hook TNDRPlusControlViewModel
-(bool) isTinderPlusSubscriber {
return TRUE;
}
%end
 
%hook TNDRPlusControlViewModel
-(void) setIsTinderPlusSubscriber:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRAppBoyTracker
-(void) setIsTinderPlusSubscriber:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRHomeViewModel
-(bool) isCurrentUserTinderPlusSubscriber {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(long long) superLikesRemaining {
return 999999999;
}
%end
 
%hook TNDRNewMatchCollectionViewCell
-(void) showSuperLikeStar:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRChatCell
-(void) setAllowLikes:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRCurrentUser
-(bool) isBoostFeatureEnabled {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(bool) superLikeAvailable {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(bool) hasPurchasedBoost {
return TRUE;
}
%end
 
%hook CLSAnalyticsMetadataController
+(bool) hostJailbroken {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(bool) isBoostCurrentlyActive {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(bool) showBoostViewCount {
return TRUE;
}
%end
 
%hook TNDRBoostSummaryViewController
-(id) initWithMultiplier:(double)arg1 boostDuration:(long long)arg2 isTinderPlusSubscriber:(bool) {
arg3 = TRUE;
arg2 = 999999999;
arg1 = ;
return %orig;
}
%end
 
%hook TNDRCurrentUser
-(long long) boostDurationInMinutes {
return 999999999;
}
%end
 
%hook TNDRCurrentUser
-(bool) superLikeLimitExceeded {
return TRUE;
}
%end
 
%hook TNDRStackLayout
-(bool) isRewindingForSuperLikeLimitExceeded {
return TRUE;
}
%end
 
%hook TNDRStackLayout
-(void) setRewindingForSuperLikeLimitExceeded:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRPurchasesModel
-(void) setBoosts:(id)arg1 {
return %orig;
}
%end
 
%hook TNDRCurrentUser
-(double) boostMultiplier {
return 999;
}
%end
 
%hook TNDRCurrentUser
-(long long) boostRemaining {
return 999;
}
%end
 
%hook TNDRBoostSummaryViewController
-(void) getTinderPlus:(id)arg1 {
return %orig;
}
%end
 
%hook TNDRBoostSummaryViewController
-(long long) boostDuration {
return 99;
}
%end
 
%hook TNDRBoostGamepadButton
-(void) updateProgressToPercent:(double)arg1 duration:(double) {
arg1 = 10;
arg2 = 10;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(long long) buttonState {
return 10;
}
%end
 
%hook TNDRBoostGamepadButton
-(bool) canUseMultiplier {
return TRUE;
}
%end
 
%hook TNDRBoostGamepadButton
-(double) percentageOfBoostCounter {
return 10;
}
%end
 
%hook TNDRBoostGamepadButton
-(double) interpolatedBoostValueForDuration {
return 10;
}
%end
 
%hook TNDRBoostGamepadButton
-(id) progressCirclePathWithPerc:(double)arg1 {
arg1 = 10;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(double) timeRemaining {
return 10;
}
%end
 
%hook TNDRBoostGamepadButton
-(void) setProgressPercentage:(double)arg1 {
arg1 = 10;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(void) animateForDemoWithButtonPress:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(id) initWithButtonType:(unsigned long long)arg1 gamepadType:(unsigned long long)arg2 isMainButton:(bool) {
arg1 = 10;
arg2 = 10;
arg3 = TRUE;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(void) setAnimating:(bool)arg1 animated:(bool)arg2 completion:(id) {
arg1 = TRUE;
arg2 = TRUE;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(id) initWithButtonType:(unsigned long long)arg1 gamepadType:(unsigned long long) {
arg1 = 10;
arg2 = 10;
return %orig;
}
%end
 
%hook TNDRCurrentUser
-(bool) hideAds {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(bool) hideDistance {
return %orig;
}
%end
 
%hook TNDRCurrentUser
-(bool) hideAge {
return TRUE;
}
%end
 
%hook TNDRCurrentUser
-(bool) selectEnabled {
return TRUE;
}
%end
 
%hook TNDRPlusOptionCell
-(void) setSelected:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRCurrentUser
-(bool) hasBoostRecentlyEnded {
return TRUE;
}
%end
 
%hook TNDRBoostInProgressDialogViewController
-(double) timeIntervalRemaining {
return 120;
}
%end
 
%hook TNDRBoostInProgressDialogViewController
-(id) countdownTextForTimeRemaining:(double)arg1 {
arg1 = 99999;
return %orig;
}
%end
 
%hook TNDRAnalyticsTracker
-(void) saveAnalyticsDataForSelectedBoostPaywallPurchase:(id)arg1 hasPlus:(bool)arg2 price:(id)arg3 locale:(id)arg4 products:(id)arg5 amount:(long long)arg6 encounteredFrom:(unsigned long long)arg7 timeRemaining:(id)arg8 boostRemaining:(long long)arg9 basePrice:(id) isPrimary:(bool) {
arg2 = TRUE;
arg9 = 150;
return %orig;
}
%end
 
%hook TNDRAnalyticsTracker
-(void) trackBoostSummaryViewWithPlus:(bool)arg1 boostID:(id)arg2 boostRemaining:(long long) {
arg1 = TRUE;
arg3 = 150;
return %orig;
}
%end
 
%hook TNDRAnalyticsTracker
-(void) trackBoostPaywallSelectWithPlus:(bool)arg1 timeRemaining:(id)arg2 sku:(id)arg3 amount:(long long)arg4 from:(unsigned long long)arg5 price:(id)arg6 locale:(id)arg7 products:(id)arg8 boostRemaining:(long long)arg9 basePrice:(id) isPrimary:(bool) {
arg1 = TRUE;
arg9 = 150;
return %orig;
}
%end
 
%hook TNDRAnalyticsTracker
-(void) trackBoostPaywallViewWithPlus:(bool)arg1 timeRemaining:(id)arg2 products:(id)arg3 from:(unsigned long long)arg4 boostRemaining:(long long) {
arg5 = 150;
return %orig;
}
%end
 
%hook TNDRAnalyticsTracker
-(void) trackBoostPaywallCanceWithPlus:(bool)arg1 timeRemaining:(id)arg2 products:(id)arg3 from:(unsigned long long)arg4 boostRemaining:(long long) {
arg5 = 150;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(void) setAnimating:(bool)arg1 animated:(bool) {
arg1 = TRUE;
arg2 = TRUE;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(void) setAnimateUsers:(bool)arg1 {
arg1 = TRUE;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(void) animateForBoostEndedMultiplier:(double)arg1 {
arg1 = 999;
return %orig;
}
%end
 
%hook TNDRBoostGamepadButton
-(bool) animateUsers {
return TRUE;
}
%end
 
%hook TNDRCardCellManager
-(bool) shouldAllowUndoButtonForPlusUsers {
return TRUE;
}
%end
 
%hook TNDRAdCardCellManager
-(bool) shouldAllowUndoButtonForPlusUsers {
return TRUE;
}
%end
 
%hook TNDRUserCardCellManager
-(bool) shouldAllowUndoButtonForPlusUsers {
return TRUE;
}
%end
Updated by Joka
  • Replies 25
  • Created
  • Last Reply

Top Posters In This Topic

Posted

Let me know if it worked or some errors

Will do :p

Let me know if it worked or some errors

Nah, didn't work :(

Gave me no errors tho...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Rise of Hexpires: New Age v 1.1 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Rise of Hexpires: New Age By Hook Games Limited
      Bundle ID: com.hook.axeofhexpires
      App Store Link: https://apps.apple.com/us/app/rise-of-hexpires-new-age/id6754462479?uo=4

      🤩 Hack Features

      - Unlimited Gold
      - Unlimited Battle Resources
      • 0 replies
    • Rise of Hexpires: New Age v 1.1 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Rise of Hexpires: New Age By Hook Games Limited
      Bundle ID: com.hook.axeofhexpires
      App Store Link: https://apps.apple.com/us/app/rise-of-hexpires-new-age/id6754462479?uo=4

      🤩 Hack Features

      - Unlimited Gold
      - Unlimited Battle Resources
      • 0 replies
    • Tiny Heroes: Idle Boss Fight v1.4.3 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Tiny Heroes: Idle Boss Fight By GOECORUSH Media, s. r. o.
      Bundle ID: com.vivuga.herotycoon
      App Store Link: https://apps.apple.com/us/app/tiny-heroes-idle-boss-fight/id6758800990?uo=4

      🤩 Hack Features

      - Unlimited Currency
      - Unlimited Resources
      - ADS No / Use Luna ADS Blocker
      • 0 replies
    • Tiny Heroes: Idle Boss Fight v1.4.3 [ +2 jailed ] Currency Max
      Modded/Hacked App: Tiny Heroes: Idle Boss Fight By GOECORUSH Media, s. r. o.
      Bundle ID: com.vivuga.herotycoon
      App Store Link: https://apps.apple.com/us/app/tiny-heroes-idle-boss-fight/id6758800990?uo=4

      🤩 Hack Features

      - Unlimited Currency
      - Unlimited Resources
      - ADS No / Use Luna ADS Blocker
      • 0 replies
    • Icy Village: Survival Idle v4.4.0 +2++ Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Icy Village: Survival Idle By AppQuantum Publishing Ltd
      Bundle ID: com.unimob.icy.village
      iTunes Store Link: https://apps.apple.com/us/app/icy-village-survival-idle/id6470175895?uo=4


      Hack Features:
      - Unlimited Currencies -> Will increase instead of decrease.


      Jailbreak required hack(s): [Mod Menu Hack] Icy Village: Tycoon Survival ( All Versions ) +2++ Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 39 replies
    • Thronefall - A Little Kingdom v2.12.17 +5 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Thronefall - A Little Kingdom By Doghowl Games Ltd
      Bundle ID: com.doghowlgames.thronefall
      App Store Link: https://apps.apple.com/us/app/thronefall-a-little-kingdom/id6744029320?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Unlimited Coins -> Will increase instead of decrease.
      - Free In-App Purchases
      • 69 replies
    • Resident Evil Survival Unit v1.4.3 +6 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Resident Evil Survival Unit By Aniplex Inc.
      Bundle ID: com.aniplex.resu
      App Store Link: https://apps.apple.com/us/app/resident-evil-survival-unit/id6744668327?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier [ Battle ]
      - Defence Multiplier [ Battle ]
      - God Mode [ Battle ]
      - God Mode [ Explore ]
      - One-Hit Kill [ Explore ]
      - Freeze Items & Ammo
      • 93 replies
    • Hunt Royale: Action RPG Battle v3.24.0 +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Hunt Royale: Action RPG Battle By BoomBit, Inc.
      Bundle ID: com.hunt.royale
      iTunes Store Link: https://apps.apple.com/us/app/hunt-royale-action-rpg-battle/id1537379121?uo=4

       
       

      🚀 Hack Features

      - Dumb Enemies

      VIP
      - Damage Multiplier
      - Defence Multiplier
      • 237 replies
    • Hunt Royale: Action RPG Battle v3.23.0 +3 Mods [ Damage & Defence ]
      Mod APK Game Name: Hunt Royale: Action RPG Battle By BoomBit, Inc.
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.hunt.royale&hl=en_GB

       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      • 10 replies
    • Zerowake GATES : BL RPG v1.6.1 +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Zerowake GATES : BL RPG By Storytaco.inc
      Bundle ID: com.storytaco.p33client
      App Store Link: https://apps.apple.com/us/app/zerowake-gates-bl-rpg/id6747482230?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      • 12 replies
    • DRAGON BALL LEGENDS +8 Cheats
      Mod APK Game Name: DRAGON BALL LEGENDS By Bandai Namco Entertainment Inc.
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.bandainamcoent.dblegends_ww

       

      🤩 Hack Features

      - Damage Multplier
      - Defense Multiplier
      - 1 Enemy Per Quest
      - Instant Win
      - No Swap Cooldown
      - Instant Rising Rush
      - Auto Complete All Challenges 
      - All Cards Give DragonBalls

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      Download Modded APK







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 22 replies
    • Spirit King Quest v1.0.24 +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Spirit King Quest By EIGHT STUDIO
      Bundle ID: com.eightstudio.spiritking
      App Store Link: https://apps.apple.com/us/app/spirit-king-quest/id6479593322?uo=4

       


      🤩 Hack Features

      - Damage Multiplier 
      - Defence Multiplier
      - God Mode
      • 24 replies
×
  • 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