- Joined
- Mar 28, 2016
- Messages
- 1,623
- Reaction score
- 1,439
- First Language
- French
- Primarily Uses
- RMMV
Using ENIGMA VIRTUAL BOX are
This method is extremely easy and keep performance
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"
cmd
powerShell
enjoy
i made here screen for help
Step video, if you need.
- 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"
- *deploy the project rmmv [distributed]
- * Merge Compress the package.json and www folder [.zip] from project
- * rename zip to package.nw
- *move package.nw in your distribution folder
- * Combine and merge the zip [package.nw] and [nw.exe] to create a new executable [game.exe] with your terminal: "cmd or powershell"
- Edit your executable [game.exe] with resource hacker for hack your icons, informations, copyright ....
- delete unnecessary files: [package.nw] [nw.exe]
cmd
Code:
cd C:\Users\user\Desktop\distribution
copy /b nw.exe+package.nw games.exe
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
Step video, if you need.
Last edited:


