diff --git a/plugins/MoobotFactoids/plugin.py b/plugins/MoobotFactoids/plugin.py index 8d93eeaa6..0e46d9e6a 100755 --- a/plugins/MoobotFactoids/plugin.py +++ b/plugins/MoobotFactoids/plugin.py @@ -293,12 +293,23 @@ class MoobotFactoids(callbacks.Plugin): ``@something is something`` And when you call ``@something`` the bot says ``something is something``. - If you want factoid to be in different format say (for example): + If you want the factoid to be in different format say (for example): ``@Hi is Hello`` And when you call ``@hi`` the bot says ``Hello.`` If you want the bot to use /mes with Factoids, that is possible too. ``@test is tests.`` and everytime when someone calls for ``test`` the bot answers ``* bot tests.`` + + If you want the factoid to have random answers say (for example): + ``@fruit is (orange|apple|banana)``. So when ``@fruit`` is called + the bot will reply with one of the listed fruits (random): ``orange``. + + If you want to replace the value of the factoid, for example: + ``@no Hi is Hey`` when you call ``@hi`` the bot says ``Hey``. + + If you want to append to the current value of a factoid say: + ``@Hi is also Hello``, so that when you call ``@hi`` the + bot says ``Hey, or Hello.`` """ callBefore = ['Dunno'] def __init__(self, irc):