2021-10-15 18:59:22 +00:00
|
|
|
from pinhook import plugin as p
|
|
|
|
|
|
|
|
# !rollcall
|
|
|
|
@p.command('!rollcall', help_text="The rollcall command to introduce the bot to newcomers")
|
2021-10-16 12:37:22 +00:00
|
|
|
@p.command('&ju', help_text="&ju so people can get infor for this bot specificaly")
|
2021-10-15 18:59:22 +00:00
|
|
|
def rollcall(msg):
|
2023-06-26 15:28:01 +00:00
|
|
|
out = "Beep boop, i'm a bot from jmjl. If you'd like the command list run &help."
|
2021-10-15 18:59:22 +00:00
|
|
|
return p.message(out)
|