赞 | 1 |
VIP | 392 |
好人卡 | 225 |
积分 | 46 |
经验 | 177731 |
最后登录 | 2020-12-8 |
在线时间 | 2037 小时 |
Lv3.寻梦者 虚空人形
- 梦石
- 0
- 星屑
- 4604
- 在线时间
- 2037 小时
- 注册时间
- 2011-8-11
- 帖子
- 3398
|
5楼
楼主 |
发表于 2012-3-18 23:17:18
|
只看该作者
本帖最后由 hcm 于 2012-3-19 15:26 编辑
沙发思路是正确的,但使用不了(超卡机),根据这个提示(最后一句)在默认脚本上做了点修改,
问题暂时解决了,接下来放入坑中再试试。
‘‘──hcm于2012-3-19 12:33补充以下内容
不过多点了几次,发现只是第一个不能主动换而已,用后面的换前面还可以的,失败了。
’’
‘‘──hcm于2012-3-19 15:25补充以下内容- def on_formation_ok
- if @status_window.pending_index > 0
- $game_party.swap_order(@status_window.index,
- @status_window.pending_index)
- @status_window.pending_index = -1
- @status_window.redraw_item(@status_window.index)
- else
- @status_window.pending_index = @status_window.index
- end
- @status_window.activate
- if @status_window.pending_index = 0
- $game_party.swap_order(@status_window.index,
- @status_window.pending_index)
- @status_window.pending_index = -1
- @status_window.redraw_item(@status_window.index)
- else
- @status_window.index = 0
- end
- @status_window.activate
- end
复制代码 这是我自己改的脚本,希望高手帮我看一下有什么问题。
’’ |
|