TUSKE:RECIPE MANAGER Not working with some items

  • 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.

MrEnxo

Member
Feb 12, 2020
11
0
0
26
so i am making a custom gamemode with custom crafting on my server Currupt.minehut.gg and when i try to make custom recipes with some items it just does not work at first it did not work with andesite then chiseled stone bricks wat im thinking is that tuske does not allow you to use uncraftable items for recipes if so thats really bad any way to fix this also it does not give errors when i reload it just works but i cant craft it

Code:
create new shapeless recipe with result 9 stone bricks named "Double Compressed Stone" using chiseled stone bricks
 
you have to include air,
Code:
create new shapeless recipe with result 9 stone bricks named "Double Compressed Stone" using chiseled stone bricks, air, air, air, air, air, air, air, air
 
you have to include air,
Code:
create new shapeless recipe with result 9 stone bricks named "Double Compressed Stone" using chiseled stone bricks, air, air, air, air, air, air, air, air
bruh no u dont i have been not including air with other things and it worked fine
 
At least I tried to help you, it should be common sense to put "air" in your recipes.

Anyways, a work around that should probably work is this:


Code:
on skript load:
    set {_i} to 9 stone bricks
    create new shapeless recipe for {_i} named "Double Compressed Stone" using chiseled stone bricks, air, air, air, air, air, air, air, air
 
At least I tried to help you, it should be common sense to put "air" in your recipes.

Anyways, a work around that should probably work is this:


Code:
on skript load:
    set {_i} to 9 stone bricks
    create new shapeless recipe for {_i} named "Double Compressed Stone" using chiseled stone bricks, air, air, air, air, air, air, air, air
but u dont need that bruh also its not the stone bricks its the chiseled stone bircks
 
. . . at this point i give up your being really picky. at this point you seem like you know what you are doing, if you want it to be chiseled stone bricks then change it to chiseled stone bricks.

Code:
on skript load:
    create new shapeless recipe for chiseled stone bricks named "Double Compressed Stone" using chiseled stone bricks, air, air, air, air, air, air, air, air
 
. . . at this point i give up your being really picky. at this point you seem like you know what you are doing, if you want it to be chiseled stone bricks then change it to chiseled stone bricks.

Code:
on skript load:
    create new shapeless recipe for chiseled stone bricks named "Double Compressed Stone" using chiseled stone bricks, air, air, air, air, air, air, air, air
Bruh u actually dont under stand i want the recipe to use chiseled stone bricks but when i do that it cant no craft bruh
 
You seem to stick a liking to the word "bruh", anyways, you have to unlock the recipe by getting it in your knowledge book.

Code:
add all recipes to knowledge of player
 
Status
Not open for further replies.