Introduction
I tried to run games made with RPG Maker MV, but it stucks at loading.
Solution
I thought installing Windows on VM, but I found nwjs.dll
file. The structure of package.json
in the www
directory of the game is also similar with the one of nwjs applications.
What if I just use nwjs binary for Linux? I tried it, and it actually worked.
- Download Linux binaries from nwjs homepage (No need to use SDK versions)
- Find a directory having
package.json
(Usuallywww
directory) - Run the nwjs binary, downloading in the Step 1, with the directory found in the Step 2 as parameter. (e.g.
~/nwjs-binary/nwjs ~/game/www
) - If it didn't work, the
package.json
file might have emptyname
. Update thename
property ofpackage.json
file to arbitary random value.
If you follow this guide, it should work. It might not work for some games, but... it works for me.