赞 | 0 |
VIP | 4 |
好人卡 | 43 |
积分 | 94 |
经验 | 75226 |
最后登录 | 2019-3-3 |
在线时间 | 1131 小时 |
Lv4.逐梦者
- 梦石
- 3
- 星屑
- 6420
- 在线时间
- 1131 小时
- 注册时间
- 2007-12-26
- 帖子
- 2402
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
以下脚本是实现按D键角色以速度6前冲5格,然后回复速度4,但是我在Interpreter 6中把角色在地图中的行走速度和agi联系起来了,也就是说,角色的agi越高,行走速度也越快,前冲之前的速度就不一定是4了。那么应该如何修改下面的脚本才可以让角色前冲之后回复原来的速度呢?
class Game_Player
#--------------------------------------------------------------------------
# ● フレーム更新
#--------------------------------------------------------------------------
alias old_update update
def update
unless $game_system.map_interpreter.running? or
@move_route_forcing or $game_temp.message_window_showing
if Kboard.keyb($R_Key_D) == 1
if @move_speed != 6
@move_speed = 6
move_route = RPG::MoveRoute.new
move_route.repeat = false
move_route.list.clear
move_command = RPG::MoveCommand.new
move_command.code = @direction / 2
5.times{move_route.list.push(move_command.clone)}
move_command.code = 0
move_route.list.push(move_command)
force_move_route(move_route)
@character_name_run = @character_name
@character_name = @character_name + "rush"
Audio.se_play("Audio/SE/"+"013-Move01",80,100)
$game_temp.common_event_id = 51
end
else
if @move_speed != 4
@move_speed = 4
@character_name = @character_name_run
end
end
end
old_update
if @move_route_forcing
if not @move_route.skippable and not moving? and not jumping?
@move_route_index = @move_route.list.size - 1
return
end
end
end
end |
|