Project1

标题: 怎么在菜单里调用公共事件??? [打印本页]

作者: 元泱の蛮吉    时间: 2017-9-10 10:44
标题: 怎么在菜单里调用公共事件???
我用的九夜神尊公共事件调用脚本
  1. #==============================================================================
  2. # ■ Game_Interpreter_Self
  3. #------------------------------------------------------------------------------
  4. # 独立公共事件执行器
  5. #==============================================================================
  6. =begin

  7. 独立公共事件执行器用于随时执行公共事件,不受公共事件调用地方的限制。
  8. □使用方法:
  9. 1。将脚本插入main前。
  10. 2。在需要使用公共事件的地方
  11. 插入、
  12. Game_Interpreter_Self.new(公共事件ID)
  13. □可能的冲突:无
  14. =end

  15. class Game_Interpreter_Self < Game_Interpreter
  16.   child_interpreter = Game_Interpreter_Self.new(5)
  17.   #--------------------------------------------------------------------------
  18.   # ● 初始化对像
  19.   #     depth : 堆置深度
  20.   #     main  : 主标志
  21.   #--------------------------------------------------------------------------
  22.   def initialize(com_id)
  23.     @com_id = com_id
  24.     common_event = $data_common_events[@com_id]
  25.     setup(common_event.list)
  26.     update
  27.     clear
  28.   end
  29.   #--------------------------------------------------------------------------
  30.   # ● 公共事件
  31.   #--------------------------------------------------------------------------


  32. end
复制代码

用事件调用没问题,
但是添加到菜单调用就没反应,。
  1.   #--------------------------------------------------------------------------
  2.   # ● 向指令列表添加主要的指令
  3.   #--------------------------------------------------------------------------
  4.   def add_main_commands
  5.     add_command(Vocab::item,   :item,   main_commands_enabled)
  6.     add_command(Vocab::skill,  :skill,  main_commands_enabled)
  7.     add_command(Vocab::equip,  :equip,  main_commands_enabled)
  8.     add_command(Vocab::status, :status, main_commands_enabled)
  9.     add_command("公共事件",    :child_interpreter,   main_commands_enabled)
  10.     add_command("委托",        :task,   main_commands_enabled)#
  11.   end
复制代码


召唤大神~~
作者: 御曹司    时间: 2017-9-10 11:20
喵5有个“物品执行菜单选项”脚本。
http://miaowm5.com/
作者: 元泱の蛮吉    时间: 2017-9-10 12:27
御曹司 发表于 2017-9-10 11:20
喵5有个“物品执行菜单选项”脚本。
http://miaowm5.com/

有一个问题,这个物品不持有的话是不能选择是灰色的,是吧?




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