赞 | 2 |
VIP | 2 |
好人卡 | 4 |
积分 | 1 |
经验 | 96076 |
最后登录 | 2015-12-27 |
在线时间 | 93 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 93 小时
- 注册时间
- 2008-5-16
- 帖子
- 745
|
把下面的脚本放main前
红色部分的字代替为
条件分歧内的第4页的脚本
写上
rel_dir?($game_player,$game_map.events[@event_id])
- def rel_dir?(p,e)
- if p.x > e.x
- if p.direction == 4 && e.direction == 6
- return true
- end
- elsif p.x < e.x
- if p.direction == 6 && e.direction == 4
- return true
- end
- end
- if p.y > e.y
- if p.direction == 8 && e.direction == 2
- return true
- end
- elsif p.y < e.y
- if p.direction == 2 && e.direction == 8
- return true
- end
- end
- end
复制代码 |
|