-
Posts
689 -
Joined
-
Last visited
Everything posted by Taylor Meyer
-
Perfect Tanks buddy
-
Help/Support Weird hack/ feature stuff
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
omg that fixed it -
Help/Support Weird hack/ feature stuff
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
Sorry buddy I tagged you Can I do just make clean package I tried the remove spaces it still does it -
couldnt think of a better title because im so pissed off so i found 2 features for this game and Unlimited crystals and credits well they work perfectly fine i found ammo but couldnt test it because of the stupid dump B*** S*** problem whats happening is in my Tweak.xm i add the offsets and the stuff required so like this to where it says ************************/ //add features here! addHack(@"Unlimited Credits ", @"Sets credits to a huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); addHack(@"Unlimited crystals ", @"Sets crystals to a huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); addHack(@"Unlimited Ammo ", @"Sets ammo to huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- so i add and remove other deb and compile and i install new deb and the Unlimited Ammo feature doesn't appear in the mod menu so i change the features around so like this addHack(@"Unlimited Ammo ", @"Sets ammo to huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); addHack(@"Unlimited Credits ", @"Sets credits to a huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); addHack(@"Unlimited crystals ", @"Sets crystals to a huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); and i compile again and removed the other DEB and install new one well in the new DEB it just shows this in the mod menu addHack(@"Unlimited Credits ", @"Sets credits to a huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); addHack(@"Unlimited crystals ", @"Sets crystals to a huge amount", font, {0x123456789}, {0x12345678}, {0x12345678}); @RudePerson @Joka or anyone else
-
Help/Support Mod menu compiling error
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
Fixed it forgot to respond -
Help/Support Mod menu compiling error
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
Fixed it now -
Help/Support Mod menu compiling error
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
Removed -
Help/Support Mod menu compiling error
Taylor Meyer replied to Taylor Meyer's topic in Help & Support
Bump -
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
-
Free Updated Itools 4.4.5.6 cracked September 2020
Taylor Meyer replied to Taylor Meyer's topic in Freebies
Welcome -
Mod Menu Hack Mimo: Learn Coding/Programming Modded (All Versions) +1
Taylor Meyer replied to Laxus 's topic in Free Jailbreak Cheats
Thanks ?? -
Free Updated Itools 4.4.5.6 cracked September 2020
Taylor Meyer replied to Taylor Meyer's topic in Freebies
yes i will fix link Edit fixed -
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
-
nice
-
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 -
Mod Menu Hack Goosebumps® HorrorTown 1.03 [Free IAP] +2
Taylor Meyer replied to 0xSUBZ3R0's topic in Free Jailbreak Cheats
here ya go buddy https://www19.zippyshare.com/v/jtHJyL9D/file.html cracked using rasticrac -
?
-
I love you full homo