Continuing to Mod Pixel Gun 3D, But I Keep Hitting a Snag

Wolzen Two

New User
28
10/04/17
3
Thread Author
Late update for anyone who read my previous post. I've put this project on hiatus and had came back to it recently with more coding experience.
However, I keep hitting a Snag whenever I modify any code in the apk. For some reason, the game halts at 82% when I load any test mod apk. I don't know which part of the process I messed up on, whether it's the recoding or the apk signing, but the game just refuses to load. Anybody with more experience could lend out some pointers? Any help is appreciated.

For what I did in recoding:
I replaced the get_hp variable with a NOP code in hopes of freezing my health value in-game(godmode).

In singing:
The apk was automatically signed with Apk Easy Tool ver. 2.3.4
example[1].webp
 
By noping the getHp you don't assign any value to it so ofc game will reject it and freeze, crash and so on
Making God mode by freezing hp this way ? Will never work
 
Thanks. I'm still new to coding, so I'm still experimenting. However I did use FF 0F 0F E3 the in placement of the get_hp method on another test run and it still didn't work.
 
80587

This is the get_hp method and the corresponding offset with its original code.
 
This is for you.
you will need to return a float value anything else might freeze the game or make your health 0

try this 00 0C 03 E3 1C 06 44 E3 that's 9999 in float

Edit: then of course return it so your hex will be like this 00 0C 03 E3 1C 06 44 E3 1E FF 2F E1 this should freeze your health at 9999
 
Last edited:
you will need to return a float value anything else might freeze the game or make your health 0

try this 00 0C 03 E3 1C 06 44 E3 that's 9999 in float

Edit: then of course return it so your hex will be like this 00 0C 03 E3 1C 06 44 E3 1E FF 2F E1 this should freeze your health at 9999
"Return it"? I don't understand your terminology.
 
Return means = Bx lr which is in hex = 1E FF 2F E1 i already put that in hex in my previous reply
80677

This is how I implicated your hex string into the code. I came to make sure this was correct before saving. If it is correct, can I re-implement this into the get_attack method by copy-pasting?
 
[Attachment removed from Quotes]
This is how I implicated your hex string into the code. I came to make sure this was correct before saving. If it is correct, can I re-implement this into the get_attack method by copy-pasting?
Yeah that's right
 
Sad then, cause this change still didn't fix the problem. I'm starting to think that my troubles may be associated with a boolean, but as of my method searching, I haven't found any booleans that correspond to player bans. But then again, some of the data is in another language.
 
Sad then, cause this change still didn't fix the problem. I'm starting to think that my troubles may be associated with a boolean, but as of my method searching, I haven't found any booleans that correspond to player bans. But then again, some of the data is in another language.
did you try to run the game without any changes and see if it doesn't freeze ?

also send me the link for this game
 
Try this ... get fresh apk don't edit anything .. just sign it then try it .. if it get stuck then most likely it's a signature check
I tried what you said and it still didn't work. So at least we know the problem now, but how can it be fixed?
 
I tried what you said and it still didn't work. So at least we know the problem now, but how can it be fixed?
i can't help you with that you'll have to search for a way to bypass the signature check try searching in the apk or try searching in google how does the signature work to have an idea on how to bypass it .. good luck..!!
 
80946

I found a Boolean that could possibly correspond with the signature check. Could I replace this method with a NOP code and be on my way?
i can't help you with that you'll have to search for a way to bypass the signature check try searching in the apk or try searching in google how does the signature work to have an idea on how to bypass it .. good luck..!!
 
Back
Top Bottom