Tutorial BASICS ABOUT ANDROID APK MODDING IN GENERAL | LEARN MODDING TODAY FOR FREE!

https://platinmods.com/threads/vide...s-guide-for-ida-modding-on-android-games.449/ this link seems to no longer be working, can i ask for an update?
 
I modded my first 3 games by the tutorials and the help provided by the fellow members of this community, thank you admin. I would love to mod and join this team.
 
I saw few outdated mods in approved modder section, can i mod them and upload them here?
 
I saw few outdated mods in approved modder section, can i mod them and upload them here?
In the testing zone you can post what you want, they are only for test. They wont be public. If you solve the test and get approved modder you will get a message with the detailed rules what is allowed and what not.
 
Greetings,
I am glad there is a post about this, coz i already tried learn modding a couple years ago and yes my motivation broke that time because of confusing and some hard to understand guide (and no one i can ask).
Your post motivate me to do another try, give me some motivation.

If you or some other one you know may be my chat/message friend to motivate and guide me when i stuck please inform me. Coz the last time i surrender because there is no one to ask for.

I want to learn and become one of the modder in this forum so everyone can enjoy my mod and i can continue learning by modding some games and hope someday i can mod requested game :gif29:
 
I have a game online cocos2d (using lua script), i want to hook to function X at runtime to get return value, can you guide me step to do that, please
 
1689850638611.png

hi,if the apk is split inside an xapk file, what should i do? i search on the internet but other xapk only split the obb and the real apk which contain the lib folder
but in this case the package name apk doesn't contain lib folder, the lib folder is inside the arm64 apk and there's a bunch of config apk like this
do i need to sign each and every one of the apk inside then compile it again into xapk?
 
View attachment 532837
hi,if the apk is split inside an xapk file, what should i do? i search on the internet but other xapk only split the obb and the real apk which contain the lib folder
but in this case the package name apk doesn't contain lib folder, the lib folder is inside the arm64 apk and there's a bunch of config apk like this
do i need to sign each and every one of the apk inside then compile it again into xapk?



 
Hello thank you first of all, I have a question, I am trying to learn modding with the Star Wars Galaxy of Heroes, I managed to edit or find better methods that affect damage and life but affect both... in these cases is it better not to learn with this type of games? Or is it actually a simple solution?
 
Hello thank you first of all, I have a question, I am trying to learn modding with the Star Wars Galaxy of Heroes, I managed to edit or find better methods that affect damage and life but affect both... in these cases is it better not to learn with this type of games? Or is it actually a simple solution?
That goes above the basics and is called splitting. You split your mod to only work for either the enemy or the player. Easier games have pre-split methods, like they have a damage method for the enemy and a damage method for the player. These kind of games are good for beginners. Games which use the same damage method for enemy and player require advanced modding, such as hooking and not only hex patching (while can be as well done by hex patching but that would be even more complicated then hooking). There you have to find the right method which targets the enemy or the player, for example "isEnemy" and hook it in a way that you use if statements, like if (isEnemy) then damage / 1000 and if (!isEnemy) then damage * 1000.

But as said, that goes above this basic tutorial. You have to go with other tutorials you find in the tutorial section.
 
Tags Tags
tutorial
Back
Top Bottom