Tutorial RPGM Run RPGM games on MacOS & Linux in your browser

kirsama

New Member
Dec 26, 2023
13
6
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: 1754927728713.png

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:
  • Like
Reactions: GooseElite

kirsama

New Member
Dec 26, 2023
13
6
For some games node webkit is needed. This is how to play them on Mac:

1. Download normal from official website

2. Download WIN version of a game

3. Give nwjs execute permission
3.1. Right click on NWJS.app - show package content - Contents - Right click on MacOS folder - New Terminal at folder. Type "chmod +x nwjs"

4. Open game via nwjs in terminal.
4.1. Open terminal. Drag and drop executable nwjs file to terminal (from NWJS.app/Contents/MacOS)
4.2. Drag and drop game's folder to terminal.
4.3. In the end command would see like "/path/to/nwjs/nwjs /path/to/game/GameFolder"