#No Sulfuric Acid?

8 messages · Page 1 of 1 (latest)

shadow beacon
#

Was making recipes for dissolution, but getting this error:

server_scripts:main.js#33: Failed to create a 'mekanism:dissolution' recipe from args [2000x mekanism:dirty_iron, mekanism:sulfuric_acid, 3x create:crushed_raw_iron]: Unable to set 'item_input: flat_sized_ingredient' to 'mekanism:sulfuric_acid' as 'flat_sized_ingredient'! - Failed to read ingredient from mekanism:sulfuric_acid: Item with ID mekanism:sulfuric_acid does not exist!

Recipes:
event.recipes.mekanism.dissolution('2000x mekanism:dirty_iron', 'mekanism:sulfuric_acid', '3x create:crushed_raw_iron')
//event.recipes.mekanism.dissolution('2000x mekanism:dirty_gold', 'mekanism:sulfuric_acid', '3x create:crushed_raw_gold')
//event.recipes.mekanism.dissolution('2000x mekanism:dirty_copper', 'mekanism:sulfuric_acid', '3x create:crushed_raw_copper')
//event.recipes.mekanism.dissolution('2000x mekanism:dirty_tin', 'mekanism:sulfuric_acid', '3x create:crushed_raw_tin')
//event.recipes.mekanism.dissolution('2000x mekanism:dirty_lead', 'mekanism:sulfuric_acid', '3x create:crushed_raw_lead')
//event.recipes.mekanism.dissolution('2000x mekanism:dirty_osmium', 'mekanism:sulfuric_acid', '3x create:crushed_raw_osmium')
//event.recipes.mekanism.dissolution('2000x mekanism:dirty_uranium', 'mekanism:sulfuric_acid', '3x create:crushed_raw_uranium')

rapid stumpBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

silent wolfBOT
#

Paste version of server.log from @shadow beacon

regal vessel
#

The type wrapper tries to understand 'mekanism:sulfuric_acid' as item ingredient first

#

No idea what's the explicit syntax for Mekanism chemical

shadow beacon
shadow beacon
#

Okay, so i solved the problem:

it's not

event.recipes.mekanism.dissolution(gasOutput, gasInput, itemInput)

but

event.recipes.mekanism.dissolution(gasOutput, itemInput, gasInput)

#

the gasInput and itemInput placement are wrong on wiki >_>