From e0cfd7958e92eea9546d250209c35ad8fd9ee2df Mon Sep 17 00:00:00 2001 From: psychon Date: Sat, 1 Mar 2008 16:22:28 +0000 Subject: [PATCH] Add some currently missing commands to /msg *status help Thanks to SilverLeo for this patch. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@974 726aef4b-f618-498e-8847-2d620e286838 --- Client.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Client.cpp b/Client.cpp index d37cb9b1..f9866e2c 100644 --- a/Client.cpp +++ b/Client.cpp @@ -1553,6 +1553,11 @@ void CClient::HelpUser() { Table.SetCell("Arguments", ""); Table.SetCell("Description", "Prints which version of znc this is"); + Table.AddRow(); + Table.SetCell("Command", "MOTD"); + Table.SetCell("Arguments", ""); + Table.SetCell("Description", "Show the message of the day"); + Table.AddRow(); Table.SetCell("Command", "ListDCCs"); Table.SetCell("Arguments", ""); @@ -1600,6 +1605,16 @@ void CClient::HelpUser() { Table.SetCell("Arguments", ""); Table.SetCell("Description", "Remove a server from the list"); + Table.AddRow(); + Table.SetCell("Command", "Enablechan"); + Table.SetCell("Arguments", "<#chan>"); + Table.SetCell("Description", "Enable the channel"); + + Table.AddRow(); + Table.SetCell("Command", "Detach"); + Table.SetCell("Arguments", "<#chan>"); + Table.SetCell("Description", "Detach from the channel"); + Table.AddRow(); Table.SetCell("Command", "Topics"); Table.SetCell("Arguments", ""); @@ -1701,6 +1716,11 @@ void CClient::HelpUser() { Table.SetCell("Arguments", "[User]"); Table.SetCell("Description", "List all clients connected to your znc user"); + Table.AddRow(); + Table.SetCell("Command", "Traffic"); + Table.SetCell("Arguments", ""); + Table.SetCell("Description", "Show basic traffic stats for all znc users"); + Table.AddRow(); Table.SetCell("Command", "SetMOTD"); Table.SetCell("Arguments", "");