Small change to item menu display

● ARCHIVED · READ-ONLY
Started by Ivan_the_Terrible 8 posts View original ↗
  1. Greetings, fellow bipeds!

    I started a different project to try some other things, and one of the things I figured out was how to use a different font in the game. It looks great, but with one small problem.

    In the Item Menu, whenever it shows the number of items you have, it has a big empty rectangle next to the number (where it would normally show a colon or an X). So clearly there is an issue with it not being able to draw a colon with the font I'm using. (Not that I have any idea why, since you can type a colon in this font in, say, Word.) Rather than change fonts, though, could I alter the script somehow so that it just shows the item and a number without using a colon, X or any other symbol? Is that even possible to do? Thanks in advance!
  2. You can try to look at yourself. Window_ItemList > Line 101
    There is a string ":%2d", you might want to remove the colon and make it only "%2d"
  3. TheoAllen said:
    You can try to look at yourself. Window_ItemList > Line 101
    There is a string ":%2d", you might want to remove the colon and make it only "%2d"

    Thank you for replying, but I already tried that and it didn't change anything. The rectangle still appeared.
  4. Change the colon to a space, if you don't want anything to display.
  5. If you're using Yanfly Core Engine, look at the config,
    Code:
    ITEM_AMOUNT = "×%s"  # The prefix used for item amounts.
    You change the item amount here, leave it only %s
    Other than that idk, why not upload the screenshot here?
  6. TheoAllen said:
    Code:
    ITEM_AMOUNT = "×%s"  # The prefix used for item amounts.
    You change the item amount here, leave it only %s

    And that works, too. I had only tested it on a blank project. :p
  7. @TheoAllen @JGreene

    Thank you both! The rectangle is gone and the menu looks great! You guys rock!
  8. This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.