[Question/Bug] "No enum constant appeng.api.features.Inscriber.ProcessType.false" error?
jawsawn opened this issue ยท 4 comments
Using the latest AE2 beta and Modtweaker. The ae2 support was broken. Have it updated yet? If it updated is there new type of script code? Old one doesn't seem to work. Also where can I see the TerraFirmaCraft support? Wiki doesn't contain that.
The code I'm having problem with:
var disc = Quadrum:disc;
var pan = TConstruct:metalPattern:10;
var note = minecraft:noteblock;
var plastic = VeganOption:bioplastic;
//inscriber
mods.appeng.Inscriber.addRecipe([plastic], pan, null, disc, false);
mods.appeng.Inscriber.addRecipe([disc], Botania:cosmetic:11, note, minecraft:record_cat, true);
mods.appeng.Inscriber.addRecipe([disc], minecraft:leather_boots, note, BiomesOPlenty:record_wanderer, true);
Documentation takes a long time to test everything out, etc.
@jaredlll08 should have fixed it. Are you on 0.8?
I had to change the method
mods.appeng.Inscriber.addRecipe(ItemStack[] imprintable, ItemStack plateA, ItemStack plateB, ItemStack out, String type)
type can be either:
Inscribe
Press
I didn't get what you said by "mods.appeng.Inscriber.addRecipe(ItemStack[] imprintable, ItemStack plateA, ItemStack plateB, ItemStack out, String type)"
Can you make two example ones? Do I have to put a number to item stack or leaving it empty would do?