Project1

标题: 隊伍中的角色鎖定 [打印本页]

作者: 29162535ck    时间: 2013-8-23 13:35
标题: 隊伍中的角色鎖定
我想讓主角鎖定在隊伍中的第一位,可是不知道要怎麼做,有誰知道要怎麼做嗎?
作者: 喵呜喵5    时间: 2013-8-23 13:39
  1. #==============================================================================
  2. # ★ RGSS3_先頭並び替え不可 Ver1.0
  3. #==============================================================================
  4. =begin

  5. 作者:tomoaky
  6. webサイト:ひきも記 (http://hikimoki.sakura.ne.jp/)

  7. パーティの先頭にいるアクターは並び替えできないように制限します。

  8. 2012.09.14  Ver1.0
  9.   公開

  10. =end

  11. #==============================================================================
  12. # ■ Window_MenuStatus
  13. #==============================================================================
  14. class Window_MenuStatus
  15.   #--------------------------------------------------------------------------
  16.   # ● 決定ボタンが押されたときの処理
  17.   #--------------------------------------------------------------------------
  18.   alias tmtopfix_window_menustatus_process_ok process_ok
  19.   def process_ok
  20.     if @pending_index >= 0 && (index == 0 || @pending_index == 0)
  21.       Sound.play_buzzer
  22.     else
  23.       tmtopfix_window_menustatus_process_ok
  24.     end
  25.   end
  26. end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1