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

[转载发布] Sixth's Mini-Games - v1.2 (13/12/2015)

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

    连续签到: 2 天

    [LV.7]常住居民III

    9071

    主题

    864

    回帖

    6万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

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

    灌水之王

    发表于 2026-8-3 08:47:09 | 显示全部楼层 |阅读模式
    - Sixth's Mini-Games

    - Intro:
        I have been making mini-games for RPG Maker VX Ace for a while now, but never bothered to clean my code for them, let alone publishing them.
        But I decided to share these scripts now.
        When I finish with the code clean up for my other mini-games, I will add them too.
        Note that all of my mini-games require at least 2 of my other scripts. Those are:
        - Mini-Game Base
        - Picture Number Drawing
        These are included in the demo.
        Currently, there are 3 mini-games in the demo below, and these are:

    - "Stay In Range" Mini-Game:
    Spoiler                Code:       
    1. #===============================================================================
    2. # * [ACE] "Stay-In-Range" Mini-Game
    3. #===============================================================================
    4. # * Made by: Sixth (www.rpgmakervxace.net, www.forums.rpgmakerweb.com)
    5. # * Version: 1.1
    6. # * Updated: 08/12/2015
    7. # * Requires: Sixth's Picture Number Drawing
    8. #             Sixth's Mini-Game Base
    9. #-------------------------------------------------------------------------------
    10. # * < Change Log >
    11. #-------------------------------------------------------------------------------
    12. # * Version 1.0 (29/11/2015)
    13. #   - Initial release.
    14. # * Version 1.1 (08/12/2015)
    15. #   - Re-worked the code. This script now requires my Mini-Game Base script too!
    16. #   - Changed the script calls. All of them are explained in the Mini-Game Base
    17. #     script (except the mini-game starting script call)!
    18. #   - Added popups to show the player when the game starts/ends.
    19. #-------------------------------------------------------------------------------
    20. # * < Description >
    21. #-------------------------------------------------------------------------------
    22. # * This is mini-game script, where the player needs to keep a cursor in the
    23. #   range of a moving and shrinking bar.
    24. # * The player can earn scores from winning in the game too. You can use these
    25. #   scores in eventing.# * Settings for making infinite difficulties.
    26. # * Completely image based! The images used can be changed during the game too!
    27. # * For scripters: Easily implement this mini-game into any scenes!
    28. #   All you have to do is to create a mini game instance and loop it's update
    29. #   method (along with the Input and Graphics update methods) until the game
    30. #   is finished.
    31. #-------------------------------------------------------------------------------
    32. # * < Instructions >
    33. #-------------------------------------------------------------------------------
    34. # * Refer to the script's header for usage information!
    35. #-------------------------------------------------------------------------------
    36. # * < Installation >
    37. #-------------------------------------------------------------------------------
    38. # * Place this script below Materials but above Main!
    39. #-------------------------------------------------------------------------------
    40. # * < Compatibility Info >
    41. #-------------------------------------------------------------------------------
    42. # * No known incompatibilities.
    43. #-------------------------------------------------------------------------------
    44. # * < Known Issues >
    45. #-------------------------------------------------------------------------------
    46. # * No known issues.
    47. #-------------------------------------------------------------------------------
    48. # * < Terms of Use >
    49. #-------------------------------------------------------------------------------
    50. # * Free to use for whatever purposes you want.
    51. # * Credit me (Sixth) in your game, pretty please!
    52. # * Posting modified versions of this script is allowed as long as you notice me
    53. #   about it with a link to it!
    54. #===============================================================================
    复制代码






    - QTE (Type 1) Mini-Game:
    Spoiler                Code:       
    1. #===============================================================================
    2. # * [ACE] QTE (Type 1) Mini-Game
    3. #===============================================================================
    4. # * Made by: Sixth (www.rpgmakervxace.net, www.forums.rpgmakerweb.com)
    5. # * Version: 1.1
    6. # * Updated: 13/12/2015
    7. # * Requires: Sixth's Picture Number Drawing
    8. #             Sixth's Mini-Game Base
    9. #-------------------------------------------------------------------------------
    10. # * < Change Log >
    11. #-------------------------------------------------------------------------------
    12. # * Version 1.0 (08/12/2015)
    13. #   - Initial release.
    14. # * Version 1.1 (13/12/2015)
    15. #   - Fixed a typo which resulted in reading the BGM change settings from the
    16. #     "Stay-In-Range" mini-game instead of this one.
    17. #-------------------------------------------------------------------------------
    18. # * < Description >
    19. #-------------------------------------------------------------------------------
    20. # * This is a mini-game script, where the player needs to press buttons at the
    21. #   right time. So, it's a timing mini-game, can be called a "quick time event"
    22. #   (QTE) mini-game as well.
    23. # * The player can earn scores from winning in the game too. You can use these
    24. #   scores in eventing.
    25. # * Settings for making infinite difficulties.
    26. # * Completely image based! The images used can be changed during the game too!
    27. # * For scripters: Easily implement this mini-game into any scenes!
    28. #   All you have to do is to create a mini game instance and loop it's update
    29. #   method (along with the Input and Graphics update methods) until the game
    30. #   is finished.
    31. #-------------------------------------------------------------------------------
    32. # * < Instructions >
    33. #-------------------------------------------------------------------------------
    34. # * Refer to the script's header for usage information!
    35. #-------------------------------------------------------------------------------
    36. # * < Installation >
    37. #-------------------------------------------------------------------------------
    38. # * Place this script below Materials but above Main!
    39. #-------------------------------------------------------------------------------
    40. # * < Compatibility Info >
    41. #-------------------------------------------------------------------------------
    42. # * No known incompatibilities.
    43. #-------------------------------------------------------------------------------
    44. # * < Known Issues >
    45. #-------------------------------------------------------------------------------
    46. # * No known issues.
    47. #-------------------------------------------------------------------------------
    48. # * < Terms of Use >
    49. #-------------------------------------------------------------------------------
    50. # * Free to use for whatever purposes you want.
    51. # * Credit me (Sixth) in your game, pretty please!
    52. # * Posting modified versions of this script is allowed as long as you notice me
    53. #   about it with a link to it!
    54. #===============================================================================
    复制代码






    - QTE (Type 2) Mini-Game:
    Spoiler                Code:       
    1. #===============================================================================
    2. # * [ACE] QTE (Type 2) Mini-Game
    3. #===============================================================================
    4. # * Made by: Sixth (www.rpgmakervxace.net, www.forums.rpgmakerweb.com)
    5. # * Version: 1.0
    6. # * Updated: 13/12/2015
    7. # * Requires: Sixth's Picture Number Drawing
    8. #             Sixth's Mini-Game Base
    9. #-------------------------------------------------------------------------------
    10. # * < Change Log >
    11. #-------------------------------------------------------------------------------
    12. # * Version 1.0 (13/12/2015)
    13. #   - Initial release.
    14. #-------------------------------------------------------------------------------
    15. # * < Description >
    16. #-------------------------------------------------------------------------------
    17. # * This is a mini-game script, where the player needs to press buttons at the
    18. #   right time. So, it's a timing mini-game, can be called a "quick time event"
    19. #   (QTE) mini-game as well.
    20. # * The player can earn scores from winning in the game too. You can use these
    21. #   scores in eventing.
    22. # * Settings for making infinite difficulties.
    23. # * Completely image based! The images used can be changed during the game too!
    24. # * For scripters: Easily implement this mini-game into any scenes!
    25. #   All you have to do is to create a mini game instance and loop it's update
    26. #   method (along with the Input and Graphics update methods) until the game
    27. #   is finished.
    28. #-------------------------------------------------------------------------------
    29. # * < Instructions >
    30. #-------------------------------------------------------------------------------
    31. # * Refer to the script's header for usage information!
    32. #-------------------------------------------------------------------------------
    33. # * < Installation >
    34. #-------------------------------------------------------------------------------
    35. # * Place this script below Materials but above Main!
    36. #-------------------------------------------------------------------------------
    37. # * < Compatibility Info >
    38. #-------------------------------------------------------------------------------
    39. # * No known incompatibilities.
    40. #-------------------------------------------------------------------------------
    41. # * < Known Issues >
    42. #-------------------------------------------------------------------------------
    43. # * No known issues.
    44. #-------------------------------------------------------------------------------
    45. # * < Terms of Use >
    46. #-------------------------------------------------------------------------------
    47. # * Free to use for whatever purposes you want.
    48. # * Credit me (Sixth) in your game, pretty please!
    49. # * Posting modified versions of this script is allowed as long as you notice me
    50. #   about it with a link to it!
    51. #===============================================================================
    复制代码






    - Demo:
        You can get the demo with the scripts here: https://www.mediafire.com/?pbncoik5eca2ai2
        The demo contains all the mini-games and the necessary scripts too!
        Also some additional scripts are included, but those are not required for the mini-games! All credits for the additional scripts go to their respective authors!
        All graphics used for the mini-games in the demo is made by me. You can use them if you want.

    - Videos:

    - "Stay In Range" Mini-Game:
    Spoiler





    - QTE (Type 1) Mini-Game:

    Spoiler





    - QTE (Type 2) Mini-Game:

    Spoiler





    - Author's Notes:
        In the demo, I made different settings for different difficulty levels.
        The "Insane" mode is usually not meant to be put in a real game. They are almost impossible to finish (in the case of "Stay In Range" mini-game) or they are simply not worth to do due to the low amount of scores the player will earn from them (in the case of QTE (Type 1) mini-game).
        You can, of course, change all settings if you want, I just wanted to make something annoying in the demo for each mini-games.  



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

    本帖子中包含更多资源

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

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

    使用道具 举报

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

    本版积分规则

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

    幸运抽奖

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

    立即查看

    聊天机器人
    Loading...

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

    GMT+8, 2026-8-17 07:21 , Processed in 0.086645 second(s), 53 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

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