So I am trying to make my own custom status screen. I have a good start on it, but it has been with just the basics so far. I am trying to get my actors skills to show up in a small skill window. I need them to show up in a list vertically within the window. Here is what I have for this section:
class Window_Skill < Window_SkillList #-------------------------------------------------------------------------- # * Object Initialization #-------------------------------------------------------------------------- def initialize super(145,25,155,210) self.opacity = 200 refresh end #-------------------------------------------------------------------------- # * Refresh #-------------------------------------------------------------------------- def refresh contents.clear draw_skill_text (line_height * 0) end def draw_skill_text (y) oldcolor = self.contents.font.color self.contents.font.color = Color.new(255,215,0) self.draw_text(0,y,80,line_height, "MAGIC") self.contents.font.color = oldcolor endendSo my window appears and the text appears but everything I have tried to draw the skills has failed. Any help would be appreciated.