There is a promising thing I didn’t find among existing scripts: possibility to farm soulbind/materia. I.e. before I send my toon to gathering something or grinding some mobs, I load it with 10 weapons of the same type, 10 hats, 10 chests and so on, then add to my scenario something like:
if (Equipment.Equipped.Any(i => i.Soulbind >= 100))
{
prev = Equipment.Equipped.Where(i => i.Soulbind >= 100).First();
if (Equipment.Inventory.Any(i => i.name == prev.name))
{
next = Equipment.Inventory.Where(i => i.name == prev.name).First();
prev.Convert();
Sleep(3000);
next.Equip();
}
}
Well, I’m using C# syntax here, just for example; but the question is: does Miqo scripting language have any tools to perform this trick? And, if it does not – is it possible to add it anytime soon (i.e. before SBr)?
Also, once this part is done, more features could be added, like melding/unmelding grade IV materia after/before item swap, or even crafting these duplicate eq pieces automatically, before starting the scenario, until given number of each eq piece is prepared.