Dash Toggle (YEP)

From Yanfly.moe Wiki
Revision as of 18:01, 27 June 2019 by Yanfly (talk | contribs)
Jump to navigation Jump to search

Welcome to the wiki! This is where you can find resources from Yanfly.moe, Ækashics.moe,
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.



Download

System

This is a plugin created for RPG Maker MV.

For help on how to install plugins, click here.

For help on how to update plugins, click here.

Got errors with your RPG Maker MV plugin? Click here.


Masterarbeit Writer

Yanfly Engine Plugins

This plugin is a part of the Yanfly Engine Plugins library.


Introduction

RPG Maker MV lacks the ability to toggle dashing on and off. This plugin
will enable you to toggle dashing on and off as well as provide certain
traits that will inhibit the party leader from being able to dash (such as
an extra heavy weapon).

Notetags

NotetagsMV.png

RPG Maker MV's editor is unable to allow for custom traits/properties that a game dev may wish to associate with a database object, event, map, etc. Notetags are used to work around such limitations by allowing the game dev to tag certain traits/properties using specific Notetags declared by the related plugin.

Here is a list of Notetag(s) that you may use.

---

You can use these notetags to add a disabled dashing trait. If the leading
party member has a trait that disables dashing, then the player cannot dash
while that actor is in the lead.

Actor, Class, Weapon, Armor, and State Notetag:

  <Disable Dashing>
  If the leading party member has a trait with this notetag, then the player
  cannot dash while that actor is in the lead.

Plugin Commands

PluginCommandsMV.png

Plugin Commands are event commands that are used to call upon functions added by a plugin that aren't inherently a part of RPG Maker MV.

Here is a list of Plugin Command(s) that you may use:

You can use these plugin commands to enable or disable dashing mid-game!

Plugin Command

  EnableDashing
  - Enables the player to be able to dash. However, this will not take
  priority in maps that disable dashing altogether.

  DisableDashing
  - Disables the player from being able to dash.

  ToggleDashing
  - This will enable/disable dashing. This will not take priority in maps
  that disable dashing altogether.

Changelog

Version 1.03:
- Updated for RPG Maker MV version 1.5.0.

Version 1.02:
- Added a failsafe to prevent crashes if there are no members in the party.

Version 1.01:
- Updated for RPG Maker MV version 1.1.0.

Version 1.00:
- Finished Plugin!