Minetweaker help needed

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
I've setup a series of recipes that are working client side, but the server is not loading them.

Reports back:
2014-01-19 18:59:58 [INFO] [MineTweaker] -- Starting Server --
2014-01-19 18:59:58 [SEVERE] [MineTweaker] /BCQuarry.cfg:8 No such member in Item: 1

and this is the file:
#BUILDCRAFT QUARRY
#REQUIRES BUILDCRAFT AND CHICKENCHUNKS
recipes.remove(tile.machineBlock);

blockBCFiller = tile.fillerBlock;
blockBCLaser = tile.laserBlock;
itemBCRedStoneChip = item.redstoneChipset."0";
itemBCIronChip = item.redstoneChipset."1";
blockCCChunk = tile.chickenChunkLoader;
itemBCDiamondGear = item.diamondGearItem;
itemBCIronGear = item.ironGearItem;

recipes.addShaped(tile.machineBlock, [[itemBCIronChip, blockCCChunk, itemBCIronChip], [itemBCIronGear, blockBCFiller, itemBCIronGear], [itemBCDiamondGear, blockBCLaser, itemBCDiamondGear]]);


Anyone with any experience got any ideas?
 

tedyhere

New Member
Jul 29, 2019
1,286
0
0
Try, item.redstoneChipset."<0>"; and item.redstoneChipset."<1>"; or some variation of such.. I will dig some more about MetaData
 

tedyhere

New Member
Jul 29, 2019
1,286
0
0
Just saw your post on Minecraft forums, did you figure out that it needs to be the item ID because CH uses Linux?
 

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
Switching to IDs did help, but then I encountered situations where I couldn't pull items out of the crafting table, and also recipes showing up a couple of times in NEI.
At this point I gave up after spending two days working on recipes on client, then trying to get it to work on server.