grittyfrog / MacroMate

FFXIV plugin to manage your macros
3 stars 1 forks source link

Macro Chain support #1

Closed grittyfrog closed 1 year ago

grittyfrog commented 1 year ago

Should we have automatic Macro Chain support?

At the moment we split macros every 15 chunks when writing to the base game. Should we give players the option of writing 14-line chunks that end with the appropriate /nextmacro command if the plugin is installed?

We can detect other addons with something like:

if (Env.PluginInterface.InstalledPlugins.Any(pluginInfo => pluginInfo is { InternalName: "macrochain", IsLoaded: true }))

If we do this, should we also allow the "Run" command to automatically execute all macro lines even if they're longer? (I.e. should we chain things together ourselves for the run command).

grittyfrog commented 1 year ago

Resolved by c3a2ba96949dffc5d6c2c85c27329014b3d9dfe3.

This doesn't extend the "Run" command, leaving that open as a future improvement depending on how it fits the Dalamud rules.