Code:
class My_Window < Window_Base
def initialize
super(80,80,480,320)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = $fontface
self.contents.font.size = $fontsize
self.contents.font.color = normal_color
refresh
end #method
def refresh
self.contents.draw_text(4,4,120,32,"Look! Text")
for i in 0...$game_party.actors.size
x = i * 32 + 4
y = 32
actor = $game_party.actors[i]
draw_actor_graphic(actor,x)
end #for
end #method
end #class
1) Am I doing anything wrong here? it's supposed to show a window with some text and then the heroes.
2) How would I call this?
I know, I suck in RGSS...