Hi fellow Minecraft Players.
I have a question i did a small script for my server but it did not work.
I want to delete 5 recipes for my server (just for fun)
Since my server is in expert mode I went to minecraft/modpack/expert/scripts
There I made a .zs file (removechiselcredit.zs)
Here is the script:
But it did not work, any solution to this problem?
I have a question i did a small script for my server but it did not work.
I want to delete 5 recipes for my server (just for fun)
Since my server is in expert mode I went to minecraft/modpack/expert/scripts
There I made a .zs file (removechiselcredit.zs)
Here is the script:
#remove ic2 credit recipe
recipes.remove(<IC2:itemCoin>);
#remove gold chisel
recipes.remove(chisel:gold_block:5>);
recipes.remove(chisel:gold_block:6>);
#remove iron chisel
recipes.remove(<chisel:iron_block:7>);
recipes.remove(<chisel:iron_block:8>);
recipes.remove(<IC2:itemCoin>);
#remove gold chisel
recipes.remove(chisel:gold_block:5>);
recipes.remove(chisel:gold_block:6>);
#remove iron chisel
recipes.remove(<chisel:iron_block:7>);
recipes.remove(<chisel:iron_block:8>);
But it did not work, any solution to this problem?