设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 57|回复: 0

[转载发布] DoubleX RMMV Popularized ATB Bar

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    2026-7-12 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    7959

    主题

    864

    回帖

    3万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    29925
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    38778

    灌水之王

    发表于 4 天前 | 显示全部楼层 |阅读模式
    Note
    This plugin's available for commercial use

    Purpose
    Lets users set when/how ATB bars are shown on battler sprites

    Games using this plugin
    None so far

    Configurations
    Spoiler* @param bar_show
    * @desc Sets the code as bar_show determining when the battler ATB bars will be
    *       shown on the battler sprites
    *       It'll only be used by battlers not using <patb bar show: code> notetags
    *       Available bar_show codes:
    *       always - The battler ATB bars will always be shown on the enemy sprites
    *       defeat - The actor ATB bars will always be shown on the actor sprites
    *                while the enemy ATB bars will only be shown on the enemy
    *                sprites for those being defeated before
    *                This code will only be available if DoubleX RMMV Death Records
    *                is used
    *       Setting bar_show as an unavailable code means the battler ATB bars will
    *       never be shown on the battler sprites
    * @Default always
    *
    * @param bar_w
    * @desc Sets the width of the ATB bars shown on the battler sprites as bar_w
    *       It'll only be used by battlers not using any <patb bar w: w> notetag
    * @Default 87
    *
    * @param bar_h
    * @desc Sets the height of the ATB bars shown on the battler sprites as bar_h
    *       It'll only be used by battlers not using any <patb bar h: h> notetag
    * @Default 16
    *
    * @param bar_x
    * @desc Sets the x offset of the ATB bars shown on the battler sprites as bar_x
    *       It'll only be used by battlers not using any <patb bar x: x> notetag
    * @Default 0
    *
    * @param bar_y
    * @desc Sets the y offset of the ATB bars shown on the battler sprites as bar_y
    *       It'll only be used by battlers not using any <patb bar y: y> notetag
    * @Default 0
    *
    * @param bar_opacity
    * @desc Sets the opacity of the ATB bars shown on the battler sprites as
    *       bar_opacity
    *       It'll only be used by battlers not using any
    *       <patb bar opacity: opacity> notetag
    * @Default 255
    *
    * @param bar_text_size
    * @desc Sets the size of the description text of the ATB bars shown on the
    *       battler sprites as bar_text_size
    *       It'll only be used by battlers not using any <patb bar text size: size>
    *       notetag
    * @Default 13




    Notetags
    Spoiler*    # Actor/Class/Weapon/Armor/Enemy/State Notetags:                     
    *      State notetags take the highest priority, followed by enemy, weapon,
    *      armor, class and actor                                             
    *      The 1st notetag that's being read by the battler will be used      
    *      1. <patb bar show: code>                                          
    *         - Sets the code determining when the battler ATB bars will be shown
    *           on the battler sprites as code                                
    *           Available codes are those of bar_show                        
    *         - Setting code as an unavailable code means the battler ATB bars
    *           will never be shown on the battler sprites                    
    *      2. <patb bar w: w>                                                
    *         - Sets the width of the ATB bars shown on the battler sprites as w
    *      3. <patb bar h: h>                                                
    *         - Sets the height of the ATB bars shown on the battler sprites as h
    *      4. <patb bar x: x>                                                
    *         - Sets the x offset of the ATB bars shown on the battler sprites as
    *           x                                                            
    *      5. <patb bar y: y>                                                
    *         - Sets the y offset of the ATB bars shown on the battler sprites as
    *           y                                                            
    *      6. <patb bar opacity: opacity>                                    
    *         - Sets the opacity of the ATB bars shown on the battler sprites as
    *           opacity                                                      
    *      7. <patb bar text size: size>                                      
    *         - Sets the size of the description text of the ATB bars shown on
    *           the battler sprites as size




    Plugin Calls
    Spoiler*    # 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              
    *    # Actor/Class/Weapon/Armor/Enemy/State manipulations                 
    *      1. meta.patb_bar_show                                             
    *         - Returns the code determining when the battler ATB bars will be
    *           shown on the battler sprites                                 
    *      2. meta.patb_bar_show = code                                       
    *         - Sets the code determining when the battler ATB bars will be shown
    *           on the battler sprites as code                                
    *         - All meta.patb_bar_show changes can be saved if               
    *           DoubleX RMMV Dynamic Data is used                             
    *      3. meta.patb_bar_w                                                
    *         - Returns the width of the ATB bars shown on the battler sprites
    *      4. meta.patb_bar_w = w                                             
    *         - Sets the width of the ATB bars shown on the battler sprites as w
    *         - All meta.patb_bar_w changes can be saved if                  
    *           DoubleX RMMV Dynamic Data is used                             
    *      5. meta.patb_bar_h                                                
    *         - Returns the height of the ATB bars shown on the battler sprites
    *      6. meta.patb_bar_w = h                                             
    *         - Sets the height of the ATB bars shown on the battler sprites as h
    *         - All meta.patb_bar_h changes can be saved if                  
    *           DoubleX RMMV Dynamic Data is used                             
    *      7. meta.patb_bar_x                                                
    *         - Returns the x offset of the ATB bars shown on the battler sprites
    *      8. meta.patb_bar_y = x                                             
    *         - Sets the x offset of the ATB bars shown on the battler sprites as
    *           x                                                            
    *         - All meta.patb_bar_x changes can be saved if                  
    *           DoubleX RMMV Dynamic Data is used                             
    *      9. meta.patb_bar_y                                                
    *         - Returns the y offset of the ATB bars shown on the battler sprites
    *      10. meta.patb_bar_y = y                                            
    *          - Sets the y offset of the ATB bars shown on the battler sprites
    *            as y                                                         
    *          - All meta.patb_bar_y changes can be saved if                  
    *            DoubleX RMMV Dynamic Data is used                           
    *      11. meta.patb_bar_opacity                                          
    *          - Returns the opacity of the ATB bars shown on the battler sprites
    *      12. meta.patb_bar_opacity = opacity                                
    *          - Sets the opacity of the ATB bars shown on the battler sprites
    *            as opacity                                                   
    *          - All meta.patb_bar_opacity changes can be saved if            
    *            DoubleX RMMV Dynamic Data is used                           
    *      13. meta.patb_bar_text_size                                       
    *          - Returns the size of the description text of the ATB bars shown
    *            on the battler sprites                                       
    *      14. meta.patb_bar_text_size = size                                 
    *          - Sets the size of the description text of the ATB bars shown on
    *            the battler sprites as size                                 
    *          - All meta.patb_bar_size changes can be saved if               
    *            DoubleX RMMV Dynamic Data is used




    Video

    https://www.youtube.com/embed/xY_HrHi0e5M

    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
    Spoiler*      v1.00d(GMT 0600 19-5-2021):                                          
    *      1. Fixed all notetags not working bug
    *      v1.00c(GMT 1700 16-9-2016):                                         
    *      1. Improved this plugin's effectiveness, efficiency and robustness
    *      v1.00b(GMT 1400 31-5-2016):                                         
    *      1. Improved this plugin's effectiveness, efficiency and readibility
    *      v1.00a(GMT 1500 19-2-2016):                                       
    *      1. 1st completed version of this plugin finished




    DoubleX RMMV Popularized ATB Bar


    本贴来自国际rpgmaker官方论坛作者:DoubleX处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/doublex-rmmv-popularized-atb-bar.57195/

    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有账号?立即注册

    x
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-8-1 07:37 , Processed in 0.144201 second(s), 53 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表