Understood, thanks for the quick reply!
Any way I can make myself a Lisbeth strategy that just repeatedly uses Master's Mend and Careful Synth 2? I'm leveling desynth and it'd be much quicker since HQ doesnt affect desynth rates. I dont wanna get screwing around in the Lisbeth code because I don't want to break anything.
Edit: Just to add, my main reasoning is because once you get desynth to around 60ish you have to make non-quicksynthable items to desynth, and the attempts to raise quality are basically pointless
HQ does effect desynth, and 2 you don't need to make a strategy just make a macro for the items that you will be making.
View attachment 173585
HQ does not affect Desynth, 5% per materia does
Desynthesis Endgame Guide
Formula included in OT
I would use Mal's 3 star profile for Luic's it has built in food as well
if (settings.LogoutWhenFinished)
{
const uint WM_KEYDOWN = 0x100;
const uint WM_KEYUP = 0x0101;
IntPtr handle = Core.Memory.Process.MainWindowHandle;
ChatManager.SendChat("/shutdown");
Thread.Sleep(1000);
PostMessage(handle, WM_KEYDOWN, (IntPtr)Keys.NumPad4, IntPtr.Zero);
PostMessage(handle, WM_KEYUP, (IntPtr)Keys.NumPad4, IntPtr.Zero);
Thread.Sleep(1000);
PostMessage(handle, WM_KEYDOWN, (IntPtr)Keys.NumPad4, IntPtr.Zero);
PostMessage(handle, WM_KEYUP, (IntPtr)Keys.NumPad4, IntPtr.Zero);
Thread.Sleep(1000);
PostMessage(handle, WM_KEYDOWN, (IntPtr)Keys.NumPad0, IntPtr.Zero);
PostMessage(handle, WM_KEYUP, (IntPtr)Keys.NumPad0, IntPtr.Zero);
Thread.Sleep(1000);
}