18 lines
291 B
Python
18 lines
291 B
Python
|
|
|
|
from sopel import plugin
|
|
|
|
from sopel_SpiceBot_Core_1 import sb
|
|
|
|
from sopel_SpiceBot_Core_Prerun import prerun
|
|
|
|
|
|
@prerun()
|
|
@plugin.action_command('test')
|
|
def sb_test_commands(bot, trigger):
|
|
bot.say("%s" % trigger.raw)
|
|
|
|
bot.say("%s" % trigger.args[1])
|
|
|
|
sb.osd(str(dir(trigger)))
|