2019-05-25 20:40:06 +00:00
|
|
|
#--depends-on commands
|
|
|
|
|
2019-04-28 12:36:25 +00:00
|
|
|
from src import ModuleManager, utils
|
|
|
|
|
|
|
|
class Module(ModuleManager.BaseModule):
|
|
|
|
@utils.hook("received.command.echo")
|
2019-09-26 10:56:37 +00:00
|
|
|
@utils.kwarg("min_args", 1)
|
2019-04-28 12:36:25 +00:00
|
|
|
def echo(self, event):
|
|
|
|
event["stdout"].write(event["args"])
|
2019-09-26 11:27:20 +00:00
|
|
|
|
|
|
|
@utils.hook("received.command.action")
|
|
|
|
@utils.kwarg("min_args", 1)
|
|
|
|
@utils.kwarg("expect_output", False)
|
|
|
|
def action(self, event):
|
|
|
|
event["target"].send_message("\x01ACTION %s\x01" % event["args"])
|
2019-09-27 15:18:49 +00:00
|
|
|
|
|
|
|
@utils.hook("received.command.msg")
|
|
|
|
@utils.kwarg("min_args", 2)
|
|
|
|
@utils.kwarg("permission", "say")
|
|
|
|
@utils.kwarg("remove_empty", False)
|
|
|
|
@utils.kwarg("help", "Send a message to a target")
|
|
|
|
def msg(self, event):
|
|
|
|
event["server"].send_message(event["args_split"][0],
|
|
|
|
" ".join(event["args_split"][1:]))
|