public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

RMMV PRO TIPS: How to compress your ressource (one files exectuable)

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: RMMV PRO TIPS: How to compress your ressource (one files exectuable)
  • Original author: Jonforum
  • Original date: June 25, 2018
  • Source thread: https://forums.rpgmakerweb.com/threads/rmmv-pro-tips-how-to-compress-your-ressource-one-files-exectuable.96879/
  • Source forum path: Game Development Engines > RPG Maker Javascript Plugins > Learning Javascript

Summary

Using ENIGMA VIRTUAL BOX are not easy performance issue This method is extremely easy and keep performance

Archived First Post

Using ENIGMA VIRTUAL BOX are
  • not easy
  • performance issue

This method is extremely easy and keep performance
  • keep speed game
  • memory cache

related to: http://docs.nwjs.io/en/latest/For Users/Package and Distribute/#package-option-2-zip-file
Nw.js Standard file packaging

First, copy the latest version of Nw.js folder and give it a name appropriately.
ex: on desktop name it "distribution"



  1. *deploy the project rmmv [distributed]
  2. * Merge Compress the package.json and www folder [.zip] from project
  3. * rename zip to package.nw
  4. *move package.nw in your distribution folder
  5. * Combine and merge the zip [package.nw] and [nw.exe] to create a new executable [game.exe] with your terminal: "cmd or powershell"
  6. Edit your executable [game.exe] with resource hacker for hack your icons, informations, copyright ....
  7. delete unnecessary files: [package.nw] [nw.exe]

cmd
Code:
cd C:\Users\user\Desktop\distribution
copy /b nw.exe+package.nw games.exe

powerShell
Code:
cd C:\Users\user\Desktop\distribution
New-Item -ItemType file "game3.exe" -force
$file1 = Get-Content "package.nw"
$file2 = Get-Content "nw.exe"
Add-Content "game3.exe" $file1
Add-Content "game3.exe" $file2



enjoy

i made here screen for help

1LAsGfnE_o.png


b85hDj2l_o.png


80sVAsII_o.png

Step video, if you need.

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

Referenced Images / Attachments

1LAsGfnE_o.png
1LAsGfnE_o.png
b85hDj2l_o.png
b85hDj2l_o.png
80sVAsII_o.png
80sVAsII_o.png
Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#package-option-2-zip-file#rpg-maker-archive#js-learning

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar