Jump to content

Mister SirCode

Senior Member
  • Posts

    281
  • Joined

  • Last visited

Everything posted by Mister SirCode

  1. Hey theres a problem with your terraria hack, If you use the item summoner on multiple types of items, different ids, it sometimes give you the id you used BEFORE that one

     

    so by the time youve summoned ten different IDs, you spamming it and its just giving you random items basically.

     

    once tried to get a picksaw after using it 20 times, took me 56 tries to get a picksaw, and my inv was full of terrablades, lifefruits, and other such rares.

     

    I thought it may have had to do with the item count, but even after disabling both item and item count, closing gui, reopening and trying again, this glitch always occurs.

     

    Its almost as if your saving the item ids in an array, and its randomly using 1 from the array, rather than the ID you chose

    please reply if you plan on fixing this, its a really cool hack, its just sorta buggy

    1. Zahir

      Zahir

      Status essay :hyper:

    2. bus991

      bus991

      I can’t really help it and I’m not storing it as an array, it using the item ids built into the game and some times when you press the switch it sometimes saves the previous item you wanted to spawn

    3. Mister SirCode

      Mister SirCode

      So theres no way to fix this? Rip.

  2. When I find a function in a non unity game, I see lots of adresses. How do I tell which one is the correct value, and how do I edit the hex value. tweaks require an Offset, Hacked Offset, and a Hex. So how do I find these.
  3. well I tried it again and it still froze and crashed, but I think I have an excess UIKit in my makefile, Ill remove it and see if that fixes it, I had added it to try and make a popup before using an older method Edit: nope didnt fix it heres my full tweak.xm now https://hatebin.com/shybirvrvh like do you know if any CAN or anyone HAS already made a MSHook hack that works, like an example hack I tend to learn better from seeing examples of things. If you know of any working hacks with an example tweak.xm I could see, id appreciate it
  4. After today, Will mark my first year of highschool, working a career in Webdev and Software engineering. Its been fun here in my free time, spending all summer trying to learn how to making debian packaging tools, and fun little DIY hacks. Dont worry! Im not going to leave forever, but I will be visibly on much much MUCH MUCH less often, as now I have a REAL Software job, and taking full courses on Medical/Biomedical Technology and Chemistry, English, advanced Sciences, Math 1, and other complicated subjects. I hope to see everyone soon! Today will be my last day here for a "while" well, thats all Im able to say. Cya guys
  5. new signature to fit my PFP!!!

  6. moved to this topic: https://iosgods.com/topic/107341-tweak-compiles-fine-but-fails-to-affect-the-game/#comment-3223082
  7. Sileo is LEGIT TRASH

  8. thats why you dont use sileo, google deb for localaipstore, and install it using filza Sileo is LEGIT TRASH
  9. App Library stuff is moved to "/var/mobile/Library" App Documents and Game Save Data is moved to "/var/mobile/Documents" and App Preferences (Like the .plist control files for the app, sometimes stores game save data): is moved to "/var/mobile/Library/Preferences" When your in preferences or library, there will be alot of apps, youll just have to LOOK for your app in the mess
  10. @PrincessJayJay Thats why I use Mega.nz for all my downloads on my hacks :P iOSDDL is good, but its not the BEST site. I just find that mega.nz is much easier to use because it is it's own little "file explorer" and if one of your links go down, you can instantly refresh it Plus I use it because I can upload files to it on IOS through it's app. Cuz Im too lazy to SSH or mail the files, as some files are just too big, Like IPAs and executables/binaries
  11. I dont know how Lol I know, this is just a "test" if you will. To see if it works well This is one of the few apps that will disable their entire Application Advertisement system with just one function ( -(bool)showAds )
  12. So I made a MSHook app based on this tutorial: I managed to setup my Tweak.xm like so: #include <substrate.h> bool showAds() { return false; } %ctor{ MSHookFunction(((void*)MSFindSymbol(NULL, "__CRVideoPlayerViewController_showAds_")),(void*)showAds, NULL); } Based on the tutorial, this should return FALSE for showAds. In flex 3, this 1 function prevents ALL ads from appearing. It doesnt seem to work when I add it to my tweak.xm when I did the "make package" command, it compiled fine, no errors, Just for reference. I DID ADD IT TO MY Info.plist!!! Meaning it should be targetiing Crunchyroll's BID: "com.crunchyroll.iphone" my info.plist (crunch2.plist): { Filter = { Bundles = ( "com.crunchyroll.iphone" ); }; } Im getting zero errors on compilation, am I doing something wrong here?
  13. ok ill grab some errors 3 errors of my page, I tried capturing as many as I could, there were alot https://imgur.com/a/sR3UKDZ
  14. Im sorry, my battery died today, and everything got revoked (Blame retarded apple) and I dont have uncover rn, so I cant provide screenshots anyways, thankyou for the help youve provided so far as of now
  15. I believe the Documents folder is universal. System applications store save data in it, and all downloads / transfers are sent there. try out the documents folder in filza.
  16. Could you visit my coding help support post I posted yesterday, It seems people are visiting the latest ones but ignoring mine.

     

    I was having toruble with manual MSHook, like making a tweak

     

    Specifically this post: 

     

  17. Say you have a patch, And you wanna share it to your friend without adding it to the cloud, BUT HE HAS REAAALLLY important patches and doesnt wanna replace his patches.plist with YOURS. heres a "semi" simple Fix. Each patch is a Dictionary. A Simple little "holder" if you will. All the patches in your list are structured like this: The tutorial continues in the code itself below. I WILL BE MAKING A TOOL THAT DOES THIS FOR YOU SOON!! (Uh, Hopefully, I gotta figure out how to edit Xml in Javascript) <?xml version encoding> <doctype telling the code that its a plist file> <plist version> <dict> <!-- (this is the first dictionary, It holds ALL of your patches) --> <key> <!-- patches --> </key> <!-- (Name Of the List) --> <array> <!-- (Start of the list) --> <dict> <!-- (This is a patch) --> <!-- Inside each patch is a ton of blah blah stuff that people normally don't want to read. (Keys, strings, more arrays and dictionaries) --> <!-- Look for the <string> that has the <key>name</key> right above it (THIS IS YOUR PATCH NAME) --> <!-- Look for the patch you want, and Copy the ENTIRE <dict> --> <!-- Edit your friend's plist file in a text editor (on filza file manager, hold down on file and scroll right on the dialog, find text edit) --> <!-- paste the dictionary at the very top of the file, RIGHT AFTER THE VERY FIRST <array> that represents (start of list) --> </dict> <!-- (This is the End of a patch) --> <dict> <!-- (This is a patch) --> </dict> <!-- (This is the End of a patch) --> <dict> <!-- (ETC) --> </dict> <!-- (ETC) --> </array> (End of the list) </dict> (End of Code)
  18. Want to Start Hacking with Flex 3? What is Flex? Flex is a tool that uses a special method of exploiting called "MS Hook" which long-term stands for "Mobile Substrate Method Hooking". Which, in a simple definition, finds the BID of the app you desire. BID: ("Bundle ID". Ex: com.companyName.appName) and then it Injects itself INTO the app with that BID, and Once the app opens, it looks for those functions you found in flex. The said functions are then searched for inside the app Live as you’re playing it, and then the values are changed to what you specified. How do I start? Flex isn’t that complicated, it’s a simple program that patches methods. So, First “Acquire” Flex 3 Beta by tapping this: GetDelta | Home of Flex Then tap "Add to Cydia" This will ask you to add Flex 3’s Official Repository (getdelta.co) to Cydia Automatically. Next, Go into Cydia, Tap the Search Button. Search for Flex 3 Beta, make sure it is from delta. Finally, Install it, Respring if it asks, And go into Flex. You’re Done. How do I hack now? This is the ULTRA easy part. Simply press the big + Symbol in the top right corner. Now scroll around, Explore your options, Find a suitable app to hack! Please keep in mind, Flex 3 RARELY Works for Fully Multiplayer games, and usually most “Important” Methods are stored in an external Server. Once you have the app you want, Tap it, You should see this: Tap the title and call it whatever you want, it isn't important. After your done, tap Add Units... and it should bring you to this screen: Your going to want to tap the item under the Executable tab, This is the main Access to you're game's Internals. It SHOULD bring up this little dialog: Tap Yes/Process Sometimes it will Open the app your hacking to Process it. Other times it will just take a while to Process and do nothing for a few seconds. If it brings up a dialog saying it failed to Process, Simply tap Process again and quickly close Flex3 and Open the app your hacking for like 10 seconds. Then go back to Flex3 and it should be processed. NOW, Tap the little "executable" AppName Button from before. Except now that long button should have a little white > on the right side. That > means its processed, Tap it and it should bring up a black search bar and a ton of random stuff you might not understand below it. Tap the search bar and type something cool. Like Hunger or Health. Sometimes you will get a Class full of methods for the word, or you might just get a Method. OR if your unlucky, you will get nothing. Now, If you get a class, and it looks interesting, Tap it, and it will open another search page INSIDE of that Class, and you can scroll around or search for a method you like. Some good examples can be things like: just search another term, or scroll around. isFull(bool) hasFullHealth(bool) Health(int) May be you DONT have a class, just a method, or a few, Find the one you like, And TAP it. Once you have that method tapped, Its saved. Tap the back arrow until you get back to the page with the Title and Add Units... button. You should see the normal UI, but WHATS THIS!?! You have a magical new thing at the bottom, it has the same name as the method you picked earlier: For Example, I picked a Health value, So its going to add the health method to my list, Anyways, Tap the method you like or picked or whatnot. You should see a Ui like this: If you picked a method like this with multiple values, the list in the picture will be bigger: -(float)PlayerNameIs: (id)WithID Tap the "Return Value (Value Type)" This is your Value, You can edit it. It should open a 2 list page. Tap the "pass-through" it will ask to edit it, Say yes, It should result in this page: Its asking for an override value. This is where you can get creative and put whatever you want. Once your done typing your Enormous number or whatnot, Tap DONE Ok, Thats it, Just back out to the main page, and tap the switch next to your patch. Then exit flex3 and go to your game. If the game allows that method to be hacked, it should change it I hope you enjoyed this tutorial. It took me a while to make. Tap that little blue heart if you want to give me a little rep while your at it Thankyou for your time. Edits: Sorry about the getdelta.co link breaking when i first posted, I fixed that Also if you need any help with anything else, feel free to ask in the comment section
×
  • 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