Jump to content

Sterling0x1

Senior Member
  • Posts

    323
  • Joined

  • Last visited

Everything posted by Sterling0x1

  1. I see it’s standoff 2 that is. I’d expect the dev to fix all these hacks in the new game as I suppose it’s not just an update but an entire new game. I might dl it and take a look actually, I wonder what’s new
  2. When You’re trying to hire a dev for a project and she asks for the algorithms...

    1. Show previous comments  1 more
    2. Ted2

      Ted2

      Most important question tho: would you do her?

    3. Sterling0x1

      Sterling0x1

      That’s a stupid question, ofc I would lmao. But I’d rather have her develop my stuff :/ 

    4. Ted2

      Ted2

      Hahahah lmfao ??

      Btw, can't you do the project yourself? You have some skills, right?

    5. Sterling0x1

      Sterling0x1

      Yeah I know ida and I can do some tweaks. I need an iOS app developed that I don’t have the skill, time, and effort for but I do have some spare cash. If I find a dev who knows what he’s doing it’d be done in couple hours, I’d have to study probably weeks.

    6. Ted2

      Ted2

      Ahh okay ?

  3. The whole point of these offset dumps, is that other modders can see and learn different hacking techniques if interested enough. (like Laxus do) I might have updated offsets too somewhere, as far as I remember I did update this game in here unless they pushed new update since. I was clearly away for good ? I could provide the binary for the old version if anyone interested in updating this to latest version.
  4. Datatodtomapper did the server side check for currencies and inventory items. If you look at my hack you see how it works. I forced 1 on the server side check, so when you started the game the server got 1 currency sent from client that is why currencies and stuff reset to 1 on game start every time, that way we didn’t trigger ban then we just unlocked unlimited money in shooting range and done. You’re asking good questions, don’t be shy to ask if something not clear
  5. Not at the moment. I’ve spent hours trying multiple techniques, no result. Wouldn’t give much hope for this...
  6. Hell yeah it sniffs well, but do not support inject Good member in my sniff folder ahah
  7. Lately quite few people asked about branching, so I figured I make a little write up about it. It is not as advanced as it seems, if you understand the code flow and how branches manipulate that. Think about it this way. Branches will break the code flow and execute whatever is at the address where it points to. Similar to water, as it runs in rivers, or turns to a different direction, maybe a new path opens up... Code flow is similar, but we can use conditions ? Take a good look at this image. So what we see in there kinda explains what branches are and what they mean. I normally ignore conditional branches as "CBZ, CBNZ, TBZ, TBNZ" as I can get the same effect with a simple unconditional branch "B" to the right loc or a NOP. You can play with them, as you change them around, you'd get the opposite effect "CBZ to CBNZ" and so on. I'd stick with "B and BL" for now and some examples behind the logic. B - unconditional branching Branch hex value somehow looks like this: 05 00 00 14 05 00 00 - This is the distance between the start offset and target offset. 14 - branch's opcode. 1 - unconditional b 4 - branching to a forward address in binary So basically we branching 5 instructions (or call it 5 lines) forward (underneath if you look at it in ida). If it looked like this: 05 00 00 17 7 - branching to a backwards address in the binary. Some examples (note that this is most useful in binaries with symbols): That word hack game I hacked the other day. Developer left debug functions in the game so I hooked up existing menu buttons with those functions with simple unconditional branching. you find the debug function: BuyGem 100289D20 then find a button to hook it too. I normally search for "click, press" or if it has social media buttons you can search those. InboxButtonClicked 100074DF8 From here on its pretty straight forward. Load up armconverter.com go to branch tab and add the offsets: Current offset: 100074DF8 // inbox button Instruction to write: B #0x100074DF8 // unconditionally branches to BuyGem you get a hex value. Set that to first line of inbox button. Other example. look at this image so we have two options. premium and premium plus. If we want to force premium, we can use branch but if you take a look the offsets, you see we'd have to branch 1 line under so we can just simply NOP the instruction. if we want to get premium + we'd have to branch to that loc address instead. This way we can manipulate the code to flow the way we want it to without conditionals. BL - Branch with link This one works slightly differently. It takes the code flow to another function, executes that and flow returns to the original one and carries on. 80 F6 4B 94 80 F6 4B - distance between the two address 94 - Branch with Link's opcode 9 - Branch with link 4 - branching forward same as "B" if it was 97 it would branch backwards. Example: You find a game with cool down. BL StartCooldown Then you see this function: ResetCooldown Change it to BL ResetCooldown What happens in game? When it should execute the function that starts the cool down, it will reset it instead.
  8. Modded/Hacked App: Word Domination By MAG Interactive Bundle ID: se.maginteractive.worddomination iTunes Store Link: https://itunes.apple.com/us/app/word-domination/id1237172656?mt=8&uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: Modded Menu Buttons: - Link Device - Old Device: Complete Challenges - Link Device - New Device: Reset Challenge Cooldown - Statistic: add 1 friend recruit - Trophy: add 1 tournament win (untested as not lv5 yet) - Mail: Receive Gem 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/ Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If the hack is a Mod Menu, the cheat features can be toggled in-game. STEP 7: 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 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, post your feedback below and help out other fellow members that are encountering issues. Credits: - Sterling0x1 Cheat Video/Screenshots: N/A
  9. They probably patched the ship dur, this hack is like a year old. Feel free to post it. If you want send me a screenshot of the function and I show you what to bypass. I can’t remember of the top of my head ?
  10. I’ll update this one when I’m done with current projects, and update this topic.
  11. No. 1 line. 4 bytes. 01000014 goes one line under. 02000014 two lines and on
  12. You can post it mate, also the others. If you won’t understand something give me a shout and I’ll help.
  13. The 3rd. I forgot to put that in title. Fixed now ?
  14. Both droid and iOS [Hidden Content]
  15. 00e0bf12 converts to MOV W0, #0xFFFFFF in ARM64. is a branch hex value, I think I used it to bypass the node that called booster. it translates to something like this "b #0x1004"
  16. yeah feel free, also use any of the other game offsets I post, you just need to find them in recent binary, most of them probably still works.
  17. damage hack was tricky, it might got patched since multiplayer was added. Need to check android dll if so. [Hidden Content]
  18. I loved how you could avoid entire iap call in this game haha [Hidden Content]
  19. I have some cloudy memory about someone asking me for this ages ago, if you still around here you go [Hidden Content]
×
  • 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