Project1
标题:
如何让主角固定首位
[打印本页]
作者:
54692627
时间:
2012-7-25 09:19
标题:
如何让主角固定首位
本帖最后由 54692627 于 2012-7-26 11:56 编辑
未命名.jpg
(64.58 KB, 下载次数: 17)
下载附件
保存到相册
2012-7-25 09:17 上传
如图,怎么让艾里克永远固定首位啊?
也就是说整队的时候,艾里克不能被移动。 dsu_plus_rewardpost_czw
作者:
345912390
时间:
2012-7-27 08:31
本帖最后由 345912390 于 2012-7-27 09:45 编辑
在Scene_Menu查找并修改
#--------------------------------------------------------------------------
# ● 整队“确定”
#--------------------------------------------------------------------------
def on_formation_ok
if @status_window.pending_index >=1 and @status_window.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
end
复制代码
应该没 问题!���
作者:
hcm
时间:
2012-7-27 09:15
本帖最后由 hcm 于 2012-7-27 09:16 编辑
class Scene_Menu < Scene_MenuBase
alias fix_num1_on_formation_ok on_formation_ok
def on_formation_ok
if @status_window.index == $game_variables[10]
Sound.play_buzzer
@status_window.activate
else
fix_num1_on_formation_ok
end
end
end
复制代码
这个应该也行,直接在main前插入。
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1