9 lines
352 B
Python
9 lines
352 B
Python
from pinhook import plugin as p
|
|
|
|
# !rollcall
|
|
@p.command('!rollcall', help_text="The rollcall command to introduce the bot to newcomers")
|
|
@p.command('&ju', help_text="&ju so people can get infor for this bot specificaly")
|
|
def rollcall(msg):
|
|
out = "Beep boop, i'm a bot from jmjl. If you'd like the command list run &help."
|
|
return p.message(out)
|