mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-29 07:19:23 +01:00
doc: Adjustments to TOC
This commit is contained in:
parent
630837d3b0
commit
50f9bf4f9d
@ -1,9 +1,10 @@
|
|||||||
Flood control
|
Anti-Abuse
|
||||||
=============
|
==========
|
||||||
PBot can monitor the channel for excessive rapid traffic originating from an individual and automatically ban the offender for a certain length of time.
|
|
||||||
|
|
||||||
|
PBot can monitor channels for abusive behavior and take appropriate action.
|
||||||
|
|
||||||
<!-- md-toc-begin -->
|
<!-- md-toc-begin -->
|
||||||
|
* [Anti-Abuse](#anti-abuse)
|
||||||
* [Flood control](#flood-control)
|
* [Flood control](#flood-control)
|
||||||
* [Message flood](#message-flood)
|
* [Message flood](#message-flood)
|
||||||
* [Join flood](#join-flood)
|
* [Join flood](#join-flood)
|
||||||
@ -14,6 +15,9 @@ PBot can monitor the channel for excessive rapid traffic originating from an ind
|
|||||||
* [Opping/Deopping](#oppingdeopping)
|
* [Opping/Deopping](#oppingdeopping)
|
||||||
<!-- md-toc-end -->
|
<!-- md-toc-end -->
|
||||||
|
|
||||||
|
Flood control
|
||||||
|
=============
|
||||||
|
PBot can monitor the channel for excessive rapid traffic originating from an individual and automatically ban the offender for a certain length of time.
|
||||||
|
|
||||||
Message flood
|
Message flood
|
||||||
-------------
|
-------------
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
Channel Management
|
Channel Management
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
||||||
<!-- md-toc-begin -->
|
<!-- md-toc-begin -->
|
||||||
* [Channel Management](#channel-management)
|
* [Channel Management](#channel-management)
|
||||||
* [chanadd](#chanadd)
|
* [chanadd](#chanadd)
|
||||||
@ -12,7 +11,6 @@ Channel Management
|
|||||||
* [chanlist](#chanlist)
|
* [chanlist](#chanlist)
|
||||||
<!-- md-toc-end -->
|
<!-- md-toc-end -->
|
||||||
|
|
||||||
|
|
||||||
#### chanadd
|
#### chanadd
|
||||||
`chanadd` adds a channel to PBot's list of channels to auto-join and manage.
|
`chanadd` adds a channel to PBot's list of channels to auto-join and manage.
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
### code-factoids
|
### code-factoids
|
||||||
Code-factoids are a special type of factoid whose text is executed as Perl instructions. The return value from these instructions is the final text of the factoid. This final text is then parsed and treated like any other factoid text.
|
Code-factoids are a special type of factoid whose text is executed as Perl instructions. The return value from these instructions is the final text of the factoid. This final text is then parsed and treated like any other factoid text.
|
||||||
|
|
||||||
|
|
||||||
<!-- md-toc-begin -->
|
<!-- md-toc-begin -->
|
||||||
* [code-factoids](#code-factoids)
|
* [code-factoids](#code-factoids)
|
||||||
* [Special variables](#special-variables)
|
* [Special variables](#special-variables)
|
||||||
@ -10,7 +9,6 @@ Code-factoids are a special type of factoid whose text is executed as Perl instr
|
|||||||
* [poll example](#poll-example)
|
* [poll example](#poll-example)
|
||||||
<!-- md-toc-end -->
|
<!-- md-toc-end -->
|
||||||
|
|
||||||
|
|
||||||
By default, the variables created within code-factoids do not persist between factoid invocations. This behavior can be overridden by factsetting a persist-key with a unique value.
|
By default, the variables created within code-factoids do not persist between factoid invocations. This behavior can be overridden by factsetting a persist-key with a unique value.
|
||||||
|
|
||||||
To create a code-factoid, simply wrap the factoid text with curly braces.
|
To create a code-factoid, simply wrap the factoid text with curly braces.
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
Modules
|
Modules
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
PBot has several external command-line modules. Here is the documentation for most of them.
|
||||||
|
|
||||||
<!-- md-toc-begin -->
|
<!-- md-toc-begin -->
|
||||||
* [Modules](#modules)
|
* [Modules](#modules)
|
||||||
@ -76,7 +77,6 @@ Modules
|
|||||||
* [quote](#quote)
|
* [quote](#quote)
|
||||||
<!-- md-toc-end -->
|
<!-- md-toc-end -->
|
||||||
|
|
||||||
|
|
||||||
### cc
|
### cc
|
||||||
Code compiler (and executor). This command will compile and execute user-provided code in a number of languages, and then display the compiler and/or program output.
|
Code compiler (and executor). This command will compile and execute user-provided code in a number of languages, and then display the compiler and/or program output.
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
Quotegrabs
|
Quotegrabs
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
PBot can grab user messages and store/recall them for posterity.
|
||||||
|
|
||||||
<!-- md-toc-begin -->
|
<!-- md-toc-begin -->
|
||||||
* [Quotegrabs](#quotegrabs)
|
* [Quotegrabs](#quotegrabs)
|
||||||
@ -10,7 +11,6 @@ Quotegrabs
|
|||||||
* [delq](#delq)
|
* [delq](#delq)
|
||||||
<!-- md-toc-end -->
|
<!-- md-toc-end -->
|
||||||
|
|
||||||
|
|
||||||
### grab
|
### grab
|
||||||
Grabs a message someone says, and adds it to the quotegrabs database. You may grab multiple nicks/messages in one quotegrab by separating the arguments with a plus sign (the nicks need not be different -- you can grab multiple messages by the same nick by specifying a different history for each grab).
|
Grabs a message someone says, and adds it to the quotegrabs database. You may grab multiple nicks/messages in one quotegrab by separating the arguments with a plus sign (the nicks need not be different -- you can grab multiple messages by the same nick by specifying a different history for each grab).
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user