Project1

标题: 如何将领队角色固定在整队第一位? [打印本页]

作者: pockle    时间: 2013-5-4 00:41
标题: 如何将领队角色固定在整队第一位?
在整队选项中如何把一号主角固定在第一格位置上,其他队友间位置可随意更换?
作者: j433463    时间: 2013-5-4 02:18
http://rpg.blue/forum.php?mod=viewthread&tid=251874
这是在菜单的整队命令让它不能选领队,选领队会发出警告音效。

http://rpg.blue/forum.php?mod=viewthread&tid=279484
这是即使你在菜单成功选了领队,实际更换时也不给你换。
作者: 喵呜喵5    时间: 2013-5-4 11:41
RUBY 代码复制
  1. #==============================================================================
  2. # ★ RGSS3_先頭並び替え不可 Ver1.0
  3. #==============================================================================
  4. =begin
  5.  
  6. 作者:tomoaky
  7. webサイト:ひきも記 ([url]http://hikimoki.sakura.ne.jp/[/url])
  8.  
  9. パーティの先頭にいるアクターは並び替えできないように制限します。
  10.  
  11. 2012.09.14  Ver1.0
  12.   公開
  13.  
  14. =end
  15.  
  16. #==============================================================================
  17. # ■ Window_MenuStatus
  18. #==============================================================================
  19. class Window_MenuStatus
  20.   #--------------------------------------------------------------------------
  21.   # ● 決定ボタンが押されたときの処理
  22.   #--------------------------------------------------------------------------
  23.   alias tmtopfix_window_menustatus_process_ok process_ok
  24.   def process_ok
  25.     if @pending_index >= 0 && (index == 0 || @pending_index == 0)
  26.       Sound.play_buzzer
  27.     else
  28.       tmtopfix_window_menustatus_process_ok
  29.     end
  30.   end
  31. end





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