ClearLog();
var r = CraftingManager.CurrentRecipe;
Log(r.CurrentLocaleName);
var mats = new int[4];
foreach (var i in r.Ingredients)
{
Log("{0},{1},{2},{3},{4},{5}", i.HqInInventory, i.HqSelected, i.ItemId, i.NormalInInventory, i.NqSelected, i.TotalNeeded);
}
var synth = new ff14bot.NeoProfiles.Tags.Synthesize();
synth.RecipeId = CraftingManager.CurrentRecipeId;
mats[0]=-1;
mats[1]=-1;
mats[2]=-1;
mats[3]=-1;
synth.HQMats = mats;
synth.StartCrafting();