Ok, so I am going to try to learn a lot more RGSS than I already know, which as it seems, is not all that much.
I am using Shark_Tooths window tutorial, and already I have a problem:
#----------------------------------------
# Scene_SkillSystem
#----------------------------------------
class Window_SkillSystem < Window_Base
#----------------------------------------
# Object Initialization
#----------------------------------------
def initialize
super(0, 0, 640, 480)
self.contents = Bitmap.new(width - 32, height - 32
refresh
end <-- Line 12, Syntax Error.
def refresh
self.contents.clear
self.contents.font.color = normal_color
self.contents.font.size = 20
self.contents.draw_text(50, 50, 200, 32, Non Combat Skills)
end
end
I tried adding an extra end (using my erm... initiative) but that didn't solve it.
Sorry about this...
I am using Shark_Tooths window tutorial, and already I have a problem:
#----------------------------------------
# Scene_SkillSystem
#----------------------------------------
class Window_SkillSystem < Window_Base
#----------------------------------------
# Object Initialization
#----------------------------------------
def initialize
super(0, 0, 640, 480)
self.contents = Bitmap.new(width - 32, height - 32
refresh
end <-- Line 12, Syntax Error.
def refresh
self.contents.clear
self.contents.font.color = normal_color
self.contents.font.size = 20
self.contents.draw_text(50, 50, 200, 32, Non Combat Skills)
end
end
I tried adding an extra end (using my erm... initiative) but that didn't solve it.
Sorry about this...