Hey, quick scripting question.
I was wondering how I would make the icon of a certain weapon in my database appear next to the word 'Acquired'. I'm guessing I would need a few extra lines and something involving brackets []. Here is the code:
class Window_Popup < Window_Base
def initialize
super(0, 0, 250, 60)
self.contents = Bitmap.new(width = 300, height = 32)
refresh
end
def refresh
self.contents.clear
self.contents.font.color = normal_color
self.contents.draw_text(4, 0, 180, 32, "Acquired")
end
end