Jump to content

27 posts in this topic

Recommended Posts

Posted
1 minute ago, Ted2 said:

You should not copy readme.txt into tweak.xm, start from scratch & tell me what errors, without touching anything yet

When starting from scratch, you mean by compiling it after changing the plist?

 

  • Replies 26
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted
Just now, PrincessJayJay said:

When starting from scratch, you mean by compiling it after changing the plist?

 

yea, aslong as you don't touch tweak.xm. 

Posted
1 minute ago, Ted2 said:

yea, aslong as you don't touch tweak.xm. 

Same error as before.

Havent touched anything apart from changing the plist to the bundle ID

------------------------------------------------------------------------------------------------------------

Tweak.xm:112: error %orig found outside of sook or subclass

make[2]: *** [obj/Tweak.xm.ea483cdd.o] Error 255

make[1]: ***[internal-library-all_] Error 2

make: *** [error.all.tweak.variables] Error 2

Posted (edited)
1 minute ago, PrincessJayJay said:

Same error as before.

Havent touched anything apart from changing the plist to the bundle ID

------------------------------------------------------------------------------------------------------------

Tweak.xm:112: error %orig found outside of sook or subclass

make[2]: *** [obj/Tweak.xm.ea483cdd.o] Error 255

make[1]: ***[internal-library-all_] Error 2

make: *** [error.all.tweak.variables] Error 2

can you add your tweak.xm in [.code] [./code] (without the '.')

Updated by Ted2
Posted (edited)
8 minutes ago, Ted2 said:

can you add your tweak.xm in


 [/code.] (without the '.') ?
 	#import "Macros.h"	#import "ModMenu.h"	#import "Hack.h"	#import "Hook.h"	#import "SliderHook.h"	#import "TextfieldHook.h"	#import <substrate.h>	#import <initializer_list>	#import <vector>	#import <mach-o/dyld.h>	 	/*****************************/	static NSString *const title = @""; //title of your menu	static NSString *const credits = @""; //who made the hack?	static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font	static UIColor *const themeColor = ?; //the overall color for the menu and the button	 	//replace the ? with anything from this list:	//https://ghostbin.com/paste/mbkfb	//or you could specify a custom color with	//rgb(0xCOLORCODE) ex: rgb(0x738282)	 	//a complete list of fonts can be found here:	//http://iosfonts.com/	 	//please refer to README.txt for more info.	/******************************/	 	uint64_t getRealOffset(uint64_t);	 	void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);	void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);	void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	 	static ModMenu *menu;	 	bool buttonAdded;	 	%hook 	 	- (void)applicationDidBecomeActive:(id)arg0 {	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];	openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);	openButton.backgroundColor = [UIColor clearColor];	openButton.layer.cornerRadius = 16;	openButton.layer.borderWidth = 2;	openButton.layer.borderColor = themeColor.CGColor;	[openButton addTarget:self action:@selector(wasDragged:withEvent:) 	forControlEvents:UIControlEventTouchDragInside];	[openButton addTarget:self action:@selector(showMenu) 	forControlEvents:UIControlEventTouchDownRepeat];	 	if(!buttonAdded){	timer((int64_t)1){	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];	 	/***********************	add your features below this multi line comment. they show in the order you have added them.	for example:	addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});	multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):	addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});	parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));	 	to add a slider hook:	for example:	addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);	 	to retrieve the value of the slider, use:	float val = [SliderHook getSliderValueForHook:@"hack name here"];	 	to add a textfield hook:	for example:	addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);	 	to retrieve the value of the textfield:	int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];	float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];	 	to add a normal hook:	for example:	addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addHook(hack name, description, font, function to hook, hooked function name, original function name);	to see if the the user turned on the hook or not:	bool isOn = [Hook getHookOnForHook:@"hack name here"]	************************/	//add features here!	 	 	 	 	 	 	 	[main addSubview:openButton];	[main addSubview:menu];	 	buttonAdded = true;	});	}	 	%orig;	}	 	%new	- (void)showMenu {	[menu show];	}	 	%new	- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event	{	    UITouch *touch = [[event touchesForView:button] anyObject];	 	    CGPoint previousLocation = [touch previousLocationInView:button];	    CGPoint location = [touch locationInView:button];	    CGFloat delta_x = location.x - previousLocation.x;	    CGFloat delta_y = location.y - previousLocation.y;	 	    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);	}	%end	 	void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){	    std::vector<uint64_t> offsetVector;	    std::vector<uint64_t> hackedHexVector;	    std::vector<uint64_t> originalHexVector;	    	    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());	    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());	    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());	    	    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];	    [menu addHack:h];	}	 	void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];	    [menu addHook:h];	}	 	void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];	    [menu addHook:sh];	}	 	void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];	    [menu addHook:th];	}	 	uint64_t getRealOffset(uint64_t offset){	    return _dyld_get_image_vmaddr_slide(0)+offset;	}	
Just now, PrincessJayJay said:

 	#import "Macros.h"	#import "ModMenu.h"	#import "Hack.h"	#import "Hook.h"	#import "SliderHook.h"	#import "TextfieldHook.h"	#import <substrate.h>	#import <initializer_list>	#import <vector>	#import <mach-o/dyld.h>	 	/*****************************/	static NSString *const title = @""; //title of your menu	static NSString *const credits = @""; //who made the hack?	static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font	static UIColor *const themeColor = ?; //the overall color for the menu and the button	 	//replace the ? with anything from this list:	//https://ghostbin.com/paste/mbkfb	//or you could specify a custom color with	//rgb(0xCOLORCODE) ex: rgb(0x738282)	 	//a complete list of fonts can be found here:	//http://iosfonts.com/	 	//please refer to README.txt for more info.	/******************************/	 	uint64_t getRealOffset(uint64_t);	 	void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);	void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);	void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	 	static ModMenu *menu;	 	bool buttonAdded;	 	%hook 	 	- (void)applicationDidBecomeActive:(id)arg0 {	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];	openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);	openButton.backgroundColor = [UIColor clearColor];	openButton.layer.cornerRadius = 16;	openButton.layer.borderWidth = 2;	openButton.layer.borderColor = themeColor.CGColor;	[openButton addTarget:self action:@selector(wasDragged:withEvent:) 	forControlEvents:UIControlEventTouchDragInside];	[openButton addTarget:self action:@selector(showMenu) 	forControlEvents:UIControlEventTouchDownRepeat];	 	if(!buttonAdded){	timer((int64_t)1){	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];	 	/***********************	add your features below this multi line comment. they show in the order you have added them.	for example:	addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});	multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):	addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});	parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));	 	to add a slider hook:	for example:	addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);	 	to retrieve the value of the slider, use:	float val = [SliderHook getSliderValueForHook:@"hack name here"];	 	to add a textfield hook:	for example:	addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);	 	to retrieve the value of the textfield:	int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];	float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];	 	to add a normal hook:	for example:	addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addHook(hack name, description, font, function to hook, hooked function name, original function name);	to see if the the user turned on the hook or not:	bool isOn = [Hook getHookOnForHook:@"hack name here"]	************************/	//add features here!	 	 	 	 	 	 	 	[main addSubview:openButton];	[main addSubview:menu];	 	buttonAdded = true;	});	}	 	%orig;	}	 	%new	- (void)showMenu {	[menu show];	}	 	%new	- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event	{	    UITouch *touch = [[event touchesForView:button] anyObject];	 	    CGPoint previousLocation = [touch previousLocationInView:button];	    CGPoint location = [touch locationInView:button];	    CGFloat delta_x = location.x - previousLocation.x;	    CGFloat delta_y = location.y - previousLocation.y;	 	    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);	}	%end	 	void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){	    std::vector<uint64_t> offsetVector;	    std::vector<uint64_t> hackedHexVector;	    std::vector<uint64_t> originalHexVector;	    	    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());	    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());	    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());	    	    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];	    [menu addHack:h];	}	 	void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];	    [menu addHook:h];	}	 	void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];	    [menu addHook:sh];	}	 	void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];	    [menu addHook:th];	}	 	uint64_t getRealOffset(uint64_t offset){	    return _dyld_get_image_vmaddr_slide(0)+offset;	}	
#import "Macros.h"
#import "ModMenu.h"
#import "Hack.h"
#import "Hook.h"
#import "SliderHook.h"
#import "TextfieldHook.h"
#import <substrate.h>
#import <initializer_list>
#import <vector>
#import <mach-o/dyld.h>
 
/*****************************/
static NSString *const title = @""; //title of your menu
static NSString *const credits = @""; //who made the hack?
static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font
static UIColor *const themeColor = ?; //the overall color for the menu and the button
 
//replace the ? with anything from this list:
//or you could specify a custom color with
//rgb(0xCOLORCODE) ex: rgb(0x738282)
 
//a complete list of fonts can be found here:
 
//please refer to README.txt for more info.
/******************************/
 
uint64_t getRealOffset(uint64_t);
 
void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);
void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);
void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);
void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);
 
static ModMenu *menu;
 
bool buttonAdded;
 
%hook 
 
- (void)applicationDidBecomeActive:(id)arg0 {
UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
 
UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);
openButton.backgroundColor = [UIColor clearColor];
openButton.layer.cornerRadius = 16;
openButton.layer.borderWidth = 2;
openButton.layer.borderColor = themeColor.CGColor;
[openButton addTarget:self action:@selector(wasDragged:withEvent:) 
forControlEvents:UIControlEventTouchDragInside];
[openButton addTarget:self action:@selector(showMenu) 
forControlEvents:UIControlEventTouchDownRepeat];
 
if(!buttonAdded){
timer((int64_t)1){
UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
 
menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];
 
/***********************
add your features below this multi line comment. they show in the order you have added them.
for example:
addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});
multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):
addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});
parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));
 
to add a slider hook:
for example:
addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);
 
to retrieve the value of the slider, use:
float val = [SliderHook getSliderValueForHook:@"hack name here"];
 
to add a textfield hook:
for example:
addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);
 
to retrieve the value of the textfield:
int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];
float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];
 
to add a normal hook:
for example:
addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addHook(hack name, description, font, function to hook, hooked function name, original function name);
to see if the the user turned on the hook or not:
bool isOn = [Hook getHookOnForHook:@"hack name here"]
************************/
//add features here!
 
 
 
 
 
 
 
[main addSubview:openButton];
[main addSubview:menu];
 
buttonAdded = true;
});
}
 
%orig;
}
 
%new
- (void)showMenu {
[menu show];
}
 
%new
- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event
{
    UITouch *touch = [[event touchesForView:button] anyObject];
 
    CGPoint previousLocation = [touch previousLocationInView:button];
    CGPoint location = [touch locationInView:button];
    CGFloat delta_x = location.x - previousLocation.x;
    CGFloat delta_y = location.y - previousLocation.y;
 
    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);
}
%end
 
void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){
    std::vector<uint64_t> offsetVector;
    std::vector<uint64_t> hackedHexVector;
    std::vector<uint64_t> originalHexVector;
    
    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());
    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());
    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());
    
    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];
    [menu addHack:h];
}
 
void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];
    [menu addHook:h];
}
 
void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];
    [menu addHook:sh];
}
 
void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];
    [menu addHook:th];
}
 
uint64_t getRealOffset(uint64_t offset){
    return _dyld_get_image_vmaddr_slide(0)+offset;
}
Updated by PrincessJayJay
Posted
2 minutes ago, PrincessJayJay said:

 


 	#import "Macros.h"	#import "ModMenu.h"	#import "Hack.h"	#import "Hook.h"	#import "SliderHook.h"	#import "TextfieldHook.h"	#import <substrate.h>	#import <initializer_list>	#import <vector>	#import <mach-o/dyld.h>	 	/*****************************/	static NSString *const title = @""; //title of your menu	static NSString *const credits = @""; //who made the hack?	static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font	static UIColor *const themeColor = ?; //the overall color for the menu and the button	 	//replace the ? with anything from this list:	//https://ghostbin.com/paste/mbkfb	//or you could specify a custom color with	//rgb(0xCOLORCODE) ex: rgb(0x738282)	 	//a complete list of fonts can be found here:	//http://iosfonts.com/	 	//please refer to README.txt for more info.	/******************************/	 	uint64_t getRealOffset(uint64_t);	 	void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);	void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);	void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	 	static ModMenu *menu;	 	bool buttonAdded;	 	%hook 	 	- (void)applicationDidBecomeActive:(id)arg0 {	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];	openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);	openButton.backgroundColor = [UIColor clearColor];	openButton.layer.cornerRadius = 16;	openButton.layer.borderWidth = 2;	openButton.layer.borderColor = themeColor.CGColor;	[openButton addTarget:self action:@selector(wasDragged:withEvent:) 	forControlEvents:UIControlEventTouchDragInside];	[openButton addTarget:self action:@selector(showMenu) 	forControlEvents:UIControlEventTouchDownRepeat];	 	if(!buttonAdded){	timer((int64_t)1){	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];	 	/***********************	add your features below this multi line comment. they show in the order you have added them.	for example:	addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});	multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):	addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});	parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));	 	to add a slider hook:	for example:	addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);	 	to retrieve the value of the slider, use:	float val = [SliderHook getSliderValueForHook:@"hack name here"];	 	to add a textfield hook:	for example:	addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);	 	to retrieve the value of the textfield:	int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];	float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];	 	to add a normal hook:	for example:	addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addHook(hack name, description, font, function to hook, hooked function name, original function name);	to see if the the user turned on the hook or not:	bool isOn = [Hook getHookOnForHook:@"hack name here"]	************************/	//add features here!	 	 	 	 	 	 	 	[main addSubview:openButton];	[main addSubview:menu];	 	buttonAdded = true;	});	}	 	%orig;	}	 	%new	- (void)showMenu {	[menu show];	}	 	%new	- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event	{	    UITouch *touch = [[event touchesForView:button] anyObject];	 	    CGPoint previousLocation = [touch previousLocationInView:button];	    CGPoint location = [touch locationInView:button];	    CGFloat delta_x = location.x - previousLocation.x;	    CGFloat delta_y = location.y - previousLocation.y;	 	    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);	}	%end	 	void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){	    std::vector<uint64_t> offsetVector;	    std::vector<uint64_t> hackedHexVector;	    std::vector<uint64_t> originalHexVector;	    	    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());	    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());	    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());	    	    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];	    [menu addHack:h];	}	 	void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];	    [menu addHook:h];	}	 	void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];	    [menu addHook:sh];	}	 	void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];	    [menu addHook:th];	}	 	uint64_t getRealOffset(uint64_t offset){	    return _dyld_get_image_vmaddr_slide(0)+offset;	}	

 

[.code]

<--> here

[./code]

Posted
Just now, Ted2 said:

[.code]

<--> here

[./code]

	#import "Macros.h"	#import "ModMenu.h"	#import "Hack.h"	#import "Hook.h"	#import "SliderHook.h"	#import "TextfieldHook.h"	#import <substrate.h>	#import <initializer_list>	#import <vector>	#import <mach-o/dyld.h>	 	/*****************************/	static NSString *const title = @""; //title of your menu	static NSString *const credits = @""; //who made the hack?	static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font	static UIColor *const themeColor = ?; //the overall color for the menu and the button	 	//replace the ? with anything from this list:	//https://ghostbin.com/paste/mbkfb	//or you could specify a custom color with	//rgb(0xCOLORCODE) ex: rgb(0x738282)	 	//a complete list of fonts can be found here:	//http://iosfonts.com/	 	//please refer to README.txt for more info.	/******************************/	 	uint64_t getRealOffset(uint64_t);	 	void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);	void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);	void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	 	static ModMenu *menu;	 	bool buttonAdded;	 	%hook 	 	- (void)applicationDidBecomeActive:(id)arg0 {	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];	openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);	openButton.backgroundColor = [UIColor clearColor];	openButton.layer.cornerRadius = 16;	openButton.layer.borderWidth = 2;	openButton.layer.borderColor = themeColor.CGColor;	[openButton addTarget:self action:@selector(wasDragged:withEvent:) 	forControlEvents:UIControlEventTouchDragInside];	[openButton addTarget:self action:@selector(showMenu) 	forControlEvents:UIControlEventTouchDownRepeat];	 	if(!buttonAdded){	timer((int64_t)1){	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];	 	/***********************	add your features below this multi line comment. they show in the order you have added them.	for example:	addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});	multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):	addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});	parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));	 	to add a slider hook:	for example:	addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);	 	to retrieve the value of the slider, use:	float val = [SliderHook getSliderValueForHook:@"hack name here"];	 	to add a textfield hook:	for example:	addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);	 	to retrieve the value of the textfield:	int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];	float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];	 	to add a normal hook:	for example:	addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addHook(hack name, description, font, function to hook, hooked function name, original function name);	to see if the the user turned on the hook or not:	bool isOn = [Hook getHookOnForHook:@"hack name here"]	************************/	//add features here!	 	 	 	 	 	 	 	[main addSubview:openButton];	[main addSubview:menu];	 	buttonAdded = true;	});	}	 	%orig;	}	 	%new	- (void)showMenu {	[menu show];	}	 	%new	- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event	{	    UITouch *touch = [[event touchesForView:button] anyObject];	 	    CGPoint previousLocation = [touch previousLocationInView:button];	    CGPoint location = [touch locationInView:button];	    CGFloat delta_x = location.x - previousLocation.x;	    CGFloat delta_y = location.y - previousLocation.y;	 	    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);	}	%end	 	void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){	    std::vector<uint64_t> offsetVector;	    std::vector<uint64_t> hackedHexVector;	    std::vector<uint64_t> originalHexVector;	    	    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());	    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());	    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());	    	    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];	    [menu addHack:h];	}	 	void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];	    [menu addHook:h];	}	 	void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];	    [menu addHook:sh];	}	 	void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];	    [menu addHook:th];	}	 	uint64_t getRealOffset(uint64_t offset){	    return _dyld_get_image_vmaddr_slide(0)+offset;	}	

Posted (edited)
1 minute ago, PrincessJayJay said:

 


	#import "Macros.h"	#import "ModMenu.h"	#import "Hack.h"	#import "Hook.h"	#import "SliderHook.h"	#import "TextfieldHook.h"	#import <substrate.h>	#import <initializer_list>	#import <vector>	#import <mach-o/dyld.h>	 	/*****************************/	static NSString *const title = @""; //title of your menu	static NSString *const credits = @""; //who made the hack?	static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font	static UIColor *const themeColor = ?; //the overall color for the menu and the button	 	//replace the ? with anything from this list:	//https://ghostbin.com/paste/mbkfb	//or you could specify a custom color with	//rgb(0xCOLORCODE) ex: rgb(0x738282)	 	//a complete list of fonts can be found here:	//http://iosfonts.com/	 	//please refer to README.txt for more info.	/******************************/	 	uint64_t getRealOffset(uint64_t);	 	void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);	void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);	void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);	 	static ModMenu *menu;	 	bool buttonAdded;	 	%hook 	 	- (void)applicationDidBecomeActive:(id)arg0 {	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];	openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);	openButton.backgroundColor = [UIColor clearColor];	openButton.layer.cornerRadius = 16;	openButton.layer.borderWidth = 2;	openButton.layer.borderColor = themeColor.CGColor;	[openButton addTarget:self action:@selector(wasDragged:withEvent:) 	forControlEvents:UIControlEventTouchDragInside];	[openButton addTarget:self action:@selector(showMenu) 	forControlEvents:UIControlEventTouchDownRepeat];	 	if(!buttonAdded){	timer((int64_t)1){	UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;	 	menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];	 	/***********************	add your features below this multi line comment. they show in the order you have added them.	for example:	addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});	multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):	addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});	parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));	 	to add a slider hook:	for example:	addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);	 	to retrieve the value of the slider, use:	float val = [SliderHook getSliderValueForHook:@"hack name here"];	 	to add a textfield hook:	for example:	addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);	 	to retrieve the value of the textfield:	int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];	float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];	 	to add a normal hook:	for example:	addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);	parameters:	addHook(hack name, description, font, function to hook, hooked function name, original function name);	to see if the the user turned on the hook or not:	bool isOn = [Hook getHookOnForHook:@"hack name here"]	************************/	//add features here!	 	 	 	 	 	 	 	[main addSubview:openButton];	[main addSubview:menu];	 	buttonAdded = true;	});	}	 	%orig;	}	 	%new	- (void)showMenu {	[menu show];	}	 	%new	- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event	{	    UITouch *touch = [[event touchesForView:button] anyObject];	 	    CGPoint previousLocation = [touch previousLocationInView:button];	    CGPoint location = [touch locationInView:button];	    CGFloat delta_x = location.x - previousLocation.x;	    CGFloat delta_y = location.y - previousLocation.y;	 	    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);	}	%end	 	void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){	    std::vector<uint64_t> offsetVector;	    std::vector<uint64_t> hackedHexVector;	    std::vector<uint64_t> originalHexVector;	    	    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());	    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());	    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());	    	    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];	    [menu addHack:h];	}	 	void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];	    [menu addHook:h];	}	 	void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];	    [menu addHook:sh];	}	 	void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){	    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);	 	    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];	    [menu addHook:th];	}	 	uint64_t getRealOffset(uint64_t offset){	    return _dyld_get_image_vmaddr_slide(0)+offset;	}	

 

Lol, it's f**ked now. Nvm the code, just paste it....

 

edit: nvm got it

Updated by Ted2
Posted
Just now, Ted2 said:

Lol, it's f**ked now. Nvm the code, just paste it....

Yes, I'm not sure why its doing that.

-------------------------------------------------------------

Tweak.xm

------------------

#import "Macros.h"
#import "ModMenu.h"
#import "Hack.h"
#import "Hook.h"
#import "SliderHook.h"
#import "TextfieldHook.h"
#import <substrate.h>
#import <initializer_list>
#import <vector>
#import <mach-o/dyld.h>
 
/*****************************/
static NSString *const title = @""; //title of your menu
static NSString *const credits = @""; //who made the hack?
static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font
static UIColor *const themeColor = ?; //the overall color for the menu and the button
 
//replace the ? with anything from this list:
//or you could specify a custom color with
//rgb(0xCOLORCODE) ex: rgb(0x738282)
 
//a complete list of fonts can be found here:
 
//please refer to README.txt for more info.
/******************************/
 
uint64_t getRealOffset(uint64_t);
 
void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);
void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);
void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);
void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);
 
static ModMenu *menu;
 
bool buttonAdded;
 
%hook 
 
- (void)applicationDidBecomeActive:(id)arg0 {
UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
 
UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);
openButton.backgroundColor = [UIColor clearColor];
openButton.layer.cornerRadius = 16;
openButton.layer.borderWidth = 2;
openButton.layer.borderColor = themeColor.CGColor;
[openButton addTarget:self action:@selector(wasDragged:withEvent:) 
forControlEvents:UIControlEventTouchDragInside];
[openButton addTarget:self action:@selector(showMenu) 
forControlEvents:UIControlEventTouchDownRepeat];
 
if(!buttonAdded){
timer((int64_t)1){
UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
 
menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];
 
/***********************
add your features below this multi line comment. they show in the order you have added them.
for example:
addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});
multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):
addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});
parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));
 
to add a slider hook:
for example:
addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);
 
to retrieve the value of the slider, use:
float val = [SliderHook getSliderValueForHook:@"hack name here"];
 
to add a textfield hook:
for example:
addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);
 
to retrieve the value of the textfield:
int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];
float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];
 
to add a normal hook:
for example:
addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addHook(hack name, description, font, function to hook, hooked function name, original function name);
to see if the the user turned on the hook or not:
bool isOn = [Hook getHookOnForHook:@"hack name here"]
************************/
//add features here!
 
 
 
 
 
 
 
[main addSubview:openButton];
[main addSubview:menu];
 
buttonAdded = true;
});
}
 
%orig;
}
 
%new
- (void)showMenu {
[menu show];
}
 
%new
- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event
{
    UITouch *touch = [[event touchesForView:button] anyObject];
 
    CGPoint previousLocation = [touch previousLocationInView:button];
    CGPoint location = [touch locationInView:button];
    CGFloat delta_x = location.x - previousLocation.x;
    CGFloat delta_y = location.y - previousLocation.y;
 
    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);
}
%end
 
void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){
    std::vector<uint64_t> offsetVector;
    std::vector<uint64_t> hackedHexVector;
    std::vector<uint64_t> originalHexVector;
    
    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());
    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());
    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());
    
    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];
    [menu addHack:h];
}
 
void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];
    [menu addHook:h];
}
 
void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];
    [menu addHook:sh];
}
 
void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];
    [menu addHook:th];
}
 
uint64_t getRealOffset(uint64_t offset){
    return _dyld_get_image_vmaddr_slide(0)+offset;
}
Posted

This should work :/

 

#import "Macros.h"
#import "ModMenu.h"
#import "Hack.h"
#import "Hook.h"
#import "SliderHook.h"
#import "TextfieldHook.h"
#import <substrate.h>
#import <initializer_list>
#import <vector>
#import <mach-o/dyld.h>
 
/*****************************/
static NSString *const title = @""; //title of your menu
static NSString *const credits = @""; //who made the hack?
static NSString *const font = @""; //what font do you want the text to be? don't put anything for the default font
static UIColor *const themeColor = rgb(0x738282); //the overall color for the menu and the button
 
//replace the ? with anything from this list:
//https://ghostbin.com/paste/mbkfb
//or you could specify a custom color with
//rgb(0xCOLORCODE) ex: rgb(0x738282)
 
//a complete list of fonts can be found here:
//http://iosfonts.com/
 
//please refer to README.txt for more info.
/******************************/
 
uint64_t getRealOffset(uint64_t);
 
void addHack(NSString *, NSString *, NSString *, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>, std::initializer_list<uint64_t>);
void addHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);
void addSliderHook(NSString *, NSString *, NSString *, float, float, uint64_t, void *, void *);
void addTextfieldHook(NSString *, NSString *, NSString *, uint64_t, void *, void *);
 
static ModMenu *menu;
 
bool buttonAdded;
 
%hook 
 
- (void)applicationDidBecomeActive:(id)arg0 {
UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
 
UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+75, 30, 30);
openButton.backgroundColor = [UIColor clearColor];
openButton.layer.cornerRadius = 16;
openButton.layer.borderWidth = 2;
openButton.layer.borderColor = themeColor.CGColor;
[openButton addTarget:self action:@selector(wasDragged:withEvent:) 
forControlEvents:UIControlEventTouchDragInside];
[openButton addTarget:self action:@selector(showMenu) 
forControlEvents:UIControlEventTouchDownRepeat];
 
if(!buttonAdded){
timer((int64_t)1){
UIWindow *main = [UIApplication sharedApplication].keyWindow.rootViewController.view;
 
menu = [[ModMenu alloc] initWithTitle:title credits:credits fontName:font theme:themeColor];
 
/***********************
add your features below this multi line comment. they show in the order you have added them.
for example:
addHack(@"God Mode", @"Description of the hack", font, {0x252e1a}, {0x7047}, {0xf0b5});
multi offset hacks can be added like this (there is no limit to the number of offsets you can have!):
addHack(@"No Recoil", @"No recoil prevents any recoil from being applied when you shoot.", font, {0x356a7c, 0x110f0a}, {0x7047, 0x7047}, {0xf0b5, 0xf0b5});
parameters: addHack(hack name, description, font, offset(s), hacked hex(es), original hex(es));
 
to add a slider hook:
for example:
addSliderHook(@"Field of View Slider", @"Adjust the game's field of view with this slider.", font, 40, 120, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addSliderHook(hack name, description, font, minimum slider value, maximum slider value, function to hook, hooked function name, original function name);
 
to retrieve the value of the slider, use:
float val = [SliderHook getSliderValueForHook:@"hack name here"];
 
to add a textfield hook:
for example:
addTextfieldHook(@"Field of View Textfield", @"Adjust the game's field of view with this textfield.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addSliderHook(hack name, description, font, function to hook, hooked function name, original function name);
 
to retrieve the value of the textfield:
int val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] intValue];
float val = [[TextfieldHook getTextfieldValueForHook:@"hack name here"] floatValue];
 
to add a normal hook:
for example:
addHook(@"80 FOV", @"When on, your FOV will be changed to 80.", font, 0xc48ea6, (void *)_getFov, (void *)getFov);
parameters:
addHook(hack name, description, font, function to hook, hooked function name, original function name);
to see if the the user turned on the hook or not:
bool isOn = [Hook getHookOnForHook:@"hack name here"]
************************/
//add features here!
 
 
 
 
 
 
 
[main addSubview:openButton];
[main addSubview:menu];
 
buttonAdded = true;
});
}
 
%orig;
}
 
%new
- (void)showMenu {
[menu show];
}
 
%new
- (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)event
{
    UITouch *touch = [[event touchesForView:button] anyObject];
 
    CGPoint previousLocation = [touch previousLocationInView:button];
    CGPoint location = [touch locationInView:button];
    CGFloat delta_x = location.x - previousLocation.x;
    CGFloat delta_y = location.y - previousLocation.y;
 
    button.center = CGPointMake(button.center.x + delta_x, button.center.y + delta_y);
}
%end
 
void addHack(NSString *name, NSString *description, NSString *fontName, std::initializer_list<uint64_t> offsets, std::initializer_list<uint64_t> hackedHexes, std::initializer_list<uint64_t> originalHexes){
    std::vector<uint64_t> offsetVector;
    std::vector<uint64_t> hackedHexVector;
    std::vector<uint64_t> originalHexVector;
    
    offsetVector.insert(offsetVector.begin(), offsets.begin(), offsets.end());
    hackedHexVector.insert(hackedHexVector.begin(), hackedHexes.begin(), hackedHexes.end());
    originalHexVector.insert(originalHexVector.begin(), originalHexes.begin(), originalHexes.end());
    
    Hack *h = [[Hack alloc] initWithHackName:name info:description fontName:fontName theme:themeColor offset:offsetVector hackedHex:hackedHexVector originalHex:originalHexVector];
    [menu addHack:h];
}
 
void addHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    Hook *h = [[Hook alloc] initWithHookName:name info:description fontName:fontName theme:themeColor offset:0x251832];
    [menu addHook:h];
}
 
void addSliderHook(NSString *name, NSString *description, NSString *fontName, float minValue, float maxValue, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    SliderHook *sh = [[SliderHook alloc] initWithSliderHookName:name info:description fontName:fontName theme:themeColor offset:offset minValue:minValue maxValue:maxValue];
    [menu addHook:sh];
}
 
void addTextfieldHook(NSString *name, NSString *description, NSString *fontName, uint64_t offset, void *hooked, void *orig){
    MSHookFunction(((void*)getRealOffset(offset + 1)), hooked, &orig);
 
    TextfieldHook *th = [[TextfieldHook alloc] initWithTextfieldHookName:name info:description fontName:fontName theme:themeColor offset:offset];
    [menu addHook:th];
}
 
uint64_t getRealOffset(uint64_t offset){
    return _dyld_get_image_vmaddr_slide(0)+offset;

 

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

    • Monster Legends: Collect all Cheats v17.9 +8
      Modded/Hacked App: Monster Legends: Merge RPG By Socialpoint
      Bundle ID: es.socialpoint.MonsterCity
      iTunes Store Link: https://apps.apple.com/us/app/monster-legends-merge-rpg/id653508448?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🤩 Hack Features

      - 1 Hit Kill
      - Skip Enemy Turn
      - Multiply Attack
      - Multiply Defense
      - Insane Score (Always 3 Stars)
      - No Skill Cost
      - Auto Win
      - Auto Play Battle Enabled for All Maps


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/140543-monster-legends-collect-all-v1778-5-cheats-for-jailed-idevices/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/176914-monster-legends-collect-all-cheats-v1779-8/
      • 325 replies
    • Hardcore Leveling Warrior Cheats v1.3.3 +5
      Modded/Hacked App: Hardcore Leveling Warrior By SuperPlanet corp.
      Bundle ID: com.superplanet.lucid3.global
      iTunes Store Link: https://apps.apple.com/us/app/hardcore-leveling-warrior/id6737226714?uo=4

      Hack Features

      - God Mode 
      - One Hit Kill
      - Multiply Attack
      - Multiply Defense
      - PREMIUM (No Ads, Speed, etc ..)


      For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
       

      iOS Hack Download Link https://iosgods.com/topic/191048-hardcore-leveling-warrior-cheats-v111-5/
      • 66 replies
    • Dragons: Rise of Berk v1.95.22 +5 Cheats
      Modded/Hacked App: Dragons: Rise of Berk By Jam City, Inc.
      Bundle ID: com.ludia.dragons
      iTunes Store Link: https://apps.apple.com/us/app/dragons-rise-of-berk/id667461862?uo=4


      Hack Features:
      - Free Shopping (shows original cost but able to purchase regardless)
      - Free Skipping
      - Free Odin's Market Shopping
      - Odin's Market Packs Never Reduce
      - Currency Hack [Spend to Gain - reverts to zero on next launch]
      - Enable Rider's Club


      Non-Jailbroken & No Jailbreak required hack(s):  https://iosgods.com/topic/79228-dragons-rise-of-berk-v1794-4-cheats-for-jailed-idevices/


      iOS Hack Download Link: https://iosgods.com/topic/139612-dragons-rise-of-berk-v1794-6-cheats/
      • 673 replies
    • Archero Cheats v6.12.2 +5 [ God Mode & More ]
      Modded/Hacked App: Archero by HABBY PTE. LTD.
      Bundle ID: com.habby.archero
      iTunes Store Link: https://apps.apple.com/us/app/archero/id1453651052?uo=4&at=1010lce4



      Hack Features:
      - Multiply Defense to
      - Multiply Damage to
      - God Mode
      - OHK (Must use with God Mode)
      - Freeze Enemies

      NOTE: If you want to use god mode and ohk turn off multiply damage and defense first. I added multiply damage and defense there to avoid ban


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/100710-archero-v210-enemies-dont-attack-x30-attack/


      Hack Download Link: https://iosgods.com/topic/96783-arm64-archero-cheats-v220-5/
      • 15,847 replies
    • RPG AVABEL ONLINE Cheats v11.17.1 - [ God Mode & More ]
      Modded/Hacked App: RPG AVABEL ONLINE By ASOBIMO,Inc.
      Bundle ID: com.asobimo.AvabelOnline
      iTunes Store Link: https://itunes.apple.com/us/app/rpg-avabel-online/id606800657
       

      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:
      - God Mode 
      - Cast Speed Multiplier
      - Charge Speed Multiplier
      - Approach Speed Multiplier
      - No Roll CoolDown
      - No Skills CoolDown

      This hack is an In-Game Mod Menu (iGMM). In order to activate the Mod Menu, tap on the iOSGods button found inside the app. This hack works on the latest x64 or ARM64 iDevices: iPhone 5s, 6, 6 Plus, 6s, 6s Plus, 7, 7 Plus, 8, 8 Plus, X, Xr, Xs, Xs Max, SE, iPod Touch 6G, iPad Air, Air 2, Pro & iPad Mini 2, 3, 4 and later.
      • 2,144 replies
    • Mob Control v2.87.2 +7 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Mob Control By Voodoo
      Bundle ID: com.vincentb.MobControl
      iTunes Store Link: https://apps.apple.com/us/app/mob-control/id1562817072?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Skip'Its -> Earn or spend some.
      - Unlimited Stars -> Earn some.
      - Unlimited Bricks
      - Unlimited Earnt Bricks
      - Unlimited Cards -> Will increase instead of decrease.
      - No Card Requirement


      Jailbreak required hack(s): [Mod Menu Hack] Mob Control v2.78.0 +7 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/
      • 199 replies
    • Mob Control v2.87.2 +7 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Mob Control By Voodoo
      Bundle ID: com.vincentb.MobControl
      iTunes Store Link: https://apps.apple.com/us/app/mob-control/id1562817072?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Skip'Its -> Earn or spend some.
      - Unlimited Stars -> Earn some.
      - Unlimited Bricks
      - Unlimited Earnt Bricks
      - Unlimited Cards -> Will increase instead of decrease.
      - No Card Requirement


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Mob Control v2.78.0 +7 Jailed Cheats [ Unlimited Currencies ] - 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/
      • 105 replies
    • Erythros Lite v24.02.25 +8 Jailed Cheats [ Unlimited Everything ]
      Modded/Hacked App: Erythros Lite By VLADYSLAV PAVLIV
      Bundle ID: com.keyneed.erythroslite
      App Store Link: https://apps.apple.com/us/app/erythros-lite/id6740181005?uo=4

       
       

      🤩 Hack Features

      - Unlimited Health
      - Unlimited Stamina
      - Unlimited Food
      - Unlimited Water
      - Unlimited Sickness
      - Unlimited Experience
      -- Premium Enabled
      -- Anti Ban [ Untested ]
      • 0 replies
    • Erythros Lite v24.02.25 +8 Cheats [ Unlimited Everything ]
      Modded/Hacked App: Erythros Lite By VLADYSLAV PAVLIV
      Bundle ID: com.keyneed.erythroslite
      App Store Link: https://apps.apple.com/us/app/erythros-lite/id6740181005?uo=4

       


      🤩 Hack Features

      - Unlimited Health
      - Unlimited Stamina
      - Unlimited Food
      - Unlimited Water
      - Unlimited Sickness
      - Unlimited Experience
      -- Premium Enabled
      -- Anti Ban [ Untested ]
      • 1 reply
    • Vampire Survivors v1.13.109 +4 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Vampire Survivors By Poncle
      Bundle ID: com.poncle.VampireSurvivors
      iTunes Store Link: https://apps.apple.com/us/app/vampire-survivors/id6444525702
       

      Hack Features:
      - Damage Multiplier
      - Defence Multiplier
      - Unlimited Coins -> Spend some.
      - All Weapons Unlocked -> Head over to Options and toggle the Sounds button.


      Jailbreak required hack(s): [Mod Menu Hack] Vampire Survivors v1.6.104 +5 Cheats [ Damage & Defence ] - 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/
      • 115 replies
    • Vampire Survivors v1.13.109 +4 Cheats [ Damage & Defence ]
      Modded/Hacked App: Vampire Survivors By Poncle
      Bundle ID: com.poncle.VampireSurvivors
      iTunes Store Link: https://apps.apple.com/us/app/vampire-survivors/id6444525702
       

      Hack Features:
      - Damage Multiplier
      - Defence Multiplier
      - Unlimited Coins -> Spend some.
      - All Weapons Unlocked -> Head over to Options and toggle the Sounds button.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Vampire Survivors v1.6.104 +3 Jailed Cheats [ God Mode ] - 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/
      • 110 replies
    • Love Sparks: Make Me Blush v2.44.0 +2++ Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Love Sparks: Make Me Blush By SVEG MASHA, OOO
      Bundle ID: com.swagmasha.lovespark
      iTunes Store Link: https://apps.apple.com/us/app/love-sparks-make-me-blush/id1580105392?uo=4
       

      Hack Features:
      - Unlimited Gems -> Earn some.
      - VIP Enabled


      Jailbreak required hack(s): [Mod Menu Hack] Love Sparks: My Secret Fantasy v2.17.0 +2 Cheats [ Unlimited Gems ] - 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/
      • 887 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