- Jul 16, 2017
- 302
- 782
As many of you find out, rpgm games dont work with WINE, i found an easy way to run rpgm games, all you need is a browser & python.
On the command line, navigate to the game’s www folder. then write this on the command line window.
then open your favorite web browser and navigate to
Do not close the command line window. Once you are done playing, simply use ctrl + c on the command line window to end the local server instance.
Edit - I saw someone already posted this on a 2020 thread in a post, the saves are stored on your browser cache so for every new game you have to assign a different port. Example below for another game.
I hope this helps, it is a miracle for me since i switched over from windows 10 and not being able to play any rpgm games, unity & renpy works with wine but not rpgm.
Edit - This should work on most variations of linux as long as python3 is available and installed on your system.
On the command line, navigate to the game’s www folder. then write this on the command line window.
Code:
python3 -m http.server --bind 127.0.0.1 8000
You must be registered to see the links
to run the rpgm game directly on your browser.Do not close the command line window. Once you are done playing, simply use ctrl + c on the command line window to end the local server instance.
Edit - I saw someone already posted this on a 2020 thread in a post, the saves are stored on your browser cache so for every new game you have to assign a different port. Example below for another game.
Code:
python3 -m http.server --bind 127.0.0.1 8001
Edit - This should work on most variations of linux as long as python3 is available and installed on your system.
Last edited: