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).
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 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).