I'm trying to integrate Thermal Expansion with TerraFirmaCraft using minetweaker on 1.7.10. However, I can't get the recipe to apply the level tag properly to give the right tier machine. Also, I get an error when trying to add the energy and sideCache tag(s), which I assume is for energy level and side config for the machine.
Here is the script I'm using to craft the machines:
Here is the script I'm using to craft the machines:
without Energy and sideCache tag(s)
recipes.addShaped(<ThermalExpansion:Machine>.withTag({RSControl:0 as byte, Facing:3 as byte, level:0 as byte, Augments:[{Slot:0, id:5831 as short, Count:1 as byte, Damage:0 as short}, {Slot:1, id:5831 as short, Count:1 as byte, Damage:32 as short}, {Slot:2, id:5831 as short, Count:1 as byte, Damage:16 as short}]}), [[null, <ore:dustRedstone>, null], [<terrafirmacraft:FireBrick>, <ThermalExpansion:Frame>, <terrafirmacraft:FireBrick>], [<ore:gearCopper>, <ThermalExpansion:material:1>, <ore:gearCopper>]]);
with Energy and sideCache tag(s)
recipes.addShaped(<ThermalExpansion:Machine>.withTag({RSControl:0 as byte, Facing:3 as byte, Energy:0, sideCache:[1, 1, 2, 2, 2, 2] as byte[] as byte[], level:0 as byte, Augments:[{Slot:0, id:5831 as short, Count:1 as byte, Damage:0 as short}, {Slot:1, id:5831 as short, Count:1 as byte, Damage:32 as short}, {Slot:2, id:5831 as short, Count:1 as byte, Damage:16 as short}]}), [[null, <ore:dustRedstone>, null], [<terrafirmacraft:FireBrick>, <ThermalExpansion:Frame>, <terrafirmacraft:FireBrick>], [<ore:gearCopper>, <ThermalExpansion:material:1>, <ore:gearCopper>]]);
recipes.addShaped(<ThermalExpansion:Machine>.withTag({RSControl:0 as byte, Facing:3 as byte, level:0 as byte, Augments:[{Slot:0, id:5831 as short, Count:1 as byte, Damage:0 as short}, {Slot:1, id:5831 as short, Count:1 as byte, Damage:32 as short}, {Slot:2, id:5831 as short, Count:1 as byte, Damage:16 as short}]}), [[null, <ore:dustRedstone>, null], [<terrafirmacraft:FireBrick>, <ThermalExpansion:Frame>, <terrafirmacraft:FireBrick>], [<ore:gearCopper>, <ThermalExpansion:material:1>, <ore:gearCopper>]]);
with Energy and sideCache tag(s)
recipes.addShaped(<ThermalExpansion:Machine>.withTag({RSControl:0 as byte, Facing:3 as byte, Energy:0, sideCache:[1, 1, 2, 2, 2, 2] as byte[] as byte[], level:0 as byte, Augments:[{Slot:0, id:5831 as short, Count:1 as byte, Damage:0 as short}, {Slot:1, id:5831 as short, Count:1 as byte, Damage:32 as short}, {Slot:2, id:5831 as short, Count:1 as byte, Damage:16 as short}]}), [[null, <ore:dustRedstone>, null], [<terrafirmacraft:FireBrick>, <ThermalExpansion:Frame>, <terrafirmacraft:FireBrick>], [<ore:gearCopper>, <ThermalExpansion:material:1>, <ore:gearCopper>]]);