-
Posts
690 -
Joined
-
Last visited
Everything posted by Taylor Meyer
-
I keep getting tweak.xm at %orig error when compiling Making all for tweak Preprocessing Tweak.xm... Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Tweak.xm:110: error: %orig found outside of hook or subclass make[2]: *** [obj/Tweak.xm.18ae4c1a.o] Error 255 make[1]: *** [internal-library-all_] Error 2 make: *** [deadeffect2.all.tweak.variables] Error 2 I pointed the error out with <<<<<<<<<<<<<<<< here is my 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 = @" cheats"; //title of your menu static NSString *const credits = @"hacked by Taylor "; //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! addHack(@"Unlimited crystals", @"Sets crystals to a huge amount ", font, {0x123456789}, {0x12345678}, {0x12345678}); addHack(@"Unlimited Credits ", @"Sets credits to a huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); [main addSubview:openButton]; [main addSubview:menu]; buttonAdded = true; }); } %orig; <<<<<<<<<<<<<<<<<<< that's the error } %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; http://button.center = CGPointMake(http://button.center.x + delta_x, http://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; }
-
Nice buddy
-
Thanks
-
Nice buddy
-
Mod Menu Hack Mimo: Learn Coding/Programming Modded (All Versions) +1
Taylor Meyer replied to Laxus 's topic in Free Jailbreak Cheats
Thanks ?? -
Help/Support I try to compile package and get errors
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
NVM fixed it by changing writeData(0x123456789, 0xE0031D2A); to vm_writeData(0x123456789, 0xE0031D2A); -
Help/Support I try to compile package and get errors
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
i am pissed i hate theos with a passion nothing can ever be tgfgao* perfect it always has to be freaking errors now i get this Tweak.xm:5:1: error: use of undeclared identifier 'writeData'; did you mean 'vm_writeData'? writeData(0x123456789, 0xE0031D2A); ^~~~~~~~~ vm_writeData /var/mobile/twdcheats/writeData.h:110:6: note: 'vm_writeData' declared here bool vm_writeData(long long offset, unsigned int data) -
Help/Support I try to compile package and get errors
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
where do i get it at -
When compiling I get this it points to the 0 in 0xoffset also I have @DiDA theos folder Tweak.xm:5:11: error: implicit conversion from 'long long' to 'vm_address_t' (aka 'unsigned int') changes value from 4301151228 to 6183932 [-Werror,-Wconstant-conversion] writeData(0<-----------x123456789, 0xE0031D2A); here is my tweak.xm #include <substrate.h> #include "writeData.h" %ctor { writeData(0x123456789, 0xE0031D2A); } here is my makefile ARCHS = armv7 arm64 TARGET = iphone:clang:latest:latest #CFLAGS = -fobjc-arc #THEOS_PACKAGE_DIR_NAME = debs include theos/makefiles/common.mk TWEAK_NAME = twdcheats twdcheats_FILES = Tweak.xm twdcheats_FRAMEWORKS = UIKit twdcheats_LDFLAGS += -Wl,-segalign,4000 include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard" include $(THEOS_MAKE_PATH)/aggregate.mk
-
Bitdefender Total Security giveaway
Taylor Meyer replied to Oxytyramine's topic in Community Giveaways
I had Eset it's so good but that as***** blacklisted me from their servers -
?
-
I love you full homo
-
Hack HexaTech Unlimited VPN Proxy - Premium Hack!
Taylor Meyer replied to orgempire's topic in Free Jailbreak Cheats
Thanks -
Dungeon Quest v3.0.6 - Free Shopping Offset [ARM64]
Taylor Meyer replied to Joka's topic in Coding Center
Nice -
Download Charles proxy from here https://www.charlesproxy.com/download/ pick your platform updated 12/2/23 any version [hide] https://www.zzzmode.com/mytools/charles/ [/hide] and yes i tested and working PS: ^ site for crack is all in chinese here is in english Please select the correct version to be cracked. It is recommended to install the latest version, the official download address https://www.charlesproxy.com/download/ description This tool is used to generate the cracked charles.jar file. The blog introduces: usage Enter RegisterName (this name is free to display Registered to xxx), <------------------------------ Example Registered to XXXX when you enter the program it will display the name when entering and in help so you can pick a name select the locally installed version, click Generate, and download the charles.jar file. Replace the local charles.jar file macOS: /Applications/Charles.app/Contents/Java/charles.jar Windows: C:\Program Files\Charles\lib\charles.jar Optional new Keymaker for 4.6.5 12/2/2023 Tested no viruses and working 💹 Windows only 10 or 11 disable antivirus before use It is a command prompt-based tool you have to copy and paste the name you choose for Charles and copy the serial number from the window [hide]https://mega.nz/file/JZl0kA6B#CpUvHpO0micnXLFNjTUxExR1YP38No-HmV8JIl7dHIA[/hide] Notes: it looks like the other one above still might work but there was a new keymaker i found for 4.6.5 specifically
- 20 replies
-
- 33
-
-
-
-
-
nice
-
Im not trying to spread toxicity but i found this on R/Jailbreak i just wanted to see what everyone thought of the reply on here in the comments on this link https://www.reddit.com/r/jailbreak/comments/7w7n33/discussion_i_truly_encourage_everyone_in_the/dtz2c8g/?sh=8d3f5ab3&st=JDGSOCJD
-
-
Hey guys If you have immortal installed uninstall it ASAP do not install it Whats the problem? This tweak will delete the provisioning profiles of ALL of your apps, thus invalidating their signature, and making them open ONLY in the jailbroken mode.This will make your apps signed via Impactor not work in non-jailbroken mode. Here is the topic on reddit about immortal https://www.reddit.com/r/jailbreak/comments/7s74lq/discussion_if_you_installed_immortal_after_the/
-
- 1
-
-
Nice
-
download a tweak from hackyouriphone repo called ptrace pwner works on 8 and 9 i think 10 that will bypass anti debugging protection EDIT : if your having a issue with attaching i just realized you asked what does syscall do oops
-
Bump
-
Help/Support how do you crack apps that are app sliced?
Taylor Meyer replied to Serachrono's topic in Help & Support
Download the game using iTunes the app slicing feature is so annoying I agree