Search results

  1. 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/...
  2. 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...
  3. 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...
  4. Help! Forcing arm64-v8a game to work with armeabi-v7?

    Hello fellow platinians! I have a question for the experts. The game I am modding has forced me for an update from the google play store and now instead of armeabi-v7 folder it has arm64-v8a folder. I hate modding arm64 because it's harder. I downloaded a mod for the same game from some...
  5. Help! getting 0 health instead of infinite....

    Hello, Wondering if someone could help me. I am trying to give myself infinite FLOAT HP in an ARM64 game but whenever I use ARM: movz x0, #0x7f80, lsl #16 ret HEX: 00 F0 AF D2 C0 03 5F D6 I get 0 health instead of infinite health. Also tried using this to return high value: ARM: MOV X0...