From 4e61ea317b81b7bd5206e607475494e2b4ff39aa Mon Sep 17 00:00:00 2001 From: Pentium44 Date: Sun, 3 Jan 2021 18:27:47 -0800 Subject: [PATCH] Update README.md --- README.md | 2 ++ server.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 85840b1..90e31d8 100755 --- a/README.md +++ b/README.md @@ -14,11 +14,13 @@ and I'm proud of that. It's versatile, easy to setup, and extremely effecient to ###### Commands in IdleIRC * /focus [channel|user]: Funnel messages to specific channel or user (Alias: /switch; /query) +* /archive: Archive current log file, and clear current chat history. * /part (channel): Part channel, part focused channel if none specified * /rejoin (channel): Part, and join a channel; focused channel if none is specified * /nick [nickname]: Change your nickname * /list [channel]: List users in a channel * /usermode [flag(s): Sets MODE flag(s) to user +* /msg [channel|user] [msg]: Message channel, or PM 'user' * /mode [channel] [flag(s)]: Sets MODE flag(s) for [channel] * /channel: Prints focused channel / user (Alias: /focused) diff --git a/server.php b/server.php index a742529..551c69d 100755 --- a/server.php +++ b/server.php @@ -150,7 +150,7 @@ if (isset($_GET['msg']) && $_GET['msg']!="" && isset($_GET['nick']) && $_GET['ni } else if ($cmd[0] == "/help" || $cmd[0] == "/?") { $logline .= "$title $version ~"; $logline .= "HELP: Information about $title
/join [channel] : Join IRC channel [channel]
"; - $logline .= "/archive: Archive current log file, and clear current chat history."; + $logline .= "/archive: Archive current log file, and clear current chat history.
"; $logline .= "/focus [channel|user]: Funnel messages to specific channel or user (Alias: /switch; /query)
"; $logline .= "/part (channel): Part channel, part focused channel if none specified
"; $logline .= "/rejoin (channel): Part, and join a channel; focused channel if none is specified
";