DoubleX RMMV Popularized ATB Clock

● ARCHIVED · READ-ONLY
Started by DoubleX 3 posts View original ↗
  1. Note
    This plugin's available for commercial use

    Purpose
    Lets users show the battle turn clock, unit and count in battle

    Games using this plugin
    None so far

    Configurations
    Code:
     * @param show_turn_clock_window
     * @desc Setups a window in battle showing the battle turn clock, unit and
     *       count if show_turn_clock_window is set as true
     * @default true
     *
     * @param turn_clock_window_x
     * @desc Sets the x position of the battle turn clock window as
     *       turn_clock_window_x
     * @default 0
     *
     * @param turn_clock_window_y
     * @desc Sets the y position of the battle turn clock window as
     *       turn_clock_window_y
     * @default 168
     *
     * @param turn_clock_window_width
     * @desc Sets the width of the battle turn clock window as
     *       turn_clock_window_width
     * @default 400
     *
     * @param turn_clock_window_height
     * @desc Sets the height of the battle turn clock window as
     *       turn_clock_window_height
     * @default 60
     *
     * @param turn_clock_text_size
     * @desc Sets the size of the text shown in the battle turn clock window as
     *       turn_clock_text_size
     * @default 20
     *
     * @param turn_clock_text_x
     * @desc Sets the x position of the text shown in the battle turn clock window
     *       as turn_clock_text_x
     * @default 0
     *
     * @param turn_clock_text_y
     * @desc Sets the y position of the text shown in the battle turn clock window
     *       as turn_clock_text_x
     * @default -8
     *
     * @param turn_clock_text_act
     * @desc Sets the text showing that the clock unit's action as
     *       turn_clock_text_act
     * @default Action
     *
     * @param turn_clock_text_sec
     * @desc Sets the text showing that the clock unit's second as
     *       turn_clock_text_sec
     * @default Frame
     *
     * @param turn_clock_text_unavailable
     * @desc Sets the text showing that the clock unit's unavailable as
     *       turn_clock_text_unavailable
     * @default Stopped
     *
     * @param turn_clock_bar_x
     * @desc (v1.01a+)Sets the x offset of the turn clock bar as turn_clock_bar_x
     * @default 0
     *
     * @param turn_clock_bar_y
     * @desc (v1.01a+)Sets the y offset of the turn clock bar as turn_clock_bar_y
     * @default 0
     *
     * @param turn_clock_bar_width
     * @desc (v1.01a+)Sets the width of the turn clock bar as turn_clock_bar_width
     * @default 360
     *
     * @param turn_clock_bar_height
     * @desc (v1.01a+)Sets the height of the turn clock bar as turn_clock_bar_height
     * @default 54
     *
     * @param turn_clock_bar_back_color
     * @desc (v1.01a+)Sets the color of the turn clock back bar as
     *       turn_clock_bar_back_color
     *       turn_clock_bar_back_color must return a valid text color code
     * @default 15
     *
     * @param turn_clock_bar_color1
     * @desc (v1.01a+)Sets the 1st color of the turn clock bar as
     *       turn_clock_bar_color1
     *       turn_clock_bar_color1 must return a valid text color code
     * @default 7
     *
     * @param turn_clock_bar_color2
     * @desc (v1.01a+)Sets the 2nd color of the turn clock bar as
     *       turn_clock_bar_color2
     *       turn_clock_bar_color2 must return a valid text color code
     * @default 8

    Plugin Calls
    Code:
     *    # Configuration manipulations                                         
     *      1. $gameSystem.patb.param                                           
     *         - Returns the value of param listed in the plugin manager         
     *      2. $gameSystem.patb.param = val                                     
     *         - Sets the value of param listed in the plugin manager as val     
     *         - All $gameSystem.patb.param changes will be saved

    Video
    [embedded media]

    Prerequisites
    Plugins:
    1. DoubleX RMMV Popularized ATB Core
    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

    Changelog
    Code:
    *      v1.01a(GMT 1200 25-3-2022):
     *      1. Added the following parameters:
     *         - turn_clock_bar_x
     *         - turn_clock_bar_y
     *         - turn_clock_bar_width
     *         - turn_clock_bar_height
     *         - turn_clock_bar_back_color
     *         - turn_clock_bar_color1
     *         - turn_clock_bar_color2
     *      v1.00b(GMT 0400 3-7-2016):
     *      1. Fixed below configuration changes not taking place in same battle:
     *         - turn_clock_window_x
     *         - turn_clock_window_y
     *         - turn_clock_window_width
     *         - turn_clock_window_height
     *         - turn_clock_text_size
     *         - turn_clock_text_x
     *         - turn_clock_text_y
     *      2. Increased this plugin's effectiveness, efficiency and flexibility
     *      v1.00a(GMT 1000 24-1-2016):
     *      1. 1st completed version of this plugin finished

    DoubleX RMMV Popularized ATB Clock
  2. Updates

    Code:
     *      v1.00b(GMT 0400 3-7-2016):                                            
     *      1. Fixed below configuration changes not taking place in same battle: 
     *         - turn_clock_window_x                                              
     *         - turn_clock_window_y                                              
     *         - turn_clock_window_width                                          
     *         - turn_clock_window_height                                         
     *         - turn_clock_text_size                                             
     *         - turn_clock_text_x                                                
     *         - turn_clock_text_y                                                
     *      2. Increased this plugin's effectiveness, efficiency and flexibility
  3. Updates
    Code:
     *      v1.01a(GMT 1200 25-3-2022):
     *      1. Added the following parameters:
     *         - turn_clock_bar_x
     *         - turn_clock_bar_y
     *         - turn_clock_bar_width
     *         - turn_clock_bar_height
     *         - turn_clock_bar_back_color
     *         - turn_clock_bar_color1
     *         - turn_clock_bar_color2