赞 | 11 |
VIP | 7 |
好人卡 | 0 |
积分 | 9 |
经验 | 6220 |
最后登录 | 2024-11-12 |
在线时间 | 201 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 872
- 在线时间
- 201 小时
- 注册时间
- 2013-8-19
- 帖子
- 288
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
我用的九夜神尊公共事件调用脚本
- #==============================================================================
- # ■ Game_Interpreter_Self
- #------------------------------------------------------------------------------
- # 独立公共事件执行器
- #==============================================================================
- =begin
-
- 独立公共事件执行器用于随时执行公共事件,不受公共事件调用地方的限制。
- □使用方法:
- 1。将脚本插入main前。
- 2。在需要使用公共事件的地方
- 插入、
- Game_Interpreter_Self.new(公共事件ID)
- □可能的冲突:无
- =end
-
- class Game_Interpreter_Self < Game_Interpreter
- child_interpreter = Game_Interpreter_Self.new(5)
- #--------------------------------------------------------------------------
- # ● 初始化对像
- # depth : 堆置深度
- # main : 主标志
- #--------------------------------------------------------------------------
- def initialize(com_id)
- @com_id = com_id
- common_event = $data_common_events[@com_id]
- setup(common_event.list)
- update
- clear
- end
- #--------------------------------------------------------------------------
- # ● 公共事件
- #--------------------------------------------------------------------------
-
- end
复制代码
用事件调用没问题,
但是添加到菜单调用就没反应,。
- #--------------------------------------------------------------------------
- # ● 向指令列表添加主要的指令
- #--------------------------------------------------------------------------
- def add_main_commands
- add_command(Vocab::item, :item, main_commands_enabled)
- add_command(Vocab::skill, :skill, main_commands_enabled)
- add_command(Vocab::equip, :equip, main_commands_enabled)
- add_command(Vocab::status, :status, main_commands_enabled)
- add_command("公共事件", :child_interpreter, main_commands_enabled)
- add_command("委托", :task, main_commands_enabled)#
- end
复制代码
召唤大神~~ |
|