Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Deke's Add-on

I've been trying all these other crafting scripts but deke's is the only one that really works for me. problem is I don't have the category addon. I know it's out there somewhere, does anyone know where it is? thx!:)
 
do you mean the Master List script?
if you do here :
Code:
#================================
# Sample master list for crafting script
#----------------------------------------------------------------
#-written by Deke
#----------------------------------------------------------------
#================================

class Game_Temp
  attr_reader :recipe_list
  
  alias crafting_temp_initialize initialize

  def initialize
    crafting_temp_initialize
    @recipe_list=[]
    get_recipe_list
  end
  
  def get_recipe_list
    
    ingredients = [1,2,2]
    ingredient_types = [0,0,0]
    quantities = [1,1,1]
    result = 8
    result_type = 0
    @recipe_list.push(Game_Recipe.new(ingredients,ingredient_types,quantities,result,result_type))
  end # of get_recipe_list method
end # of updates to Game_Temp Class
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top