Does anyone know how to fix this?
(http://imagizer.imageshack.us/v2/800x600q90/40/s2ql.png)
I remember there being a script to fix this problem...
#==============================================================================
# ** Game_Character
#------------------------------------------------------------------------------
# This class deals with characters. It's used as a superclass for the
# Game_Player and Game_Event classes.
#==============================================================================
class Game_Character
#--------------------------------------------------------------------------
# * Public Instance Variables
#--------------------------------------------------------------------------
attr_accessor :always_below
#--------------------------------------------------------------------------
# * Alias Listing
#--------------------------------------------------------------------------
alias_method :drg3211_screen_z, :screen_z
#--------------------------------------------------------------------------
# * Get Screen Z-Coordinates
#--------------------------------------------------------------------------
def screen_z(*args)
return 0 if @always_below
return drg3211_screen_z(*args)
end
end
$game_map.events[1].always_below = true/false
$game_player.always_below = true/false