赞 | 2 |
VIP | 109 |
好人卡 | 208 |
积分 | 4 |
经验 | 22037 |
最后登录 | 2024-11-11 |
在线时间 | 1198 小时 |
Lv2.观梦者 虚構歪曲
- 梦石
- 0
- 星屑
- 364
- 在线时间
- 1198 小时
- 注册时间
- 2010-12-18
- 帖子
- 3928
|
本帖最后由 忧雪の伤 于 2011-7-10 13:51 编辑
- class Scene_Battle
- alias _make_skill_action_result make_skill_action_result unless $@
- def make_skill_action_result(*args)
- _make_skill_action_result(*args)
- @help_window.x = 320 - @help_window.width / 2
- @help_window.y = 240 - @help_window.height / 2
- end
- alias _update_phase4_step6 update_phase4_step6 unless $@
- def update_phase4_step6(*args)
- _update_phase4_step6(*args)
- @help_window.x = 0
- @help_window.y = 0
- end
- end
复制代码 |
|