Solved Mod Menu

Status
Not open for further replies.

Tiahh

Solid & Active Platinian
Jan 12, 2018
75
44
18
37
If you downloaded the LGL Mod menu and didn't modify the java code, all is already set.
For use the seekbar just add a String inside the array in main.cpp
Ex:
"SeekBar_Speed Hack_0_300"
It will create the seekbar.
 

ridhop

Platinian
Original poster
Apr 3, 2020
16
8
3
20
Indonesia
If you downloaded the LGL Mod menu and didn't modify the java code, all is already set.
For use the seekbar just add a String inside the array in main.cpp
Ex:
"SeekBar_Speed Hack_0_300"
It will create the seekbar.
can you give an example to place the offset and velue hex ... please
 

HizroMxDz

1/3 Games Approved
Dec 25, 2019
92
95
53
x____x
If you downloaded the LGL Mod menu and didn't modify the java code, all is already set.
For use the seekbar just add a String inside the array in main.cpp
Ex:
"SeekBar_Speed Hack_0_300"
It will create the seekbar.
Wow, that is not gonna help any beginners !
 
  • Like
Reactions: Balca55

carlygamer31

Rookie
Feb 7, 2022
1
0
13
31
Philippines
Hi, I hate to post this in a nearly year old post but I wanted to ask a question regarding mod apps and their respective menus. I can't seem to post in this forum for some reason :( Anyway, I noticed that my mod menu's from all games seem to disappear when ever I minimize the app to check something online or a text message. I usually have to turn off the app fully and then reopen it for the menu to appear again. Is this normal or is there a solution to fix this without having to close the app and restart it? Thank you! Sorry once again for posting here. It's the closest Heading/Title that matched my concern >.<
 

Programmistik

Platinian
Sep 27, 2020
6
0
1
Russian
Please help me, how can I add money through void?

C++:
// RVA: 0x586C30 Offset: 0x586C30 VA: 0x586C30
    public void ShowDiamonds(int _amount) { }
I tried several options, didn't work
 

xyzhunter

PMT Modder
Staff member
Modding-Team
Oct 28, 2020
2,030
105,223
1,213
Indonesia
Please help me, how can I add money through void?

C++:
// RVA: 0x586C30 Offset: 0x586C30 VA: 0x586C30
    public void ShowDiamonds(int _amount) { }
I tried several options, didn't work
yes it will didn't work it, you can't do that on void
 

·҉ dollaz·҉. .

Approved iModder
Approved iModder
Mar 26, 2021
159
1,797
193
Somewhere
Please help me, how can I add money through void?

C++:
// RVA: 0x586C30 Offset: 0x586C30 VA: 0x586C30
    public void ShowDiamonds(int _amount) { }
I tried several options, didn't work
You use a function pointer.
I didn't put it in the main.cpp or tell you where to put it so you actually learn something

C++:
void (*ShowDiamonds)(int *diamonds);
/****************/
ShowDiamonds = (void (*)(int *))getRealOffset(0x000000);
/****************/
ShowDiamonds(999999999);
//if it doesnt work still its cus the function doesnt work
 

Programmistik

Platinian
Sep 27, 2020
6
0
1
Russian
You use a function pointer.
I didn't put it in the main.cpp or tell you where to put it so you actually learn something

C++:
void (*ShowDiamonds)(int *diamonds);
/****************/
ShowDiamonds = (void (*)(int *))getRealOffset(0x000000);
/****************/
ShowDiamonds(999999999);
//if it doesnt work still its cus the function doesnt work
Error:
NDK: use of undeclared identifier 'getRealOffset'
 
Status
Not open for further replies.