|
|
@ -6,18 +6,18 @@ from disco.bot.plugin import Plugin |
|
|
|
class BasicPlugin(Plugin): |
|
|
|
@Plugin.listen('MessageCreate') |
|
|
|
def on_message_create(self, event): |
|
|
|
print 'Message Created: {}'.format(event.message.content) |
|
|
|
self.log.info('Message created: <{}>: {}'.format( |
|
|
|
event.message.author.username, |
|
|
|
event.message.content)) |
|
|
|
|
|
|
|
@Plugin.command('test') |
|
|
|
def on_test_command(self, event): |
|
|
|
event.msg.reply('HELLO WORLD') |
|
|
|
@Plugin.command('echo', '<content:str...>') |
|
|
|
def on_test_command(self, event, content): |
|
|
|
event.msg.reply(content) |
|
|
|
|
|
|
|
@Plugin.command('spam', '<count:int> <content:str...>') |
|
|
|
def on_spam_command(self, event, count, content): |
|
|
|
count = int(event.args[0]) |
|
|
|
|
|
|
|
for i in range(count): |
|
|
|
print event.msg.reply(' '.join(event.args[1:])).id |
|
|
|
event.msg.reply(content) |
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
bot = Bot(disco_main()) |
|
|
|