I get an error on line 9.
CODE
#-------------------------------------------------------
# * Window First
# * First_Script

#-------------------------------------------------------
# * Credit:
# * Ccoa-Tan
#-------------------------------------------------------
[b] class Window_First > Window_Base [/b]
#-------------------------------------------------------
# *Object Initialization
#-------------------------------------------------------
def initialize
super(0, 0, 256, 96)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#------------------------------------------------------
# * Refresh
#------------------------------------------------------
def refresh
self.contents.clear
self.contents.draw_text(0, 0, 256,32, "Hello...Shuyu-tan!", 2)
end
end