Save-Point
AWorks Fix Walk Speed XP - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Material Development (https://www.save-point.org/forum-8.html)
+--- Forum: Scripts Database (https://www.save-point.org/forum-39.html)
+--- Thread: AWorks Fix Walk Speed XP (/thread-1891.html)



AWorks Fix Walk Speed XP - vgvgf - 09-23-2009

AWorks Fix Walk Speed
Created by: AWorks(vgvgf)
Version: 1.00
Updated: 18/06/2009(dd/mm/yyyy)

This is one of my shortest and simplest scripts. Useful though.

Description
This script modifies the movement speed of events and the player when they walk in a diagonal direction. Normaly when a event walk in a diagonal, it will move faster than it should.

Code:
#=============================================================================
# *** AWorks Fix Walk Speed XP
#=============================================================================
# Created by AWorks
# Version: 1.00.XP
# Updated: 18/06/2009 (dd/mm/yyyy)
#=============================================================================
#==== Description ====
# This script modifies the movement speed of events and the player when they
# walk in a diagonal direction.
#=============================================================================

#==============================================================================
# ** Game_Character
#==============================================================================
class Game_Character
  #--------------------------------------------------------------------------
  # * Update frame (move)
  #--------------------------------------------------------------------------
  def update_move
    if @x * 128 != @real_x and @y * 128 != @real_y
      distance = 2 ** @move_speed / Math.sqrt(2)
    else
      distance = 2 ** @move_speed
    end
    if @y * 128 > @real_y
      @real_y = [@real_y + distance, @y * 128].min
    end
    if @x * 128 < @real_x
      @real_x = [@real_x - distance, @x * 128].max
    end
    if @x * 128 > @real_x
      @real_x = [@real_x + distance, @x * 128].min
    end
    if @y * 128 < @real_y
      @real_y = [@real_y - distance, @y * 128].max
    end
    if @walk_anime
      @anime_count += 1.5
    elsif @step_anime
      @anime_count += 1
    end
  end
end



AWorks Fix Walk Speed XP - Regimos - 09-24-2009

Haha. Useful script, especially for games with 8-dir movement. I've always found that faster diagonal move speed annoying.


AWorks Fix Walk Speed XP - Hsia_Nu - 10-13-2009

awesome script. thank you vgvgf!!!