Sorry about the necro post, but I can't seem to move the Menu Windows using the Script Editor while I'm using this script. Does anyone know how to fix this? Everything works fine except for changing the first two 0s (the x and y coordinates) of line 146.
CODE
#==============================================================================
# ** Window_MenuStatus
#------------------------------------------------------------------------------
# This window displays party member status on the menu screen.
#==============================================================================
class Window_MenuStatus < Window_Selectable
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize
super(0, 0, 480, 480)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
self.active = false
self.index = -1
end