The RPG Maker Resource Kit

RMRK RPG Maker Creation => MV => MV Scripts Database => Topic started by: DoubleX on February 20, 2016, 08:20:35 AM

Title: DoubleX RMMV Popularized ATB Reset
Post by: DoubleX on February 20, 2016, 08:20:35 AM
Changelog
Code: [Select]
*      v1.00b(GMT 1400 31-5-2016):                                           
 *      1. Fixed a bug where the reset value is always 0 in the delay mode     
 *      v1.00a(GMT 0800 20-2-2016):                                           
 *      1. 1st completed version of this plugin finished                     

Authors
DoubleX

Credits
DoubleX(Optional)

Purpose
Lets users set skills/items to have different ATB reset values

Games using this plugin
None so far

Notetags
Code: [Select]
*    # Skill/Item Notetags:                                                 
 *      1. <operator patb reset: val>                                         
 *         - Assigns val to the battler's atb reset value via operator       
 *         - operator can be either =, +, -, *, / or %, meaning set to, add   
 *           by, subtract by, multiply by, divide by or modulo by respectively
 *         - All instances of this notetag will be used sequentially         

Plugin Calls
Code: [Select]
*    # Data Skill/Item manipulations                                         
 *      1. meta.patb_reset                                                   
 *         - Returns the atb reset value with the operator stored in         
 *           <operator patb reset: val> in the form of [opeartor, val]       
 *      2. meta.patb_reset = [opeartor, val]                                 
 *         - Sets the atb reset value with the operator stored in             
 *           <operator patb reset: val> as string operator and Number val     
 *         - All meta.patb_reset changes can be saved if                     
 *           DoubleX RMMV Dynamic Data is used                               
 *    # Battler manipulations                                                 
 *      1. patb_reset_val                                                     
 *         - Returns the battler ATB reset value                             
 *      2. patb_reset_val = val                                               
 *         - Sets the battler ATB reset value as val                         

Video
https://www.youtube.com/watch?v=Iqy7c1Wm7TQ (https://www.youtube.com/watch?v=Iqy7c1Wm7TQ)

Prerequisites
Plugins:
1. DoubleX RMMV Popularized ATB Core (http://rmrk.net/index.php?topic=50491.0)
Abilities:
1. Little Javascript coding proficiency to fully utilize this plugin

Terms Of Use
You shall keep this plugin's Plugin Info part's contents intact
You shalln't claim that this plugin's written by anyone other than DoubleX or his aliases
None of the above applies to DoubleX or his/her aliases
Title: Re: DoubleX RMMV Popularized ATB Reset
Post by: DoubleX on June 02, 2016, 01:07:27 PM
Updates
Code: [Select]
*      v1.00b(GMT 1400 31-5-2016):                                           
 *      1. Fixed a bug where the reset value is always 0 in the delay mode