Limnoria/plugins/Conditional/README.rst

130 lines
3.6 KiB
ReStructuredText
Raw Normal View History

.. _plugin-Conditional:
Documentation for the Conditional plugin for Supybot
====================================================
Purpose
-------
Contains numerous conditional commands (such as 'if', 'and', and 'or'),
which can be used on their own or with another plugin.
Also provides logic operators for writing conditions.
Useful for bot scripting / nested commands.
Usage
-----
This plugin provides logic operators and other commands that
enable you to run commands only if a condition is true. Useful for nested
commands and scripting.
.. _commands-Conditional:
Commands
--------
2021-04-17 20:09:33 +02:00
.. _command-conditional-cand:
cand <cond1> [<cond2> ... <condN>]
Returns true if all conditions supplied evaluate to true.
2021-04-17 20:09:33 +02:00
.. _command-conditional-ceq:
ceq <item1> <item2>
Does a string comparison on <item1> and <item2>. Returns true if they are equal.
2021-04-17 20:09:33 +02:00
.. _command-conditional-cerror:
cerror <testcommand>
Runs <testcommand> and returns true if it raises an error; false otherwise.
2021-04-17 20:09:33 +02:00
.. _command-conditional-cif:
cif <condition> <ifcommand> <elsecommand>
Runs <ifcommand> if <condition> evaluates to true, runs <elsecommand> if it evaluates to false. Use other logical operators defined in this plugin and command nesting to your advantage here.
2021-04-17 20:09:33 +02:00
.. _command-conditional-cor:
cor <cond1> [<cond2> ... <condN>]
Returns true if any one of conditions supplied evaluates to true.
2021-04-17 20:09:33 +02:00
.. _command-conditional-cxor:
cxor <cond1> [<cond2> ... <condN>]
Returns true if only one of conditions supplied evaluates to true.
2021-04-17 20:09:33 +02:00
.. _command-conditional-ge:
ge <item1> <item2>
Does a string comparison on <item1> and <item2>. Returns true if <item1> is greater than or equal to <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-gt:
gt <item1> <item2>
Does a string comparison on <item1> and <item2>. Returns true if <item1> is greater than <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-le:
le <item1> <item2>
Does a string comparison on <item1> and <item2>. Returns true if <item1> is less than or equal to <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-lt:
lt <item1> <item2>
Does a string comparison on <item1> and <item2>. Returns true if <item1> is less than <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-match:
match [--case-insensitive] <item1> <item2>
Determines if <item1> is a substring of <item2>. Returns true if <item1> is contained in <item2>. Will only match case if --case-insensitive is not given.
2021-04-17 20:09:33 +02:00
.. _command-conditional-nceq:
nceq <item1> <item2>
Does a numeric comparison on <item1> and <item2>. Returns true if they are equal.
2021-04-17 20:09:33 +02:00
.. _command-conditional-ne:
ne <item1> <item2>
Does a string comparison on <item1> and <item2>. Returns true if they are not equal.
2021-04-17 20:09:33 +02:00
.. _command-conditional-nge:
nge <item1> <item2>
Does a numeric comparison on <item1> and <item2>. Returns true if <item1> is greater than or equal to <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-ngt:
ngt <item1> <item2>
Does a numeric comparison on <item1> and <item2>. Returns true if <item1> is greater than <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-nle:
nle <item1> <item2>
Does a numeric comparison on <item1> and <item2>. Returns true if <item1> is less than or equal to <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-nlt:
nlt <item1> <item2>
Does a numeric comparison on <item1> and <item2>. Returns true if <item1> is less than <item2>.
2021-04-17 20:09:33 +02:00
.. _command-conditional-nne:
nne <item1> <item2>
Does a numeric comparison on <item1> and <item2>. Returns true if they are not equal.
2021-04-17 20:09:33 +02:00
.. _conf-Conditional:
Configuration
-------------
2021-04-17 20:09:33 +02:00
.. _conf-supybot.plugins.Conditional.public:
2021-04-22 00:29:15 +02:00
supybot.plugins.Conditional.public
This config variable defaults to "True", is not network-specific, and is not channel-specific.
Determines whether this plugin is publicly visible.