赞 | 0 |
VIP | 361 |
好人卡 | 0 |
积分 | 1 |
经验 | 9114 |
最后登录 | 2024-1-29 |
在线时间 | 128 小时 |
Lv1.梦旅人 飘
- 梦石
- 0
- 星屑
- 145
- 在线时间
- 128 小时
- 注册时间
- 2005-10-22
- 帖子
- 1441
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
只是把Window_PartyCommand 仍到屏幕外面去了 只要看不见就好-0-
在Scene_Battle里面
把 @party_command_window = Window_PartyCommand.new下面加上
@party_command_window.x = -200
把 @status_window.x = 128
@actor_command_window.x = 544
改成 @status_window.x = 0
@actor_command_window.x = 415 把 if @party_command_window.active and @info_viewport.ox > 0
@info_viewport.ox -= 16
elsif @actor_command_window.active and @info_viewport.ox < 128
@info_viewport.ox += 16
end
删掉
把
def update_party_command_selection
if Input.trigger?(Input::C)
case @party_command_window.index
when 0 # 战斗
Sound.play_decision
@status_window.index = @actor_index = -1
next_actor
when 1 # 逃跑
if $game_troop.can_escape == false
Sound.play_buzzer
return
end
Sound.play_decision
process_escape
end
end
end
多余的删掉 只留
def update_party_command_selection
@status_window.index = @actor_index = -1
next_actor
end
在def update_actor_command_selection里面
加入
when 4
if $game_troop.can_escape == false
Sound.play_buzzer
return
end
Sound.play_decision
process_escape 在Window_ActorCommand里面把 super(128, [ ], 1, 4)改成
super(128, [ ], 1, 5) 在s4 = Vocab::item后面 加一行 s5 = Vocab::escape
然后把@item_max = 4 改成 @item_max = 5
好象没别的了 工程在下面
http://rpg.blue/UP_PIC/200801/逃跑.rar |
|