Help! Question about gray screen lgl menu 3.2

ArmorTage

Solid & Active Platinian
So, hello.

I made mod apk, by lgl, but when i open game, i get gray screen and nothing happen, mod menu not appear, but i give permissions in settings before open game.

Game only armeabi-v7a.

Maybe there wrong in my code?

! Hidden Content !
You must be signed up and reply to the thread or click 'Like' under this post before you can see the hidden links contained here.
You might need to refresh the page after pressing like. If you still facing issues revealing the hidden links, please read this.
Game: Constellation Eleven
 
Change this:
Code:
 *(float *) ((uint64_t) instance + 0xE8) = 999999.0f;
To this:
Code:
 *(float *) ((uint32_t) instance + 0xE8) = 999999.0f;

this is because as you mentioned, its an armv7 only game. So uint64_t wont work for it since its 32bit
 
It doesn't matter; 64 bit data can be perfectly managed by Android armv7.
it is more likely game has some anticheat or op has messed somewhere else.

@ArmorTage what do the logs show? What happens when you install and run debug-app?
I use АIDE on Android. Xiaomi mi note 10 lite phone with 11 Android on board. I did everything according to the instructions and after the public compilation I signed it in apktool m. If you just open this apk mod menu, without playing, then everything opens perfectly and asks for permission, but if you add it to the apk, I get a black (amoled screen) screen and nothing happens, does not require permission on top of other applications. From the decompiled via the apktul, I moved my med library and smali files, only I didn't move the dex file into the game, maybe because of this everything doesn't work?
 
@Yaskashije i try 2.9 version
Screenshot_2022-07-29-14-56-40-927_ru.maximoff.apktool.jpg
Screenshot_2022-07-29-14-56-55-949_ru.maximoff.apktool.jpg
 
Back
Top Bottom