1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="robots" content="index,follow" />
<meta name="language" content="en" />
<title>ZNC - Using Commands</title>
</head>
<body bgcolor="#FFFFFF" text="#000000" alink="#993333" link="#333399" vlink="#666666">
[<a href="index.php">Home</a>]
-
[<a href="http://sourceforge.net/projects/znc">Project Page</a>]
<hr noshade>
<p />
<h2>
Commands
</h2>
<p>
Commands are given to ZNC by messaging the virtual user *status. Likewise, modules are communicated to by messaging *modname as well.
</p>
<h3>
Example: /msg *status listmods
</h3>
<pre>
<prozac> listmods
<*status> +---------+------------------------------------------------------+
<*status> | Name | Description |
<*status> +---------+------------------------------------------------------+
<*status> | email | Monitors Email activity on local disk /var/mail/user |
<*status> | shell | Gives shell access. |
<*status> | schat | Secure cross platform (:P) chat system |
<*status> +---------+------------------------------------------------------+
</pre>
<p>
The prefix for these virtual users can be changed from * in the znc.conf file. It is wise to use a character that is illegal to use on IRC so that you don't lose the ability to talk to a real person who happens to be using the same prefix on their IRC nick.
</p>
<h2>
Command List
</h2>
<pre>
<zncuser> help
<*status> +-----------+---------------------+-------------------------------------+
<*status> | Command | Arguments | Description |
<*status> +-----------+---------------------+-------------------------------------+
<*status> | ListDCCs | | List all active DCCs |
<*status> | ListMods | | List all loaded modules |
<*status> | ListChans | | List all channels |
<*status> | ListNicks | <#chan> | List all nicks on a channel |
<*status> | Topics | | Show topics in all channels |
<*status> | SetBuffer | <#chan> [linecount] | Set the buffer count for a channel |
<*status> | Jump | | Jump to the next server in the list |
<*status> | Send | <nick> <file> | Send a shell file to a nick on IRC |
<*status> | Get | <file> | Send a shell file to yourself |
<*status> | LoadMod | <module> | Load a module |
<*status> | UnloadMod | <module> | Unload a module |
<*status> | ReloadMod | <module> | Reload a module |
<*status> +-----------+---------------------+-------------------------------------+
</pre>
</body>
</html>
|