Project1

标题: 怎么让队伍的领队不能更换 [打印本页]

作者: 糯米_包子    时间: 2016-7-31 20:38
标题: 怎么让队伍的领队不能更换
同标题,怎么让队伍的领队不能换。
不是关闭整队哦,我想让领队固定玩家不能换。
作者: 烛龙之殇    时间: 2016-7-31 22:02
请用这个
  1. #==============================================================================#
  2. # * RGSS3 Script - Captian Lock                                                #
  3. #  * Author - Shadwo Momo                                                      #
  4. #  * Version - 1.0                                                             #
  5. #  * Last Update - 2013.12.15                                                  #
  6. #------------------------------------------------------------------------------#
  7. # * Introduce                                                                  #
  8. #  Prevent the captian from being replaced.                                    #
  9. #------------------------------------------------------------------------------#
  10. # * Instruction                                                                #
  11. #  Insert the script below other materials but above Main.                     #
  12. #------------------------------------------------------------------------------#
  13. # * Update                                                                     #
  14. #  V 1.0 2013.12.15 Build                                                      #
  15. #------------------------------------------------------------------------------#
  16. # * License                                                                    #
  17. #  This script is written by Shadow Momo. Please keep this information if you  #
  18. # use or edit it.                                                              #
  19. #==============================================================================#
  20. class Scene_Menu
  21.   alias :on_formation_ok_captian_lock :on_formation_ok
  22.   def on_formation_ok
  23.     if @status_window.index == 0
  24.       Graphics.wait(20)
  25.       Sound.play_buzzer
  26.       @status_window.activate
  27.     else
  28.       on_formation_ok_captian_lock
  29.     end
  30.   end
  31. end
  32. #==============================================================================#
  33. #===========================                        ===========================#
  34. #                             End     of     File                              #
  35. #===========================                        ===========================#
  36. #==============================================================================#
复制代码





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