Welcome to PGMV! My goal is to make it easy for everyone to find and share great plugins for creating amazing games. As a plugin developer myself, I'm excited to grow this community with all of you.
TM Future Sight - TMFutureSight.js
Plugin desc : Displays text hints about the Enemies's next action.
License : MIT License
Author : tomoaky
Desc page : https://github.com/munokura/tomoaky-MV-plugins
Download Page : https://raw.githubusercontent.com/munokura/tomoaky-MV-plugins/refs/heads/master/TMFutureSight.js
File name : TMFutureSight.js
Help of plugin :
@plugindesc Displays text hints about the Enemies's next action. @author tomoaky @url https://github.com/munokura/tomoaky-MV-plugins @license MIT License @help English Help Translator: munokura This is an unofficial English translation of the plugin help, created to support global RPG Maker users. Feedback is welcome to improve translation quality (see: https://github.com/munokura/tomoaky-MV-plugins ). Original plugin by tomoaky. ----- TMPlugin - Enemy Action Prediction ver. 1.1.0 How to Use: Set action prediction using tags like <fsText:Predicted Text> in the skill's Note field. Predictive text will be displayed over the enemy graphics while you're entering party commands during battle scenes. This plugin has been tested with RPG Maker MV Version 1.6.1. This plugin is distributed under the MIT License and is free for commercial use, modification, and redistribution. Note field Tag (Skill): <fsText:Predicted Text> Predictive text will be displayed over the enemy graphics while you're entering commands on the turn the enemy will use this skill. If this tag is not present, the skill name will be displayed instead. You can add line breaks to the predictive text to display multiple lines of action predictions. However, the number of lines cannot exceed the number set by the plugin parameter maxLines. <fsIcon:5> Displays icon number 5 at the beginning of the predictive text. If this tag is not present, a skill icon will be displayed instead. If the plugin parameter showIcon is set to OFF (false), the icon will not be displayed. Memo Tag (Enemies): <fsOffsetX:50> Shifts the display position of this enemy's predicted behavior 50 dots to the right. To shift it to the left, set a negative value. <fsOffsetY:80> Shifts the display position of this enemy's predicted behavior 80 dots down. To shift it up, set a negative value. Plugin Command: fsStop Disables the behavior prediction function. The behavior prediction function is enabled at the start of the game. The behavior prediction function status is saved in save data. fsStart Enables the behavior prediction function if it was previously disabled. Plugin Parameter Notes: maxLines Sets the maximum number of lines for the behavior prediction display. The more lines you add, the larger the bitmap generated will be, so do not set a value larger than necessary. If multiple actions occur per turn, you will need as many lines as there are actions. If line breaks are used in the action prediction display, the required number of lines will increase. color / backColor / headerColor This parameter accepts color names such as black or blue, and color codes such as #000000 or #0000ff. headerText This is the header text to display in the upper left of the action prediction. If nothing is entered, the header text will be hidden. cornerRadius By installing TMBitmapEx.js above this plugin and setting this parameter to a value of 1 or greater, you can make the background of the action prediction a rounded rectangle. @param width @desc Width of action prediction display Default: 240 @default 240 @type number @param maxLines @desc Maximum number of lines for action prediction display Default: 3 @default 3 @type number @param lineHeight @desc Height of one line of the action prediction display Initial value: 36 @default 36 @type number @param fontSize @desc Font size for predictive behavior display Default: 28 @default 28 @type number @param color @desc Prediction Show Text color Default: white @default white @param backColor @desc Background color of the action prediction display Default: black @default black @param backOpacity @desc Background opacity of the action prediction display. Default: 128 (0 to 255) @default 128 @type number @max 255 @param textAlign @desc Alignment of action prediction display @default center @type select @option left @option center @option right @param showIcon @desc Display an icon at the beginning of the skill name. Default: ON (ON = Display / OFF = Hide) @default true @type boolean @param headerText @desc Header text for action prediction display Default: Next @default Next @param headerHeight @desc Header height for action prediction display Default: 20 @default 20 @type number @param headerFontSize @desc Font size of header for action prediction display Default: 16 @default 16 @type number @param headerColor @desc Prediction header text color Default: red @default red @param cornerRadius @desc Radius of the rounded part of the rounded rectangle when TMBitmapEx.js is installed. Default value: 6 @default 6 @type number