赞 | 16 |
VIP | 0 |
好人卡 | 0 |
积分 | 14 |
经验 | 0 |
最后登录 | 2023-11-7 |
在线时间 | 50 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1433
- 在线时间
- 50 小时
- 注册时间
- 2020-2-16
- 帖子
- 103
|
为了解决你这个问题,我肝疼了半天,终于解决了。首先那个加速戒指不能放在他扩展的装备。然后公共事件那里我直接删了,只需要一个开关 5号开关,然后需要角色(设定是无论哪个角色装备此 加速戒指)都可以实现空格加速
代码:
#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================
# ————————————————————————————————————
# 本脚本来自www.66rpg.com,转载请保留此信息
# ————————————————————————————————————
#==============================================================================
# ■ Game_Player
#==============================================================================
class Game_Player
#--------------------------------------------------------------------------
# ● フレーム更新
#--------------------------------------------------------------------------
alias old_update update
def update
unless moving? or $game_system.map_interpreter.running? or
@move_route_forcing or $game_temp.message_window_showing
if Input.press?(Input::C)
# 速度変更
if $game_switches[5]==true
@equip = self.equip
@move_speed = @equip == true ? 5 : 4
else
@move_speed = 4
end
else
@move_speed = 4
end
end
old_update
end
def equip
@equip = false
for i in 0...$game_party.actors.size
actor = $game_party.actors[i]
if actor.armor4_id == 31
@equip = true
end
end
return @equip
end
end
#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#============================================================================== |
评分
-
查看全部评分
|