Код:
class Game_Player
 #--------------------------------------------------------------------------
  # * Determine if Dashing
  #--------------------------------------------------------------------------
  def dash?
    # switch to dash = 199
    return false if @move_route_forcing
    return false if $game_map.disable_dash? and !$game_switches[199]
    return false if vehicle
    return Input.press?(:A)
  end
end
Бегать или не бегать подвешено на свитч 199 (взято из ДДД)