赞 | 0 |
VIP | 0 |
好人卡 | 2 |
积分 | 8 |
经验 | 16054 |
最后登录 | 2024-10-10 |
在线时间 | 278 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 816
- 在线时间
- 278 小时
- 注册时间
- 2016-1-27
- 帖子
- 53
|
请用这个
- #==============================================================================#
- # * RGSS3 Script - Captian Lock #
- # * Author - Shadwo Momo #
- # * Version - 1.0 #
- # * Last Update - 2013.12.15 #
- #------------------------------------------------------------------------------#
- # * Introduce #
- # Prevent the captian from being replaced. #
- #------------------------------------------------------------------------------#
- # * Instruction #
- # Insert the script below other materials but above Main. #
- #------------------------------------------------------------------------------#
- # * Update #
- # V 1.0 2013.12.15 Build #
- #------------------------------------------------------------------------------#
- # * License #
- # This script is written by Shadow Momo. Please keep this information if you #
- # use or edit it. #
- #==============================================================================#
- class Scene_Menu
- alias :on_formation_ok_captian_lock :on_formation_ok
- def on_formation_ok
- if @status_window.index == 0
- Graphics.wait(20)
- Sound.play_buzzer
- @status_window.activate
- else
- on_formation_ok_captian_lock
- end
- end
- end
- #==============================================================================#
- #=========================== ===========================#
- # End of File #
- #=========================== ===========================#
- #==============================================================================#
复制代码 |
评分
-
查看全部评分
|