Browse Source

Updated a test and added some documentation.

Now someone just needs to find a way to transition into multiple prefixes...
pull/160/head
A5rocks 6 years ago
parent
commit
28d2885db1
  1. 2
      disco/bot/bot.py
  2. 8
      docs/bot_tutorial/first_steps.md
  3. 9
      tests/bot/bot.py

2
disco/bot/bot.py

@ -290,7 +290,7 @@ class Bot(LoggingClass):
Checks if the message starts with a mention (and then ignores the prefix(es))
mention_rules : dict(str, bool)
Whether `user`, `everyone`, and `role` mentions are allowed. Defaults to:
`{'user': True, 'everyone': False, 'role': False}
`{'user': True, 'everyone': False, 'role': False}`
msg_prefix : str
The prefix to check the message starts with.
msg : :class:`disco.types.message.Message`

8
docs/bot_tutorial/first_steps.md

@ -34,6 +34,14 @@ Now let's setup the configuration file. To start off with we'll paste the follow
}
```
{% hint style='tip' %}
If you want to use a prefix, you add this into the `"bot"` dictionary:
```json
"requires_mentions": false,
"commands_prefix": "!"
```
{% endhint %}
Now we're ready to write our plugin. Plugins are used to isolate the functionality of your bot into components. Plugins can be dynamically loaded, unloaded and reloaded at runtime. Lets start off by writing a plugin with a "ping" command;

9
tests/bot/bot.py

@ -92,3 +92,12 @@ class TestBot(TestCase):
msg.content = '!test'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg))
self.assertEqual(commands[0][0], self.bot._commands[0])
msg.content = '?test a'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg, ['?', ';']))
self.assertEqual(commands[0][0], self.bot._commands[1])
self.assertEqual(commands[1][0], self.bot._commands[0])
msg.content = '?test'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg, ['?', ';']))
self.assertEqual(commands[0][0], self.bot._commands[0])

Loading…
Cancel
Save