| 
 
| 赞 | 1 |  
| VIP | 0 |  
| 好人卡 | 10 |  
| 积分 | 6 |  
| 经验 | 33498 |  
| 最后登录 | 2022-11-29 |  
| 在线时间 | 1118 小时 |  
 Lv2.观梦者 
	梦石0 星屑600 在线时间1118 小时注册时间2012-12-24帖子831 | 
| 你可以用第一人固定的脚本,其他的人都可随意整队,除了主角 复制代码#============================================================================== 
#==============================================================================
=begin
 
作者:tomoaky
webサイト:ひきも記 ([url]http://hikimoki.sakura.ne.jp/[/url])
 
パーティの先頭にいるアクターは並び替えできないように制限します。
 
2012.09.14  Ver1.0
  公開
 
=end
 
#==============================================================================
# ■ Window_MenuStatus
#==============================================================================
class Window_MenuStatus
  #--------------------------------------------------------------------------
  # ● 決定ボタンが押されたときの処理
  #--------------------------------------------------------------------------
  alias tmtopfix_window_menustatus_process_ok process_ok
  def process_ok
    if @pending_index >= 0 && (index == 0 || @pending_index == 0)
      Sound.play_buzzer
    else
      tmtopfix_window_menustatus_process_ok
    end
  end
end
 | 
 |