Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dicebox

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dicebox

build tool for typescript based RPG Maker MV plugins

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

dicebox logo

dicebox

build tool for typescript based RPG Maker MV plugins

About

Dicebox is a tool that allows you to program RPG Maker MV plugins. By default, RMMV plugins are plain JS files that are simply loaded as is into your game. Using dicebox you can actually leverage all ES6 + Typescript goodness, with type declarations for the RMMV runtime library and easily manageable editor config.

Usage

Creating a New Project

Create an empty directory, and run the init command:

npx dicebox init

After asking you a small set of questions, a new plugin project will be created in the current working directory.

Structure of a Plugin Project

Once your project is created, it will contain the following files and directories:

  1. src - the directory with the source code for your plugin
  2. plugin.conf.ts - the config file for your plugin project
  3. rmmv.d.ts - type declarations for RMMV runtime library

You can start working on src/index.ts. This is the default entrypoint.

Building Your Project

In order to build your project, run npm run build. This will generate a single .js file in a new directory called dist.

Once this file is generated, you can put it in your game's JS/plugins directory, and then add and configure it using the RMMV editor interface.

Configuring How Your Plugin Looks In The Editor

One of the perks of RMMV plugins is the fact that you can integrate with the editor, so you can interact with it via the RMMV editor GUI. If you wish to define it, you can use the information in the plugin.conf.ts file:

Adding Plugin Parameters to the Editor

If you want to add parameters which you'll be able to set via the editor, head over to your plugin.conf.ts file. Under the parameters property, you can list all the parameters that will be interactive via the editor:

import { PluginConf } from 'dicebox/conf';

export const config: PluginConf = {
  name: 'My Plugin',
  author: 'Me',
  pluginFilename: 'MyPlugin',
  description: 'This is my Plugin',
  parameters: [
+    {
+      name: 'Some Parameter',
+      description: 'This is an example parameter. Try modifying this or adding new ones!',
+      default: 'Hello, World!'
+    }
  ]
};

Once saved, open the plugin manager in your RMMV editor, and you'll see the parameter right there for you to play with.

Attributions

RMMV RTL Type Definitions

The type definitions used for RMMV runtime library are taken from AsterAtwood's rmmv.d.ts project.

Keywords

FAQs

Package last updated on 22 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc