| 
 
| 赞 | 0 |  
| VIP | 0 |  
| 好人卡 | 2 |  
| 积分 | 8 |  
| 经验 | 16054 |  
| 最后登录 | 2025-10-13 |  
| 在线时间 | 279 小时 |  
 Lv2.观梦者 
	梦石0 星屑831 在线时间279 小时注册时间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                              #
#===========================                        ===========================#
#==============================================================================#
 | 
 评分
查看全部评分
 |