This project allows you to convert RPG Maker 2000/2003 games for Android using Docker and EasyRPG.
To install this Docker image, you must have Docker installed on your machine and in the terminal execute the following command:
docker pull carlsonsantana/rm2kx-android-builder:latestOr build it yourself executing the following command on the terminal:
docker build -t rm2kx-android-builder .You must mount the following volumes when running the Docker image. These mounts provide the necessary input files and define the location for the final output.
/rpgmaker2kx_gameyour RPG Maker 2000/2003 game (remove the files that Android will not use likeRPG_RT.exe, any documentation, any extra and of courseThumbs.dbfiles);/icon.pngthe icon for your Android game;/outputthe directory where the aligned or signed.apkwill be created;- (Optional)
/game_certificate.keythe keystore file used to sign the.apk, if passed you must pass the following environment variablesGAME_KEYSTORE_PASSWORD,GAME_KEYSTORE_KEY_ALIASandGAME_KEYSTORE_KEY_PASSWORD;
GAME_APK_NAMEthe Application ID (e.g.,com.mycompany.mygame) of your Android game;GAME_NAMEthe name displayed beneath the app icon on the device;GAME_VERSION_CODEthe version number code of your game (example: "100"), new versions must have a greater value than old ones;GAME_VERSION_NAMEthe version showed to the user that allows use letters and dots (example: "1.0.0");GAME_KEYSTORE_PASSWORDthe keystore password, required when/game_certificate.keyvolume is filled;GAME_KEYSTORE_KEY_ALIASthe key alias in keystore, required when/game_certificate.keyvolume is filled;GAME_KEYSTORE_KEY_PASSWORDthe key password in keystore, required when/game_certificate.keyvolume is filled;GAME_METADATA_SITEthe website showed on the side menu.