[Help needed] Mineweaker: Removing Shapeless Reciepes ?

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

Xarlas

New Member
Jul 29, 2019
53
0
0
I have trouble Removing Shapeless recipes with Minetweaker
I want to Remove the crafting recieps for smelting ores with Pyrotheum
I tried
Code:
recipes.removeShapeless(<*>, [item.thermalexpansion.material.dustPyrotheum]);
But it doesnt work :(
Does anyone know what im doing wrong ?
 

pizzawolf14

New Member
Jul 29, 2019
566
0
0
I've never actually used minetweaker but that command seems like it would remove the pyrotheum dust recipe.

Sent from my SM-G900V using Tapatalk
 

Xarlas

New Member
Jul 29, 2019
53
0
0
Nope that is still there
I say Remove everything that is shapless that is crafted with Pyrotheum dust
But it doesnt work
i also tired using the IDs
Even if i tell it to remove for examle all recipes for aluminum with recipes.remove(<14276:11>); it changes nothing
I found that the Remove function is NOT working
it seams nothing is working at all neither removing or adding :(
(i was using the /minetweaker reload command)
 

imthatguyjordan

New Member
Jul 29, 2019
39
0
0
Nope that is still there
I say Remove everything that is shapless that is crafted with Pyrotheum dust
But it doesnt work
i also tired using the IDs
Even if i tell it to remove for examle all recipes for aluminum with recipes.remove(<14276:11>); it changes nothing
I found that the Remove function is NOT working
even the things that are changed by the FTB team (for example the remove of Iron Rod from Remote IO) can be crafted and can be used to craft items
it seams nothing is working at all neither removing or adding :(
(i was using the /minetweaker reload command)
I have recipes removed in my modpack assortment, so I can assure you that remove does in fact work. Try
recipes.removeShapeless(<*>, [pyrotheum]);

add in this line
pyrotheum = <id of pyrotheum>; this just names the id so you can use its name elsewhere easily
or
pyrotheum = oreDict.dustPyrotheum; (If it is actually registered as dustPyrotheum this will work as well

if this does not work maybe try recipes.remove(); instead of removeShapeless();
 
  • Like
Reactions: Xarlas

Xarlas

New Member
Jul 29, 2019
53
0
0
Thanks i will try
i also try restarting Mineraft instead of using the reload command
 
Last edited:

imthatguyjordan

New Member
Jul 29, 2019
39
0
0
Thanks i will try
i also try restarting Mineraft instead of using the reload command
reload command never worked for me, probably should have mentioned that. Try slimming down the pack to the mods that you are tweaking, then add the recipe tweaks to the full pack. This way it loads much faster.
 

Xarlas

New Member
Jul 29, 2019
53
0
0
it does not work
Code:
pyrotheum = <20264:165>;
recipes.remove(<*>, [pyrotheum]);
I put it as the first command and commands after that DO work but the remove does do nothing :(
P.s I restarted MC after i had made the changes
 

imthatguyjordan

New Member
Jul 29, 2019
39
0
0
Hmm you may have to add each smelting option ie.
recipes.remove(ironingot * 2, [pyrotheum, ironore (or whatever the case may be)]);

Sorry I couldn't be more helpful, I've not tried to remove entire recipe lines like that.