Jump to content

[NIC] iOS Mod Menu Template - iOS 15 Supported!


Ted2

162 posts in this topic

Recommended Posts

Hello @Ted2,
I always use the MOD MENU template.
I want you to tell me.
So far, we have created a MOD menu with only "OffsetSwitch", but we want to create a Damage Multiplier from 1 to 10 times using "SliderSwitch".
I made it as follows, but please let me know if there is not enough description.

IDA
text: 0000000101234567 FMOV S2, # 1.0
(#1.0 = AttackDamage x1, #2.0 = AttackDamage x2, ... , #10.0 = AttackDamage x10)

Tweak.xm

#import "Macros.h"

/**********************************

INSIDE THIS FUNCTION YOU'LL HAVE TO CREATE YOUR SWITCHES!

***********************************/

int(*old_attack_damage)(void *this_);
int attack_damage(void *this_) {

  int userAmount = [[switches getValueFromSwitch:@"Attack Damage:"] intValue];

  if([switches isSwitchOn:@"Attack Damage:"]) {
    return userAmount;
  }

  return old_attack_damage(this_);
}

void setup() {

  //public int attack_damage(); // RVA: 0x101234567 Offset: 0x1234567
  HOOK(0x101234567, attack_damage, old_attack_damage);
    
  // Slider Switch - used in hooking!
  [switches addSliderSwitch:@"Attack Damage: "
              description:@"custom Attack Damage!"
                minimumValue:1
                  maximumValue:10
                    sliderColor:[UIColor colorWithRed:0.74 green:0.00 blue:0.00 alpha:1.0]];                                                                                          
}


/**********************************************************************************************************
     
     You can customize the menu here
     Good site for specific UIColor: https://www.uicolor.xyz/#/rgb-to-ui
     NOTE: remove the ";" when you copy your UIColor from there!
     
     Site to find your perfect font for the menu: http://iosfonts.com/  --> view on mac or ios device

     See comment next to maxVisibleSwitches!!!!
     
************************************************************************************************************/
void setupMenu() {

  menu = [[Menu alloc]  initWithTitle:@"@@APPNAME@@ - Mod Menu"
                        titleColor:[UIColor whiteColor]
                        titleFont:@"Copperplate-Bold"
                        credits:@"This Mod Menu has been made by @@USER@@, do not share this without proper credits or my permission. \n\nEnjoy!"
                        headerColor:[UIColor colorWithRed:0.74 green:0.00 blue:0.00 alpha:1.0]
                        switchOffColor:[UIColor darkGrayColor]
                        switchOnColor:[UIColor colorWithRed:0.00 green:0.68 blue:0.95 alpha:1.0]
                        switchTitleFont:@"Copperplate-Bold"
                        switchTitleColor:[UIColor whiteColor]
                        infoButtonColor:[UIColor colorWithRed:0.74 green:0.00 blue:0.00 alpha:1.0]
                        maxVisibleSwitches:4 // Less than max -> blank space, more than max -> you can scroll!
                        menuWidth:250];    


    //once menu has been initialized, it will run the setup functions. In the setup function, you create your switches!
    setup();
}

/*
    If the menu button doesn't show up; Change the timer to a bigger amount.
*/
static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) {

  timer(5) {

    SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];

    // Website link, remove it if you don't need it.
    [alert addButton: @"Visit Me!" actionBlock: ^(void) {
      [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"@@SITE@@"]];
      timer(2) {
        setupMenu();
      });        
    }];

    [alert addButton: @"Thankyou, understood." actionBlock: ^(void) {
      timer(2) {
        setupMenu();
      });
    }];    

    alert.shouldDismissOnTapOutside = NO;
    alert.customViewColor = [UIColor purpleColor];  
    alert.showAnimationType = SCLAlertViewShowAnimationSlideInFromCenter;   
    
    [alert showSuccess: nil
            subTitle:@"@@APPNAME@@ - Mod Menu \n\nThis Mod Menu has been made by @@USER@@, do not share this without proper credits or my permission. \n\nEnjoy!" 
              closeButtonTitle:nil
                duration:99999999.0f];

  });
}


%ctor {
  CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), NULL, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
}

---

I'm sorry for your busy time.
Thank you.

Link to comment
Share on other sites

8 hours ago, mineo said:

Hello @Ted2,
I always use the MOD MENU template.
I want you to tell me.
So far, we have created a MOD menu with only "OffsetSwitch", but we want to create a Damage Multiplier from 1 to 10 times using "SliderSwitch".
I made it as follows, but please let me know if there is not enough description.

IDA
text: 0000000101234567 FMOV S2, # 1.0
(#1.0 = AttackDamage x1, #2.0 = AttackDamage x2, ... , #10.0 = AttackDamage x10)

Tweak.xm

#import "Macros.h"

/**********************************

INSIDE THIS FUNCTION YOU'LL HAVE TO CREATE YOUR SWITCHES!

***********************************/

int(*old_attack_damage)(void *this_);
int attack_damage(void *this_) {

  int userAmount = [[switches getValueFromSwitch:@"Attack Damage:"] intValue];

  if([switches isSwitchOn:@"Attack Damage:"]) {
    return userAmount;
  }

  return old_attack_damage(this_);
}

void setup() {

  //public int attack_damage(); // RVA: 0x101234567 Offset: 0x1234567
  HOOK(0x101234567, attack_damage, old_attack_damage);
    
  // Slider Switch - used in hooking!
  [switches addSliderSwitch:@"Attack Damage: "
              description:@"custom Attack Damage!"
                minimumValue:1
                  maximumValue:10
                    sliderColor:[UIColor colorWithRed:0.74 green:0.00 blue:0.00 alpha:1.0]];                                                                                          
}


/**********************************************************************************************************
     
     You can customize the menu here
     Good site for specific UIColor: https://www.uicolor.xyz/#/rgb-to-ui
     NOTE: remove the ";" when you copy your UIColor from there!
     
     Site to find your perfect font for the menu: http://iosfonts.com/  --> view on mac or ios device

     See comment next to maxVisibleSwitches!!!!
     
************************************************************************************************************/
void setupMenu() {

  menu = [[Menu alloc]  initWithTitle:@"@@APPNAME@@ - Mod Menu"
                        titleColor:[UIColor whiteColor]
                        titleFont:@"Copperplate-Bold"
                        credits:@"This Mod Menu has been made by @@USER@@, do not share this without proper credits or my permission. \n\nEnjoy!"
                        headerColor:[UIColor colorWithRed:0.74 green:0.00 blue:0.00 alpha:1.0]
                        switchOffColor:[UIColor darkGrayColor]
                        switchOnColor:[UIColor colorWithRed:0.00 green:0.68 blue:0.95 alpha:1.0]
                        switchTitleFont:@"Copperplate-Bold"
                        switchTitleColor:[UIColor whiteColor]
                        infoButtonColor:[UIColor colorWithRed:0.74 green:0.00 blue:0.00 alpha:1.0]
                        maxVisibleSwitches:4 // Less than max -> blank space, more than max -> you can scroll!
                        menuWidth:250];    


    //once menu has been initialized, it will run the setup functions. In the setup function, you create your switches!
    setup();
}

/*
    If the menu button doesn't show up; Change the timer to a bigger amount.
*/
static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) {

  timer(5) {

    SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];

    // Website link, remove it if you don't need it.
    [alert addButton: @"Visit Me!" actionBlock: ^(void) {
      [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"@@SITE@@"]];
      timer(2) {
        setupMenu();
      });        
    }];

    [alert addButton: @"Thankyou, understood." actionBlock: ^(void) {
      timer(2) {
        setupMenu();
      });
    }];    

    alert.shouldDismissOnTapOutside = NO;
    alert.customViewColor = [UIColor purpleColor];  
    alert.showAnimationType = SCLAlertViewShowAnimationSlideInFromCenter;   
    
    [alert showSuccess: nil
            subTitle:@"@@APPNAME@@ - Mod Menu \n\nThis Mod Menu has been made by @@USER@@, do not share this without proper credits or my permission. \n\nEnjoy!" 
              closeButtonTitle:nil
                duration:99999999.0f];

  });
}


%ctor {
  CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), NULL, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
}

---

I'm sorry for your busy time.
Thank you.

I'm not sure what your question is, but if you're asking me if I know why it does not work, the only thing I can come up with is:

Your switch is named: "Attack Damage: " --> after ':' you have a space.
In your value getter & checker if switch is on, you didn't include a space. I THINK that might be the reason it does not work, if that's your question.

Link to comment
Share on other sites

1 hour ago, Ted2 said:

I'm not sure what your question is, but if you're asking me if I know why it does not work, the only thing I can come up with is:

Your switch is named: "Attack Damage: " --> after ':' you have a space.
In your value getter & checker if switch is on, you didn't include a space. I THINK that might be the reason it does not work, if that's your question.

Thank you for your reply.
I installed the deb that I created and tried to move it, but even if SliderSwitch is turned off, the game falls at the moment of attack.
Is the HOOK method wrong?
Also, with OffsetSwitch, the damage is x10
  // Offset Switch with one patch
  [switches addOffsetSwitch: @ "Attack Damage x10"
              description: @ "High Damage"
                offsets: {0x101234567}
                  bytes: {0x02D0241E}];
It is functioning without any problem, but in the case of SliderSwitch, is it unnecessary to describe the value of bytes after such a change?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Modded/Hacked App: Transformers: Earth Wars By Space Ape Ltd
      Bundle ID: com.backflipstudios.transformersearthwars
      iTunes Store Link: https://apps.apple.com/us/app/transformers-earth-wars/id1058526204?uo=4


      Hack Features:
      - Infinite Mana

      I update hacks based on how popular their topic on iOSGods is.
      Jailbreak required hack(s): https://iosgods.com/topic/51838-iosgods-exclusive-transformers-earth-wars-v167-4-cheats/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 204 replies
    • Grim Soul: Survival v6.7.0 +19 Jailed Cheats [Free Crafting + More]
      Modded/Hacked App: Grim Soul: Survival By Andrey Pryakhin
      Bundle ID: fantasy.survival.game.rpg
      iTunes Store Link: https://itunes.apple.com/us/app/grim-soul-survival/id1366215798


      Mod Requirements:
      - Jailbroken or Non-Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Unlimited Storage Items - Taking storage items will increase them.
      - Free Crafting - Will allow you to craft items without the required materials.
      - No Crafting Level Requirement
      - Free Construction
      - Items Duplicate When Split
      - Unlimited Item Durability
      • 4,069 replies
    • Grim Soul: Survival v6.7.0 +19 Cheats [Unlimited Currencies + More]
      Modded/Hacked App: Grim Soul: Survival By Andrey Pryakhin
      Bundle ID: fantasy.survival.game.rpg
      iTunes Store Link: https://itunes.apple.com/us/app/grim-soul-survival/id1366215798


      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:
      - Unlimited Thalers/Coins & Crafting Points - Once enabled, purchase something using coins & use a craft point so the currencies stick, then disable this feature.
      - Unlimited Storage Items - Taking storage items will increase them.
      - Unlimited Energy / Instant Energy Refills - Will refill your energy once you run to another location.
      - Godmode - Unlinked. Health will still decrease but you won't die.
      - One-Hit Kill - Linked to the enemy. Would recommend enabling 'Godmode'.
      - Increased Attack Range - Allows you to kill enemies from some distance away.
      - Free Crafting - Will allow you to craft items without the required materials.
      - No Crafting Level Requirement
      - Free Construction
      - Items Duplicate When Split
      - Unlimited Item Durability
      - x2 Player Speed
      - x3 Player Speed
      • 4,978 replies
    • [iOSGods Exclusive] Transformers: Earth Wars v25.0 +4 Cheats!
      Modded/Hacked App: Transformers: Earth Wars By Backflip Studios
      Bundle ID: com.backflipstudios.transformersearthwars
      iTunes Link: https://itunes.apple.com/us/app/transformers-earth-wars/id1058526204


      Hack Features:
      - Infinite Mana / Can always use Skill (This allows you to always use your transformers skill, even if you don't have enough mana)
      - Auto Win! Press Retreat Button ingame to instantly destroy the enemies base. Works in offline and pvp/online!
      - Can deploy units anywhere on the battlefield!
      - No Cooldown for Bots
      • 1,172 replies
    • Angry Birds 2 Cheats v3.26.1 +1 [ Infinite Currencies ]
      Modded/Hacked App: Angry Birds 2 By Rovio Entertainment Oyj
      Bundle ID: com.rovio.baba
      iTunes Store Link: https://apps.apple.com/us/app/angry-birds-2/id880047117?uo=4


      Hack Features:
      - Infinite Currencies ( Spend some/ Get some )


      Non-Jailbroken & No Jailbreak required hack(s):  https://iosgods.com/topic/70081-angry-birds-2-v2600-jailed-cheats-2/


      Hack Download Link: https://iosgods.com/topic/72039-angry-birds-2-cheats-v2600-1-infinite-currencies/
      • 1,924 replies
    • Among Us! Cheats v2024.11.26 +10
      Modded/Hacked App: Among Us! by InnerSloth LLC
      Bundle ID: com.innersloth.amongus
      iTunes Store Link: https://apps.apple.com/us/app/among-us/id1351168404?uo=4&at=1010lce4


      Hack Features:
      - All Skins Unlocked
      - All Pets Unlocked
      - All Hats Unlocked
      - No Ads
      - Custom Move Speed
      - Display Who is Impostor by faking them
      - No ban when quitting too much
      - Increase Light FOV
      - Destroy Room (Turn on the turn it off)
      - Instant Kill


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/132854-arm64-among-us-v202091-jailed-cheats-4/


      iOS Hack Download Link: https://iosgods.com/topic/132860-arm64-among-us-cheats-v202091-7/
      • 16,955 replies
    • Cats & Soup Cheats v2.57.0 +2
      Modded/Hacked App: Cats & Soup By HIDEA Co.,Ltd
      Bundle ID: com.hidea.cat
      iTunes Store Link: https://apps.apple.com/us/app/cats-soup/id1581431235?uo=4


      Hack Features:
      - Infinite Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/157486-cats-soup-v196-jailed-cheats-1/


      iOS Hack Download Link: https://iosgods.com/topic/157484-cats-soup-cheats-v196-1/
      • 275 replies
    • [ Devil Summoners Idle ] 데빌 서머너 : 소환사 키우기 Cheats v1.4.6 +4
      Modded/Hacked App: 데빌 서머너 : 소환사 키우기 By LUNA GAMES Inc.
      Bundle ID: com.LunaGames.Summoner
      iTunes Store Link: https://apps.apple.com/kr/app/%EB%8D%B0%EB%B9%8C-%EC%84%9C%EB%A8%B8%EB%84%88-%EC%86%8C%ED%99%98%EC%82%AC-%ED%82%A4%EC%9A%B0%EA%B8%B0/id6468970223?uo=4


      Hack Features:
      - God Mode
      - Multiply Attack
      - Freeze Currencies (Some may not work, but most does. Cannot fully tested due to it's Korean)
      - Multiply 10x Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
       


      iOS Hack Download Link: https://iosgods.com/topic/186434-devil-summoners-idle-%EB%8D%B0%EB%B9%8C-%EC%84%9C%EB%A8%B8%EB%84%88-%EC%86%8C%ED%99%98%EC%82%AC-%ED%82%A4%EC%9A%B0%EA%B8%B0-cheats-v116-4/
      • 34 replies
    • Cafeland - World Kitchen v2.35.3 Jailed Cheats +1
      Modded/Hacked App: Cafeland - World Kitchen by Gamegos Internet Teknolojileri Ltd Sti.
      Bundle ID: com.gamegos.mobile.cafeland
      iTunes Store Link: https://apps.apple.com/us/app/cafeland-world-kitchen/id1147665432?uo=4&at=1010lce4


      Hack Features:
      - Freeze Currencies

      iOS Hack Download Link: https://iosgods.com/topic/100703-arm64-cafeland-world-kitchen-v2182-jailed-cheats-1/
      • 535 replies
    • Sniper 3D: Gun Shooting Games v4.59.0 Jailed Cheats +5
      Modded/Hacked App: Sniper 3D Assassin: FPS Battle By Fun Games For Free
      Bundle ID: com.fungames.sniper3d
      iTunes Store Link: https://itunes.apple.com/us/app/sniper-3d-assassin-fps-battle/id930574573?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Infinite Coins
      - Infinite Gems
      - Infinite Energy
      - Infinite Ammo / No Reload
      - No Spread


      Jailbreak required hack(s):  https://iosgods.com/topic/74123-arm64-sniper-3d-fps-battle-shoot-to-kill-2018-v2180-jailed-cheats-5/
      • 2,192 replies
    • MWT: Tank Battles v1.2.1 Jailed Cheats +5
      Modded/Hacked App: MWT: Tank Battles By ARTSTORM FZE
      Bundle ID: com.Shooter.ModernWarfront
      iTunes Store Link: https://apps.apple.com/us/app/mwt-tank-battles/id6469805187?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - God Mode
      - Freeze Boosters
      - Free Subscription?
      + 10% EXP
      + 50% Cash / Gold


      iOS Hack Download IPA Link: https://iosgods.com/topic/188441-mwt-tank-battles-v121-jailed-cheats-5/
      • 34 replies
    • CSR 2 Drag Racing Car Games v5.4.0 - [ Gold, Cash, Keys & More ]
      Modded/Hacked App: CSR Racing 2 by NaturalMotion Games Limited
      Bundle ID: com.naturalmotion.customstreetracer2
      iTunes Store Link: https://apps.apple.com/us/app/csr-racing-2/id887947640


      Hack Features:
      - Custom Gold Amount -> Enter the amount of gold you want inside the iOSGods Mod Menu!
      - Custom Cash Amount -> Enter the amount of cash you want inside the iOSGods Mod Menu!
      - Custom Keys Amount -> Enter the amount of keys you want inside the iOSGods Mod Menu!
      - Anti-Ban -> Also unbans previously banned accounts and lets you play online according to feedback.
      - No Fuel Consumption
      - Instant Part Delivery
      - Instant Car Delivery
      - Gold Increase
      - Cash Increase
      - Keys Increase
      - Buy Anything For 1 Gold
      - Buy Anything For 1 Cash
      • 5,658 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