Solved Ingredients recipe with custom name

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Spartan9802

Member
Jan 26, 2017
158
8
18
26
Hello i have the problem
I have register the new recipe with 2 nether_star named "myname"
But using a simple nether_star is enough for my craft
 
No Sorry ^^
Exemple: register new shaped recipe for chest named ""BackPack" using leather, nether_star named "Energystar" etc...
 
This works for me:

code_language.skript:
register new shaped recipe for chest named "BackPack" using leather, nether_star named "Energystar", air, air, air, air, air, air, air
 
Not works for me :/
I have solved the problem with this :emoji_grinning:

code_language.skript:
on load:

    new recipe "BackPack"
    "BackPack".Recipe.setIngredient{1, 1 leather};
    "BackPack".Recipe.setIngredient{3, 1 leather};
    "BackPack".Recipe.setIngredient{4, 1 leather};
    "BackPack".Recipe.setIngredient{6, 1 leather};
    "BackPack".Recipe.setIngredient{7, 1 leather};
    "BackPack".Recipe.setIngredient{9, 1 leather};
    
    "BackPack".Recipe.setIngredient{5, 1 chest};
    
    "BackPack".Recipe.setIngredient{2, 1 nether_star named "§b✭ §e§oEnergyStar §b✭"};
    "BackPack".Recipe.setIngredient{8, 1 nether_star named "§b✭ §e§oEnergyStar §b✭"};
    
    "BackPack".Recipe.setResult{1 chest named "§6BackPack"};
    "BackPack".Recipe.register{};
 
Not works for me :/
I have solved the problem with this :emoji_grinning:

code_language.skript:
on load:

    new recipe "BackPack"
    "BackPack".Recipe.setIngredient{1, 1 leather};
    "BackPack".Recipe.setIngredient{3, 1 leather};
    "BackPack".Recipe.setIngredient{4, 1 leather};
    "BackPack".Recipe.setIngredient{6, 1 leather};
    "BackPack".Recipe.setIngredient{7, 1 leather};
    "BackPack".Recipe.setIngredient{9, 1 leather};
   
    "BackPack".Recipe.setIngredient{5, 1 chest};
   
    "BackPack".Recipe.setIngredient{2, 1 nether_star named "§b✭ §e§oEnergyStar §b✭"};
    "BackPack".Recipe.setIngredient{8, 1 nether_star named "§b✭ §e§oEnergyStar §b✭"};
   
    "BackPack".Recipe.setResult{1 chest named "§6BackPack"};
    "BackPack".Recipe.register{};

What's the name of that addon? :emoji_thinking: I never saw this before
 
Status
Not open for further replies.