diff --git a/RoleplayersToolbox/Commands.cs b/RoleplayersToolbox/Commands.cs index ddd616b..a38460f 100755 --- a/RoleplayersToolbox/Commands.cs +++ b/RoleplayersToolbox/Commands.cs @@ -8,7 +8,9 @@ namespace RoleplayersToolbox { internal Commands(Plugin plugin) { this.Plugin = plugin; - this.Plugin.Interface.CommandManager.AddHandler("/rptools", new CommandInfo(this.OnCommand)); + this.Plugin.Interface.CommandManager.AddHandler("/rptools", new CommandInfo(this.OnCommand) { + HelpMessage = "Open The Roleplayer's Toolbox", + }); } public void Dispose() { diff --git a/RoleplayersToolbox/Tools/Housing/HousingTool.cs b/RoleplayersToolbox/Tools/Housing/HousingTool.cs index 232b77d..9a59bb0 100755 --- a/RoleplayersToolbox/Tools/Housing/HousingTool.cs +++ b/RoleplayersToolbox/Tools/Housing/HousingTool.cs @@ -79,7 +79,9 @@ namespace RoleplayersToolbox.Tools.Housing { this.Plugin.Common.Functions.ContextMenu.OpenContextMenu += this.OnContextMenu; this.Plugin.Interface.Framework.OnUpdateEvent += this.OnFramework; - this.Plugin.Interface.CommandManager.AddHandler("/route", new CommandInfo(this.OnCommand)); + this.Plugin.Interface.CommandManager.AddHandler("/route", new CommandInfo(this.OnCommand) { + HelpMessage = "Extract housing information from the given text and open the routing window", + }); } public void Dispose() { diff --git a/RoleplayersToolbox/Tools/Illegal/Emote/EmoteTool.cs b/RoleplayersToolbox/Tools/Illegal/Emote/EmoteTool.cs index fbcfe0b..f08b03b 100755 --- a/RoleplayersToolbox/Tools/Illegal/Emote/EmoteTool.cs +++ b/RoleplayersToolbox/Tools/Illegal/Emote/EmoteTool.cs @@ -32,7 +32,9 @@ namespace RoleplayersToolbox.Tools.Illegal.Emote { internal EmoteTool(Plugin plugin) { this.Plugin = plugin; - this.Plugin.Interface.CommandManager.AddHandler("/emoteid", new CommandInfo(this.EmoteIdCommand)); + this.Plugin.Interface.CommandManager.AddHandler("/emoteid", new CommandInfo(this.EmoteIdCommand) { + HelpMessage = "Run the emote with the given ID if it is unlocked", + }); if (this.Plugin.Interface.TargetModuleScanner.TryScanText(Signatures.SetActionOnHotbar, out var setPtr)) { this.SetActionOnHotbarHook = new Hook(setPtr, new SetActionOnHotbarDelegate(this.SetActionOnHotbarDetour));