Hello. I am following Dubealex' rgss tutorial and as I try it out, it resulted to an error.
The error was(as soon as the game was started):
Script 'TEST' Line 1: TypError occurred.
undefined superclass 'Window_Base'
I was sure I hadn't messed with the default scripts.
An event calls a new instance for this classclass My_Window < Window_Base
def initialize
super(0, 0, 200, 200)
self.contents = Bitmap.new(width-32, height-32)
self.contents.font.name = "Arial"
self.contents.font.size = 24
self.contents.draw_text(0, 0, 200, 32, "Yay, some text !")
end
end
The error was(as soon as the game was started):
Script 'TEST' Line 1: TypError occurred.
undefined superclass 'Window_Base'
I was sure I hadn't messed with the default scripts.