Jump to content

Kielo

Member
  • Posts

    3
  • Joined

  • Last visited

Kielo's Achievements

  1. Unfortunately, I'm working not on the EvolvedRecipes. But anyway, I am very thankful for the reply. At least maybe I can disable/delete recipe via code? Like this: function DisableVanillaCampfireRecipes() local recipes = getScriptManager():getAllRecipes() for i = 0, recipes:size() - 1 do local recipe = recipes:get(i) if recipe:getName() == "Make Campfire Kit" then local ingredients = recipe:getIngredients() -- pseudo-method to get ingredients for i = 0, ingredients:size() - 1 do local ingredient = ingredients:get(i) if ingredient.getType() == "Log" or ingredient.getType() == "Plank" then recipe:Disable(); -- pseudo-method to delete/disable recipe return end end end end end
  2. Thanks! Tell me please, where can I check all recipe methods like getResult()? I need to change ingredients, but I can't realize how to get and work with them
  3. Did you solve this problem somehow? I have it now and I can't find any information about it. I tried to ask some help in discord, but everyone is silent there too.
×
×
  • Create New...