How to remove IC2 Credits and Chisel Gold/Iron from FTB Infinity Evolved Expert Server?

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here

Doktor KlingeL

New Member
Jul 29, 2019
23
0
1
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:

#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>);​

But it did not work, any solution to this problem?
 

erindalc

Popular Member
Mar 3, 2015
992
512
109
Steam
What operating system are you using?

Also, please put your minetweaker.log file into pastebin and post it here.
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,799
248
Probably a dumb question, but did you do this while the server wasn't running?
If you didn't then did you run the reload command?
If you did neither then your script won't be read (and thus used) by the server until you restart it (or run that command)

Sorry, I haven't exactly done much with minetweaker thus I can't do much more then point out basic things than that. Also, I assume the print() thing should print something to the log, however using ctrl+f I can't find the thing it should print (which is removechiselcredit if I am not mistaken.) This is another indication that it doesn't get read.
 
  • Like
Reactions: GamerwithnoGame

Doktor KlingeL

New Member
Jul 29, 2019
23
0
1
I tried to restart the server.
I also reloaded the scripts using "/reload script"


edit: I tried something different and it works for the 2 Chisel Blocks:

#remove gold chisel
mods.chisel.Groups.removeVariation(<chisel:gold_block:5>);
mods.chisel.Groups.removeVariation(<chisel:gold_block:6>);

#remove iron chisel
mods.chisel.Groups.removeVariation(<chisel:iron_block:7>);
mods.chisel.Groups.removeVariation(<chisel:iron_block:8>);​

This removes the recipe for those blocks but I do not know how to remove the IC2 Credit using this method.
The IC2 Cred is made in the Metal Former, any ideas how to disable this one recipe?
 

John.E

Well-Known Member
Dec 18, 2013
152
59
53
Doral, FL
I would check to see if they added a script to have the Metal Former create the credit. This would explain why it isn't getting removed. I know that pre ic2 experimental, the credit was created in the crafting grid with 4 refined iron.