Added auto enroll feature #1
@ -68,12 +68,10 @@ internal sealed class InfluxPlugin : IDalamudPlugin
|
|||||||
|
|
||||||
_commandManager.AddHandler("/influx", new CommandInfo(ProcessCommand)
|
_commandManager.AddHandler("/influx", new CommandInfo(ProcessCommand)
|
||||||
{
|
{
|
||||||
HelpMessage = "Opens influx configuration"
|
HelpMessage = """
|
||||||
});
|
Opens influx configuration
|
||||||
|
/influx gil - Opens influx statistics
|
||||||
_commandManager.AddHandler("/influx gil", new CommandInfo(ProcessCommand)
|
"""
|
||||||
|
|||||||
{
|
|
||||||
HelpMessage = "Opens influx statistics"
|
|
||||||
});
|
});
|
||||||
|
|
||||||
_timer = new Timer(TimeSpan.FromMinutes(1));
|
_timer = new Timer(TimeSpan.FromMinutes(1));
|
||||||
|
Loading…
Reference in New Issue
Block a user
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 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 changed it to how Limiana does it for lifestream instead just now