-
Posts
810 -
Joined
-
Last visited
Everything posted by i0s_tweak3r
-
Tool Flex Converter: Convert your flex patch to tweak code in no time!
i0s_tweak3r replied to imp0ss1ble's topic in Tools
Just takes a small fix you can do yourself.... If you upgraded to Flex3 make a symlink at "/var/mobile/Documents/Flex/patches.plist" pointing to "/var/mobile/Library/Application Support/Flex3/patches.plist". I noticed Flex3 stores it's patches in 2 new places, but both are identical .plist files, only difference is name (one is called "Flex3Patches.plist"). The symlink fix works. Gotta rename the original patches.plist file or delete it first tho obviously. I've made 2 successful tweaks from patches using the tool with the symlink fix. Oh, and OP's Source Code was posted too in coding section. ???? -
Thanks! Was hoping for the source code for that. The package has a few bugs (which I know you're aware of) but for the most part is totally awesome! I've got a million flex patches I never submitted to cloud or were rejected because they hacked the IAP functions. Now I can share them with my other devices (and iOS Gods if it's something they haven't hacked yet) without having to start from scratch. After installing the tweak, you type "FlexConverter name_of_ur_patch_to_convert". It then copies to clipboard and displays in terminal most of what your tweak.xm file (in the project folder you created using nic.pl) is going to need. Nullified functions and ones with multiple arguments require you to do some small steps to get it working in Theos, then made into a deb. If you get an error that your patch couldn't be found, it is probably because you have a newer iOS and/or newer version of Flex, or your spelling wasn't case-sensitive, which it needs to be. Also you could have multiple patches with same name that would give an error. FlexConverter doesn't have support for Flex 3(at least not since i downloaded it last), but an easy fix for that is to just put a symlink for patches.plist, the one found at (/var/mobile/Library/Application Support/Flex3/patches.plist) pointing from where Flex2 and earlier versions stored patches (/var/mobile/documents/flex/patches.plist). Make sure you remove the old patches.plist (rename it or move to other folder- it could come in handy later.) Edit: I think I'm going to try modifying line 20 of the source code so the tweak can process patches made in Flex3. Gonna change to: NSArray* patches = [[NSDictionary dictionaryWithContentsOfFile: @"/var/mobile/Library/Application Support/Flex3/patches.plist"] objectForKey: @"patches"];Then copy paste build an updated version of project for myself, if OP doesn't mind.
-
Just set up theos on my iOS 10 device, was able to use nic.pl, compile a simple tweak, but got a bunch of errors trying to make package. Any ideas? Errors.txt = var/mobile/proobjc/theos/makefiles/targets/Darwin-arm64/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang./var/mobile/proobjc/theos/makefiles/targets/Darwin-arm64/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.Making all for tweak ProObjC... Linking tweak ProObjC...ld: library not found for -lobjcclang-3.7: error: linker command failed with exit code 1 (use -v to see invocation)make[2]: *** [obj/ProObjC.dylib.64873355.unsigned] Error 1make[1]: *** [internal-library-all_] Error 2make: *** [ProObjC.all.tweak.variables] Error 2
-
Is open SSL supported with Yalu jailbreak?
-
So I played around with Flex tweak and all it needed was the very first hook to work. I edited tweak.xm to just have the one hook needed, the easiest one, and it builds deb, I install it, and it still doesn't work. However I built a simple tweak to App Store today and that built, installed and worked (disabling "Update All" button). Thanks everyone who's helped. I just want to understand why the tweak from this thread isn't working. The flex patch does. I know I have the right hook and it's modified correctly. Bash(pun intended)ing my brain right now.
-
Patcher Hack [All Versions] Sing! By Smule VIP Unlocker
i0s_tweak3r replied to DragonRising66's topic in Free Jailbreak Cheats
Has anyone gotten banned after using the cheat? I've been using this app for years, have like 18,000 followers, and am tired of paying for VIP but afraid to risk losing account. @OP This hack just works on app correct? If you go to smule website you wouldn't be able to upload original songs like you could if gl had real VIP right? Also it wouldn't display VIP to other users, just to the user using hack? -
Apple cert and mobilprovision giveaway Round 2
i0s_tweak3r replied to Gav1474's topic in Community Giveaways
And the winner is? / was? -
And a quality tweak it is! Thanks again. I've been making Flex patches for 2-3 years at least. Made first original tweak giving Pro version of "Sketches" app few days ago. https://iosgods.com/topic/47308-free-pro-version-of-sketches-app/
-
Yeah no prob. I edited tweak.xm hoping this would work but I still can't seem to make arg1 null in the bottom hooks. %hook MyTransactionObserver-(bool) purchased {return TRUE;}%end%hook MyTransactionObserver-(void) setPurchased:(bool)arg1 {return %orig(TRUE);}%end%hook MyTransactionObserver-(void) failedTransaction:(id)arg1 {return %orig(NULL);}%end%hook LBCategoryViewController-(void) configureNormalCellForInAppPurchase:(id)arg1 fromIndexPath:(id)arg2 {return %orig(NULL, arg2);}%end%hook LBCategoryViewController-(void) configureGlossaryCellForInAppPurchase:(id)arg1 fromIndexPath:(id)arg2 {return %orig(NULL, arg2);}%end Link to app for tweak: Objective C Reference Lite by Lucian Boboc https://appsto.re/us/XQJ3y.i Edit: Downloaded iOS 9.0 sdk, changed target in makefile and just used first two hooks in tweak.xm,it compiled and now works.
-
I googled internal package error 2 and found a project that compiled but wouldn't build like mine. Its problem was using symbols in the com.yourcompanyname.yourtweakname, which I used an "_" in. I used NIC to make new version without symbols in name, and copied tweak.xm to new patch, with the updated code from the beginning of this thread. It compiled, built the deb and installed- unfortuneately I'm back to the original problem. Tweak doesn't work. The hooks with more then one argat the bottom of the tweak.xm are what's not working. The flex patch I based the tweak off of does work, so I'm confident I have all the right hooks, the code is just returning the %orig for both args it seems. Something is wrong here I believe
-
Sorry hope I don't get in trouble for posting this basically twice, but the original post in Cydia Substrate hacks might have been better placed here, as most are game hacks. Anyone looking for a good free version of a multilayer design iOS app, I made a tweak to give "Sketches" the pro features for free. It can be downloaded here. https://iosgods.com/topic/47308-free-pro-version-of-sketches-app/
-
I just built a new project so I could get a fresh compile, and not worry if I messed up the tweak version in one of the control files. It compiled, but I got an error building the package from an apparent missing symlink, which is weird cause the makefile and Theos symlink are the same as a tweak I compiled and shared earlier today. Anyway, here's the Errors.txt file
-
Hack Free Pro Version Of Sketches App
i0s_tweak3r replied to i0s_tweak3r's topic in Free Jailbreak Cheats
Thx for checking it out! ???? -
Tool Flex Converter: Convert your flex patch to tweak code in no time!
i0s_tweak3r replied to imp0ss1ble's topic in Tools
This is awesome! Used it once already. It's having trouble finding a patch I just made tho. I've tried respringing, enabling and disabling the patch. Do I have to upload it to cloud for it to work? Edit: Figured out dirty fix. This tweak only searches for flex patches made in old location, where Flex 2 patches were stored. In order to get it to recognize patches made in Flex 3 you have to open the Flex3patches.plist, copy your patch, delete the api version portion of it, then paste it into the patches.plist in the old location. @OP If you could edit the tweak to search the Flex3patches.plist that would make it even more cool. Also, it doesn't recognize "null" when used to nullify what's returned to a function. If you could update that it'd be nice too. I'm not complaining- just mentioning issues I've encountered. -
Should support iOS 9.0 and higher. Tested on iOS 9.3 and 10.0.1 Disables Jailbreak Detection, Enables Multilayers, adds other Pro Features Link to app: Tayasui Sketches: Draw and paint like on paper! by Tayasui.com https://appsto.re/us/3eQqM.i This is a really cool iOS version of a multilayer photo editer/ paint shop drawer, etc. [Hidden Content] Note: This is my first original tweak made on mobile device using theos. Was previously a flex patch that got taken down I guess because it hacks App Store / in-app purchase elements. To install: Download app. Download tweak. Open in Filza or iFile. Hit "Install" then Respring. Enjoy. To notice benefits of tweak open app (then close it) before installing tweak, see how limited the features are, then install tweak. ????
-
Apple cert and mobilprovision giveaway Round 2
i0s_tweak3r replied to Gav1474's topic in Community Giveaways
I will do my best to use them to make patched/ cracked versions of the apps uploaded using the certs/ provisioning profiles, and share with community. I'm new so no worries if I don't get picked. Just thought I'd try. ☺️