Dell SE2422HX 24-Inch FHD Monitor
Slim 24-inch Full HD monitor for a clean desk, second screen, or work setup.
View on Amazon
Bmmplay may earn a commission from qualifying purchases made through these links.
No products in the cart.
Simple enough for a child, powerful enough for a developer
BMM_Archive · July 16, 2026
When working with custom tools (like my Cook Tool) it can be daunting to build the game before publishing. In this tutorial, I’ll show you how to build your own build script so you can automate the chores (and have a custom executable). Requirements PowerShell 7 or newer Node.js (either LTS or Stable)
Get-ChildItem -Path ‘.\<Game Folder>’ -Exclude “www”, “package.json” | Remove-Item -force -Recurse
Remove-Item -Path “.\www\package.json”
node buildExecutable.jsvar gameName = '<Game Name>';
var gameVersion = '<Game Version>';
var gameTag = '<GameName>';
var NwBuilder = require('nw-builder');
var nw = new NwBuilder({
files: '<Game Folder>/**', // use the glob format
flavor: 'normal',
version: '0.22.0', //Specifies the version of nwjs. Remove this to get the latest version.
appVersion: gameVersion,
platforms: ['win64', 'linux64'], //Change this if you want to target more or less platforms
zip: false, //Only turn this to true. This may affect startup times on Windows
appName: gameTag,
//Windows Specific
winVersionString: {
'FileVersion': gameVersion,
'InternalName': gameTag,
'ProductVersion': gameVersion,
'CompanyName': '<Dev Name>',
'FileDescription': gameName,
'ProductName': '<Game or Series Name>',
'OriginalFilename': '<GameName>.exe',
'LegalCopyright': '<Insert copyright here>',
},
winIco: "Game.ico" //It should be in the same folder as this script
});
// Log stuff you want
nw.on('log', console.log);
nw.build().then(function () {
console.log('all done!');
}).catch(function (error) {
console.error(error);
});Start-Process <tool executable> -NoNewWindow -PassThru -Wait -Arguments ‘<Arguments for the tool go here>’Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadIf 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.
Dell SE2422HX 24-Inch FHD Monitor
Slim 24-inch Full HD monitor for a clean desk, second screen, or work setup.
View on Amazon
Bmmplay may earn a commission from qualifying purchases made through these links.
No replies yet.
Loading summary...
Bmmplay creator tools
Log in or create an account to use this creator tool.
Join the conversation
Your reaction is ready. Log in and you will return to this page to add it.
Are you sure you want to close this music player?
Community safety