Project1

标题: 问个脚本错误问题~~~ [打印本页]

作者: 幻之天    时间: 2009-7-15 19:43
提示: 作者被禁止或删除 内容自动屏蔽
作者: 幻之天    时间: 2009-7-15 20:22
提示: 作者被禁止或删除 内容自动屏蔽
作者: well    时间: 2009-7-16 05:57
这个按键加速脚本同时改行走图
主角行走图(必须?)搭配一个加速跑的行走图,文件名是“行走图名_run”。
主角行走图预备几套,加速跑的行走图也要搭配几套。
如果不想这么麻烦。把蓝色行注释掉。
这个是    按键加速脚本#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#===============================================
      ......

          if @move_speed != 5
            @move_speed = 5
            @character_name_run = @character_name
            @character_name = @character_name + "run"
          end
        end
      else
        if @move_speed != 4
          @move_speed = 4
          @character_name = @character_name_run

幻之天 发表于 2009-7-15 20:22

作者: 幻之天    时间: 2009-7-16 12:45
提示: 作者被禁止或删除 内容自动屏蔽
作者: 幻之天    时间: 2009-7-16 20:55
提示: 作者被禁止或删除 内容自动屏蔽
作者: well    时间: 2009-7-17 02:14
本帖最后由 well 于 2009-7-17 02:17 编辑
      else
        if @move_speed != 4
          @move_speed = 4

不知道你有没有注意到这个。
我也不知道原理。但是,把你那个自动动作里最后回归行走时的速度和频度都改成4而不是3,就没有出错了。
不贴工程包了,你自己试试吧。

------------完全无关的分割线------------
对了。七美加入队伍后,行走图应该消失的吧
作者: 玄月    时间: 2009-7-17 09:18
起名方式 角色名 + ★ + run
#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================



#==============================================================================
# ■ Game_Player
#==============================================================================
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 Input.press?(Input::SHIFT)
        if moving?
          if @move_speed != 5
            @move_speed = 5
            @character_name = @character_name +"★run"
          end
        end
      else
        if @move_speed != 4
          @move_speed = 4
          @character_name = @character_name.split(/★/)[0]
        end
      end  
    end
    old_update
  end
end

#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================
作者: 幻之天    时间: 2009-7-17 11:35
提示: 作者被禁止或删除 内容自动屏蔽




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1