I wanted to do a quick tutorial on how to run RPGM games literally anywhere, Linux, Windows, Mac.
All you need is python installed on your system. Download it from
Steps:
1. Open game folder and check if there is file named "index.html", if not, it may be in the ".../www" folder
2. Open terminal (console) and navigate to the folder, where "index.html" is located
2.1 On mac you can control+click on game's folder and select "New Terminal at Folder"
3. Type or copy paste the command "python3 -m http.server 8080" or "python -m http.server 8080"
3.1 If it was successful, you should see something like this:
4. Open any browser like chrome or safari
5. Type URL "localhost:8080"
6. Play
If you want to stop local server just close terminal or press ctrl+c in terminal.
Be cautious: Save data is stored in the browser's cache. Before you finish playing, do not clear the cache — or you’ll lose your progress.
All you need is python installed on your system. Download it from
You must be registered to see the links
.Steps:
1. Open game folder and check if there is file named "index.html", if not, it may be in the ".../www" folder
2. Open terminal (console) and navigate to the folder, where "index.html" is located
2.1 On mac you can control+click on game's folder and select "New Terminal at Folder"
3. Type or copy paste the command "python3 -m http.server 8080" or "python -m http.server 8080"
3.1 If it was successful, you should see something like this:

4. Open any browser like chrome or safari
5. Type URL "localhost:8080"
6. Play
If you want to stop local server just close terminal or press ctrl+c in terminal.
Be cautious: Save data is stored in the browser's cache. Before you finish playing, do not clear the cache — or you’ll lose your progress.
Last edited: