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

[转载发布] DoubleX RMMV Popularized ATB Clock

[复制链接]
累计送礼:
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 show the battle turn clock, unit and count in battle

    Games using this plugin
    None so far

    Spoiler: Configurations
                    Code:       
    1. * @param show_turn_clock_window
    2. * @desc Setups a window in battle showing the battle turn clock, unit and
    3. *       count if show_turn_clock_window is set as true
    4. * @default true
    5. *
    6. * @param turn_clock_window_x
    7. * @desc Sets the x position of the battle turn clock window as
    8. *       turn_clock_window_x
    9. * @default 0
    10. *
    11. * @param turn_clock_window_y
    12. * @desc Sets the y position of the battle turn clock window as
    13. *       turn_clock_window_y
    14. * @default 168
    15. *
    16. * @param turn_clock_window_width
    17. * @desc Sets the width of the battle turn clock window as
    18. *       turn_clock_window_width
    19. * @default 400
    20. *
    21. * @param turn_clock_window_height
    22. * @desc Sets the height of the battle turn clock window as
    23. *       turn_clock_window_height
    24. * @default 60
    25. *
    26. * @param turn_clock_text_size
    27. * @desc Sets the size of the text shown in the battle turn clock window as
    28. *       turn_clock_text_size
    29. * @default 20
    30. *
    31. * @param turn_clock_text_x
    32. * @desc Sets the x position of the text shown in the battle turn clock window
    33. *       as turn_clock_text_x
    34. * @default 0
    35. *
    36. * @param turn_clock_text_y
    37. * @desc Sets the y position of the text shown in the battle turn clock window
    38. *       as turn_clock_text_x
    39. * @default -8
    40. *
    41. * @param turn_clock_text_act
    42. * @desc Sets the text showing that the clock unit's action as
    43. *       turn_clock_text_act
    44. * @default Action
    45. *
    46. * @param turn_clock_text_sec
    47. * @desc Sets the text showing that the clock unit's second as
    48. *       turn_clock_text_sec
    49. * @default Frame
    50. *
    51. * @param turn_clock_text_unavailable
    52. * @desc Sets the text showing that the clock unit's unavailable as
    53. *       turn_clock_text_unavailable
    54. * @default Stopped
    55. *
    56. * @param turn_clock_bar_x
    57. * @desc (v1.01a+)Sets the x offset of the turn clock bar as turn_clock_bar_x
    58. * @default 0
    59. *
    60. * @param turn_clock_bar_y
    61. * @desc (v1.01a+)Sets the y offset of the turn clock bar as turn_clock_bar_y
    62. * @default 0
    63. *
    64. * @param turn_clock_bar_width
    65. * @desc (v1.01a+)Sets the width of the turn clock bar as turn_clock_bar_width
    66. * @default 360
    67. *
    68. * @param turn_clock_bar_height
    69. * @desc (v1.01a+)Sets the height of the turn clock bar as turn_clock_bar_height
    70. * @default 54
    71. *
    72. * @param turn_clock_bar_back_color
    73. * @desc (v1.01a+)Sets the color of the turn clock back bar as
    74. *       turn_clock_bar_back_color
    75. *       turn_clock_bar_back_color must return a valid text color code
    76. * @default 15
    77. *
    78. * @param turn_clock_bar_color1
    79. * @desc (v1.01a+)Sets the 1st color of the turn clock bar as
    80. *       turn_clock_bar_color1
    81. *       turn_clock_bar_color1 must return a valid text color code
    82. * @default 7
    83. *
    84. * @param turn_clock_bar_color2
    85. * @desc (v1.01a+)Sets the 2nd color of the turn clock bar as
    86. *       turn_clock_bar_color2
    87. *       turn_clock_bar_color2 must return a valid text color code
    88. * @default 8
    复制代码


    Spoiler: Plugin Calls
                    Code:       
    1. *    # Configuration manipulations                                         
    2. *      1. $gameSystem.patb.param                                          
    3. *         - Returns the value of param listed in the plugin manager         
    4. *      2. $gameSystem.patb.param = val                                    
    5. *         - Sets the value of param listed in the plugin manager as val     
    6. *         - All $gameSystem.patb.param changes will be saved
    复制代码


    Video


    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

    Spoiler: Changelog
                    Code:       
    1. *      v1.01a(GMT 1200 25-3-2022):
    2. *      1. Added the following parameters:
    3. *         - turn_clock_bar_x
    4. *         - turn_clock_bar_y
    5. *         - turn_clock_bar_width
    6. *         - turn_clock_bar_height
    7. *         - turn_clock_bar_back_color
    8. *         - turn_clock_bar_color1
    9. *         - turn_clock_bar_color2
    10. *      v1.00b(GMT 0400 3-7-2016):
    11. *      1. Fixed below configuration changes not taking place in same battle:
    12. *         - turn_clock_window_x
    13. *         - turn_clock_window_y
    14. *         - turn_clock_window_width
    15. *         - turn_clock_window_height
    16. *         - turn_clock_text_size
    17. *         - turn_clock_text_x
    18. *         - turn_clock_text_y
    19. *      2. Increased this plugin's effectiveness, efficiency and flexibility
    20. *      v1.00a(GMT 1000 24-1-2016):
    21. *      1. 1st completed version of this plugin finished
    复制代码


    DoubleX RMMV Popularized ATB Clock


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

    本帖子中包含更多资源

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

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

    使用道具 举报

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

    本版积分规则

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

    幸运抽奖

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

    立即查看

    聊天机器人
    Loading...

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

    GMT+8, 2026-8-1 06:41 , Processed in 0.102904 second(s), 52 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

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