Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //=============================================================================
- // Arthran MV Plugin Commands
- // Art_MVPluginCommands.js
- //=============================================================================
- var Imported = Imported || {};
- Imported.Art_MVPluginCommands = true;
- /*:
- * @target MZ
- * @plugindesc MV Plugin Commands - Ver 1.0 - Allows you to use MV plugin commands in MZ
- * @author Arthran
- *
- * @command oldPluginCommand
- * @text Old Plugin Command
- * @desc Allows you to use MV plugin commands in MZ.
- *
- * @arg command
- * @text Command
- * @desc The MV plugin command to use.
- * @type string
- *
- * @help
- * --------------------------------------------------------------------
- * This plugin allows you to use MV plugin commands in MZ. Just use the
- * "Old Plugin Command" plugin command that comes with this plugin, and
- * then enter the MV plugin command into the "Command" field.
- *
- * --------------------------------------------------------------------
- * Terms of Use
- * --------------------------------------------------------------------
- * Can be used in any type of project. Credit is welcome but not required.
- */
- PluginManager.registerCommand("Art_MVPluginCommands", "oldPluginCommand", function(aArgs) {
- const args = aArgs.command.split(" ");
- const command = args.shift();
- this.pluginCommand(command, args);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement