Jump to content

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


162 posts in this topic

Recommended Posts

Posted
6 minutes ago, Ted2 said:

I need to know the errors before I can help, right?

Right. I fixed it already. Just kept researching and fixed it Ted. Thank you for your response tho. I appreciate it. Love the ted bear mod menu icon 😂😂😂

  • Like 2
  • Haha 1
Posted

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.

Posted
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.

Posted
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?

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

    • Eatventure v1.33.2 Jailed Cheats +2
      Modded/Hacked App: Eatventure By Lessmore UG haftungsbeschraenkt
      Bundle ID: com.hwqgrhhjfd.idlefastfood
      iTunes Store Link: https://apps.apple.com/us/app/eatventure/id1600871388?uo=4


      Hack Features:
      - Freeze Currencies
      - Free iAP (Turn on inside iOSGods Mod Menu first)


      Jailbreak required hack(s): https://iosgods.com/topic/168170-eatventure-cheats-all-versions-1/


      iOS Hack Download IPA Link: https://iosgods.com/topic/168169-eatventure-v110-jailed-cheats-2/
      • 312 replies
    • Harry Potter: Puzzles & Spells v91.0.293 +1 Jailed Cheat [ Unlimited Moves ]
      Modded/Hacked App: Harry Potter: Puzzles & Spells By Zynga Inc.
      Bundle ID: com.zynga.pottermatch
      iTunes Store Link: https://apps.apple.com/us/app/harry-potter-puzzles-spells/id1434505322?uo=4


      Hack Features:
      - Unlimited Moves -> Will not decrease.


      Jailbreak required hack(s): [Mod Menu Hack] Harry Potter: Puzzles & Spells v85.0.271 +1 Cheat [ Unlimited Moves ] - 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/
      • 38 replies
    • Harry Potter: Puzzles & Spells v91.0.293 +1 Cheat [ Unlimited Moves ]
      Modded/Hacked App: Harry Potter: Puzzles & Spells By Zynga Inc.
      Bundle ID: com.zynga.pottermatch
      iTunes Store Link: https://apps.apple.com/us/app/harry-potter-puzzles-spells/id1434505322?uo=4


      Hack Features:
      - Unlimited Moves -> Will not decrease.


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Harry Potter: Puzzles & Spells v85.0.271 +1 Jailed Cheat [ Unlimited Moves ] - Free Non-Jailbroken IPA 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/
      • 23 replies
    • DarkSlayerXGunbird2 v1.1.96 +4 Jailed Cheats
      Modded/Hacked App: Dark Slayer : Tengai Collabo By PD.X Co.,Ltd
      Bundle ID: com.gamepub.zhteam
      iTunes Store Link: https://apps.apple.com/us/app/dark-slayer-tengai-collabo/id6446265751?uo=4


      Hack Features:
      - God Mode
      - Attack Speed Multiplier


      Jailbreak required hack(s): [Mod Menu Hack] Dark Slayer : Tengai Collabo v1.1.62 +2 Cheats [ God Mode ] - 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/
      • 7 replies
    • DarkSlayerXGunbird2 v1.1.96 +4 Cheats
      Modded/Hacked App: Dark Slayer : Tengai Collabo By Gamepub CO., LTD
      Bundle ID: com.gamepub.zhteam
      iTunes Store Link: https://apps.apple.com/us/app/dark-slayer-tengai-collabo/id6446265751


      Hack Features:
      - God Mode
      - Attack Speed Multiplier
      • 215 replies
    • SHIN MEGAMI TENSEI D×2 v8.0.11 +2 Cheats
      Modded/Hacked App: SHIN MEGAMI TENSEI D×2 By SEGA CORPORATION
      Bundle ID: com.sega.d2megaten.en
      iTunes Store Link: https://apps.apple.com/us/app/shin-megami-tensei-d-%EF%BC%92/id1349725119?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing / or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - x dmg
      - x def


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file is downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy to Filza.
      STEP 3: If necessary, tap on the downloaded file and then, you will need to press on 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: 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 & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 24 replies
    • SHIN MEGAMI TENSEI D×2 v8.0.11 +2 Jailed Cheats
      Modded/Hacked App: SHIN MEGAMI TENSEI D×2 by SEGA CORPORATION
      Bundle ID: com.sega.d2megaten.en
      iTunes Store Link: https://itunes.apple.com/us/app/shin-megami-tensei-d-%EF%BC%92/id1349725119?mt=8&uo=4&at=1010lce4


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


      Hack Features:
      - No Skill Cost
      • 22 replies
    • DEAD TARGET: FPS Zombie Games v6.146.0 [ +10 Cheats ] Currency Max
      Modded/Hacked App: DEAD TARGET: FPS Zombie Games By VNG SINGAPORE PTE LTD
      Bundle ID: com.vng.g6.a.zombie
      iTunes Store Link: https://apps.apple.com/us/app/dead-target-fps-zombie-games/id901793885?uo=4
       

      Hack Features

      - Unlimited Gold
      - Unlimited Cash

      - Unlimited Diamonds
      - Unlimited Grenades
      - Unlimited MedKits
      - Unlimited Ammo
      - One Hit Kill
      - God Mode
      - High Accuracy

      - ADS NO
      • 9 replies
    • DEAD TARGET: FPS Zombie Games v6.146.0 [ +10 Jailed ] Currency Max
      Modded/Hacked App: DEAD TARGET: FPS Zombie Games By VNG SINGAPORE PTE LTD
      Bundle ID: com.vng.g6.a.zombie
      iTunes Store Link: https://apps.apple.com/us/app/dead-target-fps-zombie-games/id901793885?uo=4
       

      Hack Features

      - Unlimited Gold
      - Unlimited Cash

      - Unlimited Diamonds
      - Unlimited Grenades
      - Unlimited MedKits
      - Unlimited Ammo
      - One Hit Kill
      - God Mode
      - High Accuracy

      - ADS NO
      • 10 replies
    • Island War Raid V5.7.8 [ +2 Cheats ] Win Fight
      Modded/Hacked App: Island War: Raid By SamShui Corporation
      Bundle ID: com.addictive.strategy.island.clash
      iTunes Store Link: https://apps.apple.com/us/app/island-war-raid/id1542454536?uo=4

      Hack Features:
      - Die Anyone [ Red & Blue ] Win Fight
      - Destroy Building [ Win Fight ] 



      Note:- Works Only [ Arena ]
      • 25 replies
    • Island War Raid V5.7.8 [ +2 Jailed ] Win Fight
      Modded/Hacked App: Island War: Raid By SamShui Corporation
      Bundle ID: com.addictive.strategy.island.clash
      iTunes Store Link: https://apps.apple.com/us/app/island-war-raid/id1542454536?uo=4


      Hack Features:

      - Die Anyone [ Red & Blue ] Win Fight
      - Destroy Building [ Win Fight ] 



      Note:- Works Only [ Arena ]
      • 4 replies
    • Hungry Shark World v6.6.1 [ +9 Cheats ] Currency Max
      Modded/Hacked App: Hungry Shark World By Ubisoft
      Bundle ID: com.ubisoft.hungrysharkworld
      iTunes Store Link: https://apps.apple.com/us/app/hungry-shark-world/id1046846443?uo=4


      Hack Features:
      - ADS NO

      - Gems

      - Coins 

      - Pearls 

      - Premium Pass

      - Health Auto Drain [ OFF ]

      - Boost Max 

      - Score Multi 

      - Revive Max 


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 42 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