I've got a window displaying text as I want, but I'm stuck when trying to add an image from the pictures folder.
Can anyone point me in the correct direction
Can anyone point me in the correct direction
Code:
class Window_Realms < Window_Base
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize
@index = []
super(0, 0, 440, 480)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
def setIndex(i)
@index = i
refresh
end
def refresh
self.contents.dispose
self.contents = Bitmap.new(width - 32, height - 32)
if @index.size == 7
name = ($game_variables[@index[5]] > 0) ? @index[0] : "???"
desc = ($game_variables[@index[5]] > 0) ? @index[1] : "???"
complete = ($game_variables[@index[5]] == 0) ? "???" : ($game_variables[@index[5]] == 2) ? "Complete" : "Incomplete"
self.contents.draw_text(10, 10, 450, 32, "Name: #{name} - #{complete}")
self.contents.draw_text(10, 40, 450, 32, "Description:")
self.contents.draw_text(10, 70, 450, 32, desc)
end
end
end