This is the AMP version of this page.
If you want to load the real page instead, click this text.

Tutorial How to make a Floatable Mod Menu [Team LGL] - {Beginners Tutorial} {All Explained} - Part 3

DVAツ

Solid & Active Platinian
Original poster
Dec 8, 2020
87
8,815
183
APK
Part 3 - How to make a Floatable Mod Menu [Team LGL] - {Beginners Tutorial} {All Explained}

This is a bunch of tutorials that I made for newbies.
These tutorials mainly have 5 parts.

Part 1 - How to mod an Android Game {Beginners Tutorial}
Part 2 - Creating a simple Mod menu for Android games
Part 3 - Advance mod menu template (Team LGL) //This tutorial
Part 4 - il2cpplib library modding
Part 5 - Lucky patcher for Bypass google play purchases.


This is a tutorial for newbies or new to modding.
Read this article carefully and watch the given video then You can understand it more easily.

Honorable Mentions:- @LEIIKUN, @Not-Dead
Template Owner:- @TheLGL

Tutorial

Software to Download
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. **
If you still facing issues revealing the hidden links, please read this.
Instructions Before Enrolling the Project
1.This template is not made by me so the credits to Team LGL
2.I made this tutorial bcz LGL Team not teaching for the beginners to use their template That's why!
3.You must watch the video above shown from beginning to end because it explains all the stuff in the template.

Preview of the menu (From LGL Team)


Codes that used

Base 64 image (My one)

Category (Sub Heading for cheats)

OBFUSCATE("Category_Name of your sub Head"),
Toggle Button

OBFUSCATE("Toggle_Button name"),
Seek bar

OBFUSCATE("SeekBar_seekbar name_1_10"), //You can edit the numbers to change the bar lenght
Spinner (Item List)

OBFUSCATE("Spinner_Name of your selection_item1,item2"), //Add items by using comma
Button (Normal)

OBFUSCATE("Button_Button Text"),
Button With URL

OBFUSCATE("ButtonLink_Button Name_Your Link"),
On/OFF Button

OBFUSCATE("ButtonOnOff_Button Text"),
CheckBox

OBFUSCATE("CheckBox_Check Box Name"),
Type Box

OBFUSCATE("InputValue_The input number"),
Radio Button

OBFUSCATE("RadioButton_Radio buttons_OFF,Mod 1,Mod 2,Mod 3"),

My Toast.h Code

If you need to change the app name go to APP/res/values/string.xml

<resources>
<string name="app_name">DVA Menu</string> //Add the name of your app
</resources>
If you need to change the lib name goto app/java/uk.lgl/modmenu/MainActivity
public class MainActivity extends Activity {

public String GameActivity = "com.unity3d.player.UnityPlayerActivity";


static {

System.loadLibrary("MainDVA"); //Lib Name
}
When you change the lib name, change also on Android.mk file

For additional data refer the video or message me.

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

After the build, the app of the mod menu Decompile the apk and copy the library file to apk's lib folder

Copy the library



Copy the smali file



Add this line to androidManifest.xml

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
And at the bottom before </application> tab ends add this line

<service android:name="uk.lgl.modmenu.FloatingModMenuService" android:enabled="true" android:exported="false" android:stopWithTask="true"/>
Like this


And find the game main activity like this



And search the main activity in the apk directory



And open the file and press "ctrl+F" and search "onCreate"

And add this line after that

invoke-static {p0}, Luk/lgl/MainActivity;->Start(Landroid/content/Context;)V
Like this




And after the end compile the apk.

!Congratulations you have created it, man!
 

Attachments

Last edited:

Galaxy169

Approved Modder
Approved Modder
Apr 28, 2020
29
1,097
178
Home
This is a basic programming question, since you only have to use if/else or switch case statements.
That has nothing to do with modding.
Yeah, I've figured it out right after posting it. was confusing it with the seekbar.