Jump to content

NIC Templates IGmm Error


Caroline_

27 posts in this topic

Recommended Posts

  • Replies 26
  • Created
  • Last Reply
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

Link to comment
Share on other sites

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 '.')

Link to comment
Share on other sites

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;
}
Link to comment
Share on other sites

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]

Link to comment
Share on other sites

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;	}	

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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;
}
Link to comment
Share on other sites

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;

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Our picks

    • My Cafe — Restaurant game v2024060.0.543 +6 Cheats
      Modded/Hacked App: My Cafe — Restaurant Game By Melsoft
      Bundle ID: com.Melesta.MyCafe
      iTunes Store Link: https://apps.apple.com/us/app/my-cafe-restaurant-game/id1068204657?uo=4


      Hack Features:
      - Gems Hack
      - Coins Hack
      - XP Hack
      - Increase Game Speed
      - Custom Dice
      - No Timer to Buy Event Energy

      Read Notes below  DO NOT BUY VIP FOR JUST THIS CHEAT


      iOS Hack Download Link: https://iosgods.com/topic/134270-my-cafe-%E2%80%94-restaurant-game-v20240211511-6-cheats/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 944 replies
    • Almost a Hero Cheats v5.7.3 +2
      Modded/Hacked App: Almost a Hero By Bee Square
      Bundle ID: com.beesquare.almostahero
      iTunes Store Link: https://itunes.apple.com/us/app/almost-a-hero/id1116630619?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Free Store (Buy Everything for FREE)
      - God Mode



      Hack Download Link: https://iosgods.com/topic/72622-arm64-almost-a-hero-cheats-all-versions-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 604 replies
    • Raising Poseidon Cheats v1.2.85 +1
      Modded/Hacked App: 포세이돈키우기 By kim myungjun
      Bundle ID: com.mouseduck.seawar
      iTunes Store Link: https://apps.apple.com/kr/app/%ED%8F%AC%EC%84%B8%EC%9D%B4%EB%8F%88%ED%82%A4%EC%9A%B0%EA%B8%B0/id1614789798?uo=4


      Hack Features:
      - Infinite Currencies


      iOS Hack Download Link: https://iosgods.com/topic/169377-raising-poseidon-%ED%8F%AC%EC%84%B8%EC%9D%B4%EB%8F%88%ED%82%A4%EC%9A%B0%EA%B8%B0-cheats-v1200-1/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 122 replies
    • Idle Theme Park - Tycoon Game Cheats v5.2.4 +1
      Modded/Hacked App: Idle Theme Park - Tycoon Game by Digital Things Sociedad Limitada
      Bundle ID: com.codigames.idle.theme.park.tycoon
      iTunes Store Link: https://apps.apple.com/us/app/idle-theme-park-tycoon-game/id1460772578?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash


      iOS Hack Download Link: https://iosgods.com/topic/116320-arm64-idle-theme-park-tycoon-game-cheats-v210-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 514 replies
    • updated
    • Pocket Partner! v1.0.10 +1++ Jailed Cheat [ Cheat Menu ]
      Modded/Hacked App: Pocket Partner! By HyperBeard Inc.
      Bundle ID: com.hyperbeard.pocketpartner
      iTunes Store Link: https://apps.apple.com/us/app/pocket-partner/id1627018340?uo=4


      Hack Features:
      - Cheat Menu -> Head over to Settings and toggle the Privacy Options button.


      Jailbreak required hack(s): [Mod Menu Hack] Pocket Partner! v1.0.10 +1++ Cheat [ Cheat Menu ] - 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/
        • Like
      • 0 replies
    • Pocket Partner! v1.0.10 +1++ Cheat [ Cheat Menu ]
      Modded/Hacked App: Pocket Partner! By HyperBeard Inc.
      Bundle ID: com.hyperbeard.pocketpartner
      iTunes Store Link: https://apps.apple.com/us/app/pocket-partner/id1627018340?uo=4


      Hack Features:
      - Cheat Menu -> Head over to Settings and toggle the Privacy Options button.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Pocket Partner! v1.0.10 +1++ Jailed Cheat [ Cheat Menu ] - 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/
      • 2 replies
    • The Doomsland: Survivors v1.5.3 +2 Cheats
      Modded/Hacked App: The Doomsland: Survivors By Shanghai Guyue Network Technology Co.,Ltd
      Bundle ID: com.mybo.doomsland
      iTunes Store Link: https://apps.apple.com/sg/app/the-doomsland-survivors/id6443483414?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:
      - One Hit Kill
      - God Mode


      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 has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press '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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 81 replies
    • [18+] - Ark ReCode v1.2.0.87564 +2 Cheats
      Modded/Hacked App: Ark ReCode By EroLabs
      Bundle ID: com.nerversoft.ark.recode
      iTunes Store Link: https://www.ero-labs.com/en/game.html?id=32


      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:
      - Damage Multiplier
      - Defense Multiplier


      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 has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press '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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 361 replies
    • Mini Tennis v1.7.3
      Modded/Hacked App: Mini Tennis: Perfect Smash By Miniclip SA
      Bundle ID: com.miniclip.minitennis
      iTunes Store Link: https://apps.apple.com/us/app/mini-tennis-perfect-smash/id1615962417?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:
      - Custom Movement Speed (not shared with opponent)
      - Always Perfect Shots (not Shared with opponent)
      - Unlimited Stamina (not shared with Opponent)
      - Always Get Max Reward for Lucky Shot mode
      - Target in Lucky Shot Mode Does Not Move (makes it easier to hit lol)
      - Surprise Feature (just hit the shop button when turned on  and you will see)
      - Surprise Feature 2 (just play, get card pack and start unlocking as usual  )


      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 has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press '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:
      - XxReddingtonxX


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 199 replies
    • Cafeland - World Kitchen v2.23.8 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 460 replies
    • PunBall Cheats v4.10.1 +2
      Modded/Hacked App: PunBall By HABBY PTE. LTD.
      Bundle ID: com.habby.punball
      iTunes Store Link: https://apps.apple.com/us/app/punball/id1585781366?uo=4


      Hack Features:
      - Dumb Enemies
      - One Hit Kill


      iOS Hack Download Link: https://iosgods.com/topic/151406-punball-cheats-v100-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 645 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