Browse Source

Added listener (pm user on guild join) example (#94)

Added an example of how to use listeners to react to events. The example demonstrates how to dm someone a welcome message after they join a guild.
pull/116/head
Jaimyn Mayer 6 years ago
committed by Andrei Zbikowski
parent
commit
305f1800c1
  1. 6
      examples/basic_plugin.py

6
examples/basic_plugin.py

@ -73,3 +73,9 @@ class BasicPlugin(Plugin):
if args.help:
return event.msg.reply(event.parser.format_help())
event.msg.reply(args.asdf)
# You can use a listener to react to events, like someone joining your guild
@Plugin.listen('GuildMemberAdd')
def send_welcome_dm(self, event):
# Send the user a direct message with a welcome greeting after they join.
event.member.user.open_dm().send_message('Hi there! Welcome to our friendly community.')

Loading…
Cancel
Save