What is the RGSS2 code for current map name please?
Thanks anyone who can help.
EDIT: This is my window
How would I display the current map name into that?
Thanks anyone who can help.
EDIT: This is my window
Code:
#==============================================================================
# ** Window_Mapname
#------------------------------------------------------------------------------
# This window deals with the map name shown on the CMS.
#==============================================================================
class Window_Mapname < Window_Base
#--------------------------------------------------------------------------
# * Object Initialization
# x : window X coordinate
# y : window Y coordinate
#--------------------------------------------------------------------------
def initialize(x, y)
super(x, y, 268, 52)
self.back_opacity = 256
refresh
end
#--------------------------------------------------------------------------
# * Refresh
#--------------------------------------------------------------------------
def refresh
end
end