赞 | 123 |
VIP | 13 |
好人卡 | 16 |
积分 | 194 |
经验 | 38692 |
最后登录 | 2024-11-10 |
在线时间 | 3097 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 19388
- 在线时间
- 3097 小时
- 注册时间
- 2013-1-11
- 帖子
- 1290
|
本帖最后由 张咚咚 于 2019-10-14 15:46 编辑
- $map_event_proc = {
- :map => {
- 1 => {
- 1 => proc{ p '1号地图1号事件执行前' },
- 2 => proc{ p '1号地图2号事件执行前' },
- },
- },
- :common_event => {
- 1 => proc{ p '1号公共事件执行前' },
- 2 => proc{ p '2号公共事件执行前' },
- },
- }
- class Interpreter
- alias qqeat_start_before_interpreter_setup setup
- def setup(list, event_id)
- if list.is_a?(RPG::CommonEvent)
- common_event_id = list.id
- list = list.list
- end
- qqeat_start_before_interpreter_setup(list, event_id)
- if common_event_id
- proc = $map_event_proc[:common_event][common_event_id]
- proc.call if proc
- else
- proc = $map_event_proc[:map][@map_id]
- proc[@event_id].call if proc and proc[@event_id]
- end
- end
- #--------------------------------------------------------------------------
- # ● 公共事件
- #--------------------------------------------------------------------------
- def command_117
- # 获取公共事件
- common_event = $data_common_events[@parameters[0]]
- # 公共事件有效的情况下
- if common_event != nil
- # 生成子解释器
- @child_interpreter = Interpreter.new(@depth + 1)
- @child_interpreter.setup(common_event, @event_id)
- end
- # 继续
- return true
- end
- end
复制代码 |
评分
-
查看全部评分
|