RPG MAKER MZ HELP

Documentation

Using Official Plugins

In RPG Maker MZ, there are several plugins already included in your new project that can be used with simple settings. Also, some official plugins are included in the separate DLC folder.

AltMenuScreen

A plugin that changes the Menu Screen to a different layout.
Party members will be displayed horizontally.

AltSaveScreen

A plugin that changes the Save Screen and Load Screen to a different layout.
It becomes possible to display images such as the faces of party members.

ButtonPicture

This plugin provides a command for running a common event when clicking a picture.
Please use the following procedure:

1. Execute [Show Picture], and a button screen will appear.
2. Run the Plugin Command [Button Picture Settings].

EventCommandByCode

Directly specify the code and parameter to execute an event command.
You can use variables (control characters) in each command's parameter and forcibly specify out-of-range values that cannot be specified with regular event commands.
However, it is not guaranteed to run if you call a command with an unexpected specified value.

Control Characters

\v[n] : Variable
\s[n] : Switch
\ss[n] : Self Switch
\js[n] : Script (only when TextScriptBase.js is applied)

You cannot specify commands that span multiple lines in the event editor or deeply nested commands.

ExtraImage

Allows you to display additional images for scenes that have an optional image specified.
Basic information, such as coordinates, scale, origin, etc. can be configured.
When a control character is specified for each parameter, the value will be retrieved from the specified variable.

Parameters

Image List A list of images to be added to all screens.

ExtraWindow

Additional windows can be used for scenes that have an optional window specified.
Basic information such as coordinates, font size, whether there's an open/close animation, etc. can be set.
Control characters can be used in the window display text, and when the return value is changed, it will automatically be redrawn.

Parameters

Window List A list of windows to be added to all screens.

MaterialBase

This is a database for registering and managing image and audio file assets used primarily in plugins.
Registered assets are excluded from functions that automatically delete unused assets.
Use the following control characters to swap in the filename of a registered asset.

¥mi[aaa] // Swaps in the filename of the image asset registered with identifier [aaa].
¥ma[bbb] // Swaps in the filename of the audio file asset registered with identifier [bbb].

The situations where control characters can be used are as follows:
・Text display
・Event commands and conditional branch scripts
・Notes field (*)
・Plugin command (*)
・Plugin parameter (*)
・Explanation fields for skills, etc.
・Skill and item formulas
*Only for plugins that take PluginCommonBase.js as a base.

Registered assets can be changed into other assets using plugin commands.

Set values can be displayed or played as pictures or BGMs from plugin commands. Please check the plugin command instructions for details.

Additionally, by using a separate plugin, "Plugin for Event Command Execution via Code", this plugin can be used to do even more.

Parameters

Image Assets List List of registered image assets.
Audio File Assets List List of registered audio file assets.

OverpassTile

Overpasses, such as bridges, can be represented on the map.
This plugin improves functionality for RPG Maker MV's official "OverpassTile.js" plugin's MZ.

Since you can specify not only regions but terrain tags, considerations are made for event launches and collision determination as well.
The plugin does not make considerations for vehicles.

Specifications for Determination of Passage

・When at the entrance of a bridge
→The player can always move towards the overpass.
・When on an overpass
→If on top of a bridge, the player can always move towards the entrance of the bridge and overpass.
→If under a bridge, the player can never move toward the bridge's entrance.
・If movement allowance was not determined from the above conditions
→Follows the map's original passage settings.

The plugin can take event launch determination and collision determination into consideration.

・Events with different heights (over and under a bridge) will launch, without collision.

Parameters

Overpass Region Region ID set for bridge or other overpass sections.
Overpass Terrain Tag Terrain tag set for bridge or other overpass sections.
Overpass Entrance Region Region ID set for overpass entrances, such as both ends of a bridge.
Overpass Entrance Terrain Tag Terrain tag set for overpass entrances, such as both ends of a bridge.

PluginCommonBase

This plugin is a base plugin that is meant to be referenced from other plugins.
This plugin allows you to use the following control characters in a variety of situations.

Usable Control Characters

\v[n] : n is converted to the value of the nth variable.
\s[n] : n is converted to the value (true, false) of the nth switch.
\ss[n] : n is converted to the value (true, false) of the nth self switch.

The situations where control characters can be used are as follows.

・Text display
・Notes field (*)
・Plugin command (*)
・Plugin parameter (*)
・Explanation fields for skills, etc.
*Only for plugins that take PluginCommonBase.js as a base.

Please refer to the help within the plugin for explanations.

Parameters

Invalidate Mask Processing Invalidates mask processing when windows overlap.

RegionBase

Offers a database of regions and terrain tags.
The specs generally follow RPG Maker MV Trinity.
The plugin offers the following functions using regions and terrain tags as triggers.
・Event, player passage determination (4 directions included)
・Ladders, bushes, counters, damage floors
・Calling of common events (3 trigger types)
・Switches that turn ON only when a tile is entered
・Traits enabled only when a tile is entered
・Notes field

The database can be referenced from scripts and external plug-ins with the following script.
Please note that when not configured, or if the index is set to [0], the content will become undefined.

$dataSystem.regions[ID];
$dataSystem.terrainTags[ID];

Parameters

Region List List of region data.
Terrain Tag List List of terrain tag data.

TextPicture

This plugin provides a command for displaying text as a picture.

Please use the following procedure.
1. Run the Plugin Command [Text Picture Settings].
2. Execute [Show Picture], without specifying an image.

TextScriptBase

This is a database that can register and manage multi-line strings such as text and scripts.
Registered text can be referenced with the following control codes.
¥tx[aaa] // Swaps in the text registered with identifier [aaa].
¥js[bbb] // Evaluates the text registered with identifier [bbb] as a script on the spot and is swapped out for the results.
When executing scripts, the plugin can pass arguments.
Arguments are automatically type converted, and can be referenced from the "args" array.
\js[bbb,10,ccc] // Array [10, 'ccc'] is stored in variable args.

Scripts can also be directly entered and embedded.
\js // Is replaced by the execution results of script xxx.
However, you will need to escape as shown below when symbols "<" or ">" are used in scripting.
> : &gt;
< : &lt;

The situations where control characters can be used are as follows.
・Text display
・Notes field (*)
・Plugin command (*)
・Plugin parameter (*)
・Explanation fields for skills, etc.
*Only for plugins that take PluginCommonBase.js as a base.

This plugin allows you to easily register and call frequently used scripts and text, and configure long strings even when the database input field is restricted.

Parameters

Text Base List List of registered text and scripts.

UniqueDataLoading

Optional json files placed in the data folder will be loaded.
Please create json files as text files that can be parsed as a JSON.
Defined files will be loaded on game launch.

Data will be stored in the global object with the name specified.
If a "window" is specified in the global variable name, each object will be defined as its own global variable, but please look out for competing names.

This can also be used to load data created with the MZ database converter, and data added with proprietary plugins.

Loaded data will be referred to as follows by proprietary plugins and scripts.

Reference example where global variable is [$dataUniques] and property name is [property].
$dataUniques.property

The method below will be called if all unique data is loaded correctly.
Please redefine if needed.
Scene_Boot.prototype.onUniqueDataLoad

Parameters

Global Variable Name Global object name used to define unique data. Registered variables are generated under this variable.
Data List List of unique data. Place optional json files in the data folder.