Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

As always, your plugins are a good addition to my game. Sorry if I have a lot of questions: 

  1. How can I make craftable recipes display in a different font color in the recipe list? I want craftable and non-craftable recipes to have distinct colors. 
  2. Is there a way to switch to the next category while the cursor is still inside the recipe list? 
  3. How can I change the font size of the materials shown in the info? I’d like to make the font smaller.

You can just tell me which functions to edit, and I'll try to make it work. Thanks for your hard work on this!

To make recipes different colors in the list window by craftable status, you can change CGMZ_Window_RecipeList.prototype.drawItem. Check the item.canCraft() and add a text code to the start of the drawn string if it can/cannot craft.

Switching category while inside the recipe list would be difficult.

You could also add a font size text code before it draws the ingredients in CGMZ_Window_RecipeDisplay.prototype.drawRecipeItems, though this function is re-used for all item types (ingredients, products, fail products, hq products, tools)

Thanks again for this!