Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

HELLO! I have a little question. I added a tiny plugin to remove item counts, but the quantity background is still there in the inventory screen. Is there any way to remove this faded rectangle? Thanks

(+1)

Create a new plugin file with any name, and paste this, OR, paste this right into the plugin that you already have:

/*:
 * @target MZ
 */
Window_ItemList.prototype.needsNumber = function(/* item */) {
  return false;
};

works perfectly! Thanks so much