I want my currency to be a icon instead of a letter.
How do you change the G in the menu to a icon?
● ARCHIVED · READ-ONLY
-
-
I've moved this thread to RGSS3 Script Requests. Please be sure to post your threads in the correct forum next time. Thank you.
-
Is it possible?
-
In simple answer- Yes. I have seen some but I am tried to link them (Also, I forgot them all!), you can search some scripts on the internet. That might be helpful.
-
I can create a script that does that if you want to. It's pretty simple. PM me for more details.
-
-
Most of the so-called "Advanced messaging systems" contain a text code to place icons inside text fields, that can be used as well.
Check the master script list, Yanfly's and Modern Algebra's are the more commonly used message scripts. -
Are you talking about the G or the currency indicator or the currency itself?
-
You can do it like this:
Code:class Window_Gold < Window_Base ICON_INDEX_NUMBER = 12 #number of the icon on the iconset to display #-------------------------------------------------------------------------- # * Draw Number (Gold Etc.) with Currency Unit #-------------------------------------------------------------------------- def draw_currency_value(value, unit, x, y, width) cx = text_size(unit).width change_color(normal_color) draw_text(x, y, width - cx - 2, line_height, value, 2) end #-------------------------------------------------------------------------- # * Refresh #-------------------------------------------------------------------------- def refresh contents.clear draw_icon(ICON_INDEX_NUMBER, x, y, enabled = true) draw_currency_value(value, currency_unit, 4, 0, contents.width - 8) endend -
I have merged your new thread with your old one. Please do not keep posting the same requests over and over - I'm sure I've merged other topics of yours recently too.