Jump to content

5 posts in this topic

Recommended Posts

Posted (edited)

Hello can someone help me? 

I have this code I want when the mode menu image is clicked Sends me to a website or any other link

 [menu closeTaps:1 width:270 
          maxVisableToggles:5
          title:@"@@APPNAME@@" 
          credits:@"Made by @@////i want to put the link here////@@"]; same like iosgods mods when clicked image send me to website
    setUp();
}

 

@Rook anyhelp please 

Updated by Alihackali
Posted

I dont use other menus so idk what code they re using

Posted
6 hours ago, Laxus said:

I dont use other menus so idk what code they re using

im using r16 modmenu 

 

 

#import "Menu.h"

void setUp() {
/******
        [r16Hook hook:@"0x10198FA54"
                with:(void *)Player_Update 
                original:(void **)&_Player_Update];
                
        [r16Hook hook:@"0x10198FA54"
                with:(void *)ItemCheck 
                original:(void **)&_ItemCheck];

        [menu addPatch:@"Godmode"
          description:@"Leave this on you won't die" 
             offsets:@[@"0x10198FA54", @"0x10198FA54"]
             hexPatches:@[@"0xC0035FD6", @"0xC0035FD6"]];
******/
             
        [menu addSwitch:@"Inf-Mana"
            description:@"Leave this on infinite mp" ];

        [menu addSlider:@"Custom Fov"
            description:@"Set your custom fov" 
                initialValue:1.00 
                minValue:1.00 
                maxValue:200.00];

        [menu addTextfieldWide:@"ChatSpam" description:@"Set your custom chatspam or value"];
    
        [menu addTextfieldRight:@"Spawn Item:" description:@""];
        
        [menu addTextfieldRight:@"Item Amount:" description:@""];
        
        [menu addTextfieldRight:@"Set_MaxMinions" description:@"Use this to surpass max minions limit"];

        [menu addIndexSwitch:@"Damage" 
            description:@"" 
                items:@[@"mana", @"godmode", @"item", @"Increased", @"High", @"Ohk"]];

}

void startAuthentication() {

    #import "r16Logo.h"

     menu.socialShareMessage = @"Im using @@APPNAME@@ Cheats by @@USER@@";
     menu.sharingIconBorderColor = rgba(0xffffff, 1.0);

    //only color that needs to be set
     r16Theme.baseColor = rgba(0xfc03df, 0.9);
     //r16Theme.headerBackground = rgba(0x5f04cf, 1.0);
     //r16Theme.footerBackground = rgba(0x5f04cf, 1.0);
     //r16Theme.menuBackground = rgba(0x7300ff, 0.9);
     //r16Theme.keyOnColor = rgba(0x8423fa,1.0);
     //r16Theme.keyOffColor = rgba(0x7b00ff,0.9);
     //r16Theme.menuShadowColor = rgba(0x7200fc, 0.9);

    [menu closeTaps:1 width:270 
          maxVisableToggles:5
          title:@"@@APPNAME@@" 
          credits:@"Made by @@USER@@"];
    setUp();
}


static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) {
    timer(0.1){
        startAuthentication();
    });
}

void launchEvent() {
    CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), NULL, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDrop);
}

__attribute__((constructor)) static void initialize() {
    launchEvent();
}

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
×
  • 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