Search results

  1. Tutorial How to unlink functions in IL2CPP and other native games

    This is SUPER helpful. Couldn't have enjoyed infinite health without it because the function was shared by AI in my game. Thank you so much it worked like a charm!
  2. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    No worries at all man, I fully understand. If the health function in Street Fighter had not been shared by AI, I would've succeeded in modding this native game without needing C++. Too bad these bastards shared the function LOL.
  3. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    No I'm not denying that I said it to him in PM. And thank you as well for your time and effort. I didn't realize I was working with 2 individuals. Next time please give me a heads up so I am not blindsided because I like to know who I am working/dealing with. Anyways thank you both again for...
  4. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    Where did I say that he was being condescending?
  5. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    Thank you again for everything. You have been wonderful! @DaRealPanDa . We can mark this as solved please!
  6. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    I didn't ask you to give it to me on a golden plate.
  7. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    Ok no worries and thanks again. I sent you a private message. Have you seen it?
  8. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    Yeah I am kinda new and I know what you mean. I've already modded a few il2cpp games and now I really wanted to mod this game which unfortunately isn't il2cpp. Thank you so much for the script conversion!
  9. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    A quick question, how can I use the script? Should i copy and paste the contents into main.cpp in LGLMod menu?
  10. Solved How can I unlink enemy-shared functions in IDA Pro? (not il2cpp game)

    Hi there, I am modding a non-unity Android game and I gave myself infinite health but the enemy got it too. How can I fix this? Unfortunately this tutorial wouldn't help as it's not a IL2CPP game :( https://platinmods.com/threads/how-to-unlink-functions-in-il2cpp-and-other-native-games.130436/...
  11. Tutorial [IDA tutorial] How to mod x86 lib .so file (Updated)

    Thanks so much for the tutorial. Could you tell me how I can unlink functions in IDA pro? When i modded to give myself infinite health the enemy got it too. It's a non-unity game btw.
  12. Help! Help modding an IOS game

    Sorry I rushed to ask! I think it's the incorrect instructions that's crashing it. My apologies! :lol:
  13. Help! Help modding an IOS game

    Hi there IOS experts, I've got a very old ios game I am trying to mod. I opened the largest file in IDA pro, modded some PUSH instructions for damage by changing them to MOV R0, #0 BX LR Then when I dragged the file back into the .zip file and renamed to .ipa and installed the...
  14. Tutorial GameGuardian Lesson – Searching encrypted “known” value.

    Did you search for an encrypted value?
  15. Tutorial Crazy list of HEX CODES

    You are awesome dude, many thanks!
  16. Help! Forcing arm64-v8a game to work with armeabi-v7?

    Okay, good to know.... Thank you!
  17. Help! weird bool hook problem

    Thanks a lot for the reply. When I tried this code the game crashed at the time it tried to execute the hack. When you say MemoryPatch is that the same as hex patch? If so, I already did and it works, thanks. But I was hoping to understand why my hook was acting weird. If "MemoryPatch" is...
  18. Help! Forcing arm64-v8a game to work with armeabi-v7?

    Indeed! Learning arm64 is on my to-do list, but I am starting with baby steps. I just finished my first arm32 mod (with a mod menu) and I feel great about it. But so far I've only been successful with hex patching. Been struggling a bit with hooking and unlinking for certain hack features. As...
  19. Help! Forcing arm64-v8a game to work with armeabi-v7?

    Thank you so much for the explanation. I really appreciate it. I learned something new!
  20. Help! Forcing arm64-v8a game to work with armeabi-v7?

    Thanks for the reply. Yes I know I can find it on apkmirror but I was wondering how these guys are able to get the armv7 version and subsequently do the same myself. I just don't comprehend how they are able to do that if the developers are no longer supplying the armv7 version. Is there...
  21. Help! weird bool hook problem

    I can either just hex patch it or leave it a bool hook but re-word the name of the cheat so that it's logical and makes sense for toggling on and off the switch :lol:
  22. Help! weird bool hook problem

    I was using it as: NoReaction = boolean; but I tried what you suggested and unfortunately it gave me a ton of errors.
  23. Help! weird bool hook problem

    No I'm not. Should I be??
  24. Help! weird bool hook problem

    Hi all, I made a bool hook for a player's reaction, which is simply true or false, but couldn't get it to work unless it's written like this: bool feature1, feature2, featureHookToggle, NoReaction = true; int sliderValue = 1, level = 0; void *instanceBtn; bool (*old_noreaction)(void...
  25. Tutorial How to merge split APK's into standalone APK

    Actually now I see that it doesn't really matter anyway. The apk that maintained the size expanded after installation. And the apk that doubled the size, kept it after installation. So basically the end result is the same Lol. I guess it would only matter for download speed, but it's not at...
  26. Tutorial How to merge split APK's into standalone APK

    Thank you so much for this method. A quick question, I have used the Apktool M app and was able to accomplish the same task, but in both methods the resulting .apk file becomes double the size of the .apks file. I have seen other modders maintaining the same size. Any advice on how I can do that...