dedomil.net - Mobile Games Forum
Tutorials: Ways to mod java games and apps manually - Printable Version

+- dedomil.net - Mobile Games Forum (http://dedomil.net/forum)
+-- Forum: Off Topic Section (/forumdisplay.php?fid=3)
+--- Forum: Off Topic discussion (/forumdisplay.php?fid=4)
+--- Thread: Tutorials: Ways to mod java games and apps manually (/showthread.php?tid=5540)

Pages: 1 2 3


Tutorials: Ways to mod java games and apps manually - King_Dave - 04-02-2021 09:22 AM

Am Here for some ways You can Mod games Manually...
List:
*.Add List UI
*.Crack Activation By SMS Sending: Post
*.Add Backlight Adjuster
*.Add Screen Shooter
*.How To Add Advanced Menu To Any MIDlet Manually
Manually
*.How To Add Turbo 3 Script
Method By KingDav

Totorial 1: How to Change List UI of MIDlets

*.Using ByteCode Editor, search for this code:
"javax/microedition/lcdui/List"
A few.CLASSfiles will pop up, now open it one by one > Constant pool > Press "7" > Replace:
"javax/microedition/lcdui/List"with"javay/microedition/lcdui/List"
*.then press OK. do the same with the rest of .CLASS files that poped up after searching.
*.Extract javay folder from any of the attached files to the sub folder where you have extracted your MIDlet.
*.Pack all files using MiniCommander together, thereafter, install your modified and Enjoy

Tutorial 2: Cracking Games to Stop sending sms

*.Using ByteCode Editor, search for this code:
*.javax/microedition/io/Connector
A few.CLASSfiles will pop up, now open it one by one > Constant pool > Press "7" > Replace:
"javax/microedition/io/Connector" with "lavax/microedition/io/Connector "
*.then press OK. do the same with the rest of .CLASS files that poped up after searching.
*.Extract lavax folder from the attached file to the sub folder where you have extracted your MIDlet.
*.Pack all files using MiniCommander together, thereafter, install your modified MIDlet and Enjoy.

Tutorial 3: Light Adjustment in games

*.Using MiniCommander, extract your MIDlet "app/game" to a sub folder.
*.Using ByteCode Editor, search for this code:javax/microedition/lcdui/Canvas
A few.CLASSfiles will pop up, now open it one by one > Constant pool > Press "7" > Replace:
*.javax/microedition/lcdui/Canvas with javay/microedition/lcdui/Canvas
*.hen press OK. do the same with the rest of .CLASS files that poped up after searching.
*.In every edited class, also replace:
*.keyPressed with KeyPressed
*.Extract javay folder from the attached file to the sub folder where you have extracted your MIDlet.
*.Pack all files using MiniCommander together, thereafter, install your modified MIDlet and Enjoy. [img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRtHXJRnT40KUWhab4bt_ZrpD9SX4U-nrINQjIstTi01MwYOAyi2olfXbwD&s" class="smile" alt=":)"]
*.Press dial key to adjust the backlight. [img alt=":)" class="smile" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRtHXJRnT40KUWhab4bt_ZrpD9SX4U-nrINQjIstTi01MwYOAyi2olfXbwD&s"]\

Tutorial 4: Adding Screenshot to Your Games and apps

*.Using MiniCommander, extract your MIDlet "app/game" to a sub folder.
*.Using ByteCode Editor, search for this code:
*.javax/microedition/lcdui/Canvas
A few.CLASSfiles will pop up, now open it one by one > Constant pool > Press "7" > Replace:
*.javax/microedition/lcdui/Canvaswith:
*.javay/microedition/lcdui/Canvas
then press OK. do the same with the rest of.CLASSfiles that poped up after searching.
And also Change:
*.keyPressed to KeyPressed
*.keyRelease to KeyReleased
Again usingByteCode Editor, search for this code:
*.javax/microedition/midlet/MIDlet
A few.CLASSfiles will pop up, now open it one by one > Constant pool > Press "7" > Replace:
*.javax/microedition/midlet/MIDletwith:
*.javay/microedition/lcdui/MIDhackthen press OK. do the same with the rest of.CLASSfiles that poped up after searching.
Note:
Don't change:
*.(Ljavax/microedition/midlet/MIDlet;)Ljavax/microedition/lcdui/Display;
*.Extract javay folder from any of the attached files to the sub folder where you have extracted your MIDlet.
*.Add the following lines in META-INF/MANIFEST.MF file:
*.jiejie: -10
*.jieset: 42
*.jiedir: file:///E:/ScreenShots/
*.jietime: 100
Pack all files usingMiniCommandertogether, thereafter, install your modified MIDlet and Enjoy

Tutorial 5: Adding Turbo Embedder [You Need the App]

THIS CAN BE DONE FROM MOBILE}
1.Download the attached File.
2.Rename your jar extension from .jar to .zip
3.Start Turbo 3 embedder.
4.Browse to the file.
5. Click start Embedding...

Tutorial 6: How to add Advance Menu [Best]

*.Using MiniCommander, extract your MIDlet "app/game" to a sub folder.
*.Move MANIFEST.MF file to the sub folder and name it to 1.ini
*.Using ByteCode Editor, search for this code:
*.javax/microedition/lcdui/CanvasCopy the Code
*.A few .CLASS files will pop up, now open it one by one > Constant pool > Press "7" > Replace the following code with the one next to it "begins with lib/":
---------------------------------
*.javax/microedition/lcdui/Formwith
*.lib/Form
--------------------------------
*.javax/microedition/lcdui/Listwith
*.lib/List
--------------------------------
*.javax/microedition/lcdui/Alertwith
*.lib/Alert
--------------------------------
*.javax/microedition/lcdui/Canvaswith
*.lib/Canvas
--------------------------------
*.paintwith
*.Paint
--------------------------------
*.keyPressedwith
*.KeyPressed
--------------------------------
*.keyReleasedwith
*.KeyReleased
--------------------------------
*.com/nokia/mid/ui/FullCanvaswith
*.lib/FullCanvas
-------------------------------
*.javax/microedition/midlet/MIDletwith
*.lib/MIDlet
--------------------------------
*.javax/microedition/lcdui/Displaywith
*.lib/Display
--------------------------------
*.javax/microedition/lcdui/TextBoxwith
*.lib/TextBox
-------------------------------
*.javax/microedition/lcdui/AlertTypewith
*.lib/AlertType
-------------------------------
*.javax/microedition/lcdui/game/GameCanvaswith
*.lib/GameCanvas
-------------------------------
*.javax/microedition/io/Connectorwith
*.lib/Connector
-------------------------------
*.Extract all folders of the attached file to the sub folder where you have extracted your MIDlet.
*.Add the following lines in META-INF/MANIFEST.MF file:
*.0: Write MIDlet Name Here,/MIDlet Icon Name.png,MAIN CLASS FILE,1.iniCopy the Codefor example:
*.0: Png extractor,/res/png.png,midlets.ExploreMIDlet,1.iniCopy the Code
*.Pack all files using MiniCommander together, thereafter, install your modified MIDlet and Enjoy.

Note: All members might not be familiar with BlueFTP, Mini Commander and Other, But if you need any requirement, Comment below....
Download Mini Commander 3.4

And You can Download Turbo 30Embedder from Here


RE: Tutorials: Ways to mod java games and apps manually - Abidemhie - 04-02-2021 04:29 PM

Nothing like editing names,graphics,picstures,backgroung,sound,sfx?
LOL


RE: Tutorials: Ways to mod java games and apps manually - King_Dave - 04-02-2021 04:31 PM

(04-02-2021 04:29 PM)Abidemhie Wrote:  Nothing like editing names,graphics,picstures,backgroung,sound,sfx?
LOL

What do you mean??


RE: Tutorials: Ways to mod java games and apps manually - Abidemhie - 04-02-2021 04:32 PM

All that are moding too but you didnt include that


RE: Tutorials: Ways to mod java games and apps manually - King_Dave - 04-02-2021 04:35 PM

I know how to edit names in hex and dec, but it might be complex for some..I don't know
either in football games


RE: Tutorials: Ways to mod java games and apps manually - Abidemhie - 04-02-2021 04:47 PM

What about graphics sfx others?


RE: Tutorials: Ways to mod java games and apps manually - King_Dave - 04-02-2021 04:51 PM

i also only know how to Mod pictures


RE: Tutorials: Ways to mod java games and apps manually - Abidemhie - 04-02-2021 04:59 PM

Not pitures directly. Something like background