- Joined
- Nov 27, 2015
- Messages
- 556
- Reaction score
- 794
- First Language
- English
- Primarily Uses
- RMMV
https://www.npmjs.com/package/minvera
To use this you need NodeJS: https://nodejs.org/en/
This is a command line tool for downloading plugin files for RPGMaker from the internet using a package.mnva file similar to a JSON object.
It will then download all the files to your js/plugins directory. It can detect js and JSON files, and should be able to detect other file types in the future.
How To Install
Commands
Creates a new package.mnva file for you if it doesn't exist in the directory.
Adds a new plugin to your package.mnva under a new author name and then downloads the plugin to your js/plugins directory.
or
Updates all the files in your package.mnva file. Use this in your game folder directory.
If you pass a .mnva file, it will update your js/plugins directory based on the plugins listed in the .mnva file.
Creates a 'credits.txt' with the name of all authors listed in your package.mnva file.
Example mnva file
To create a new author, create a new property in the authors object. Simply type:
To add Himeworks for example, type:
The pluginName should match the js file name.
Currently available libraries:
Package Files
Rem Package
Himeworks Package
EIS Package
Looking for community recommendations for more useful commands; I also plan to work on a plugin version in the future for RPGMakerMV. But, this should work with ruby files also in the future.
To use this you need NodeJS: https://nodejs.org/en/
This is a command line tool for downloading plugin files for RPGMaker from the internet using a package.mnva file similar to a JSON object.
It will then download all the files to your js/plugins directory. It can detect js and JSON files, and should be able to detect other file types in the future.
How To Install
Code:
npm install -g minvera
Code:
minvera init
Code:
minvera install authorName pluginName
Code:
minvera update
Code:
minvera update package.mnva
If you pass a .mnva file, it will update your js/plugins directory based on the plugins listed in the .mnva file.
Code:
minvera credits
Example mnva file
Code:
{
"authors": {
"Kino": {
"plugins": [
"EISMenuCommonEvents",
"EISMonsterBox"
]
},
"Hime": {
"plugins": [
"HIME_MoreEnemyDrops"
]
}
}
}
Code:
minvera install authorName pluginName
Code:
minvera install Himeworks HIME_MoreEnemyDrops
Currently available libraries:
- Himeworks
- Endless Illusion Software
Package Files
Rem Package
Himeworks Package
EIS Package
Looking for community recommendations for more useful commands; I also plan to work on a plugin version in the future for RPGMakerMV. But, this should work with ruby files also in the future.
Last edited:

