[RMVX ACE]CHANGING THE LOCATION OF THE MAP DISPLAY NAME

Posts

Pages: 1
Well the topic title is pretty self explanatory, I'd honestly love to know how to change the x and y position of the map display name. Do you need a script to change this? I'm not assuming you would, but maybe I'm wrong.
Marrend
Guardian of the Description Thread
21806
It would be a script, because it's a script that defines the window location.

class Window_MapName < Window_Base
  #--------------------------------------------------------------------------
  # * Object Initialization
  #--------------------------------------------------------------------------
  def initialize
    super(0, 0, window_width, fitting_height(1)) # <- defines the x/y postion, plus width and height.
    self.opacity = 0
    self.contents_opacity = 0
    @show_count = 0
    refresh
  end
end

Yeah that makes sense, I'll try this snippet thanks!
Pages: 1