Added auto enroll feature #1

Open
Asuna wants to merge 4 commits from Asuna/Influx:master into master
Showing only changes of commit e770312c1b - Show all commits

View File

@ -68,12 +68,10 @@ internal sealed class InfluxPlugin : IDalamudPlugin
_commandManager.AddHandler("/influx", new CommandInfo(ProcessCommand)
{
HelpMessage = "Opens influx configuration"
});
_commandManager.AddHandler("/influx gil", new CommandInfo(ProcessCommand)
{
HelpMessage = "Opens influx statistics"
HelpMessage = """
Opens influx configuration
/influx gil - Opens influx statistics
"""
Outdated
Review

I actually didn't know you could add commands with spaces, nevermind whether that is even processed correctly or not. Is there any other plugin that does this?

I actually didn't know you could add commands with spaces, nevermind whether that is even processed correctly or not. Is there any other plugin that does this?
Outdated
Review

I saw this on the Doorbell plugin code. I was trying to find a way to include the help info in /xlplugins for it

The sample I saw to get that idea:
https://github.com/Aida-Enna/Doorbell/blob/main/Plugin.cs

I saw this on the Doorbell plugin code. I was trying to find a way to include the help info in /xlplugins for it The sample I saw to get that idea: https://github.com/Aida-Enna/Doorbell/blob/main/Plugin.cs
Outdated
Review

I changed it to how Limiana does it for lifestream instead just now

I changed it to how Limiana does it for lifestream instead just now
});
_timer = new Timer(TimeSpan.FromMinutes(1));