RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
DoubleX RMMV Popularized ATB Event

0 Members and 1 Guest are viewing this topic.

***
Scripter
Rep:
Level 36
Changelog
Code: [Select]
*      v1.00b(GMT 0200 20-2-2016):                                           
 *      1. Improved this plugin's performance, readability and simplicity     
 *      v1.00a(GMT 0200 7-2-2016):                                           
 *      1. 1st completed version of this plugin finished                     
 *      v0.00b(GMT 0700 29-11-2015):                                         
 *      1. Increased this plugin's compactness                               
 *      v0.00a(GMT 0900 28-11-2015):                                         
 *      1. 1st testing version of this plugin finished                       

Authors
DoubleX

Credits
DoubleX(Optional)

Purpose
Lets users calls some common events at some specific atb timing

Games using this plugin
None so far

Configurations
Code: [Select]
* @param pre_input_common_event_id
 * @desc Sets the common event with id pre_input_common_event_id to be called
 *       whenever a battler just becomes able to act
 *       pre_input_common_event_id must return a Number
 *       If pre_input_common_event_id doesn't return the id of an existing
 *       common event, no common event will be called with this timing
 * @default 0
 *
 * @param post_input_common_event_id
 * @desc Sets the common event with id post_input_common_event_id to be called
 *       whenever a battler just finished inputting actions
 *       post_input_common_event_id must return a Number
 *       If post_input_common_event_id doesn't return the id of an existing
 *       common event, no common event will be called with this timing
 * @default 0
 *
 * @param pre_reset_common_event_id
 * @desc Sets the common event with id pre_reset_common_event_id to be called
 *       right before resetting a battler's atb
 *       pre_reset_common_event_id must return a Number
 *       If pre_reset_common_event_id doesn't return the id of an existing
 *       common event, no common event will be called with this timing
 * @default 0
 *
 * @param post_reset_common_event_id
 * @desc Sets the common event with id post_reset_common_event_id to be called
 *       right after resetting a battler's atb
 *       post_reset_common_event_id must return a Number
 *       If post_reset_common_event_id doesn't return the id of an existing
 *       common event, no common event will be called with this timing
 * @default 0
 *
 * @param pre_update_common_event_id
 * @desc Sets the common event with id pre_update_common_event_id to be called
 *       right before running a global atb frame update
 *       pre_update_common_event_id must return a Number
 *       If pre_update_common_event_id doesn't return the id of an existing
 *       common event, no common event will be called with this timing
 * @default 0
 *
 * @param post_update_common_event_id
 * @desc Sets the common event with id post_update_common_event_id to be called
 *       right after running a global atb frame update
 *       post_update_common_event_id must return a Number
 *       If post_update_common_event_id doesn't return the id of an existing
 *       common event, no common event will be called with this timing
 * @default 0

Plugin Calls
Code: [Select]
*    # 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                 

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
« Last Edit: February 20, 2016, 03:52:20 AM by DoubleX »

***
Scripter
Rep:
Level 36
Updates
Code: [Select]
*      v1.00a(GMT 0200 7-2-2016):                                           
 *      1. 1st completed version of this plugin finished                     
 *      v0.00b(GMT 0700 29-11-2015):                                         
 *      1. Increased this plugin's compactness                               

***
Scripter
Rep:
Level 36
Updates
Code: [Select]
*      v1.00b(GMT 0200 20-2-2016):                                           
 *      1. Improved this plugin's performance, readability and simplicity