Falcon MMO-MZ
A downloadable asset pack
I’ve finally released a usable version of the MMO plugin for RPG Maker MZ for everyone!
Please read carefully!
The first thing to keep in mind is that this plugin currently only works on Windows and is not yet available for browsers.
More updates will be coming soon, and all of them will be free, so you only need to pay once.
If you have any questions or run into any issues, please join the Discord server: discord.gg/E6frTVBSXS.
How to Use:
- Simply drag the plugins into the
js/plugins
folder, and install them in RPG Maker MZ. - Drag the
server
folder into your project’s root directory.
The only important file you'll need inside the server
folder is Start_Server.bat
, which you’ll use to start the server. I’ve left a lot of logs in the server terminal for now, but I may remove them soon. A folder called data
will be created when you start the server, which will store player accounts using Redis. (It’s important to back up player data!)
In the Plugin Manager, there are many settings you can tweak as needed, but remember to use your external IP in the Plugin Manager if you want to use your PC as the server.
Install Node from https://nodejs.org/
Features:
- Each developer will have their own server, whether it’s on their PC or a VPS.
- A customizable chat feature, configurable in the Plugin Manager.
- Chat Bubbles on maps.
- Login and registration screens that can be customized in the Plugin Manager.
- A Captcha system to prevent DDOS attacks.
- Obfuscated code to make it harder for hackers to attack.
- Offline maps for cutscenes, where players won’t see each other. Just add the
<offline>
tag to the map name.
- Global switches and variables: just add
<global>
to their names.
- Offline switches and variables, which won’t be saved in the database. Add the
<offline>
tag to their names.
- Player names and event names can be displayed. Use the
<eventname:Chest>
tag in the event’s comment box.
- Synced player movements.
- The server uses UWebSocket + Redis for robust, real-time performance.
- The “Save” option has been removed from the RPG Maker MZ menu since
everything is saved automatically.
Purchase
In order to download this asset pack you must purchase it at or above the minimum price of $45 USD. You will get access to the following files:
Comments
Log in with itch.io to leave a comment.
This sounds promising. I am happy to see the idea of RPG Maker MMOs isn't dead yet. However I have a few questions.
You write about auth, chat and movement sync. What other MMO related features does your plugin have?
Also unfortunately I have to bring to you that CAPTCHA Mechanisms are not ment for DDoS Protection. They don't make ddos attacks any harder at all.
I would also be very happy if you could elaborate on the communication layer.