23 lines
1.0 KiB
Python
23 lines
1.0 KiB
Python
from core.command_param_types import Any
|
|
from core.decorators import instance, command
|
|
from core.igncore import IgnCore
|
|
|
|
|
|
@instance()
|
|
class ChatController:
|
|
def inject(self, registry):
|
|
self.command_alias_service = registry.get_instance("command_alias_service")
|
|
self.bot: IgnCore = registry.get_instance("bot")
|
|
|
|
def start(self):
|
|
self.command_alias_service.add_alias("cmd", "shout")
|
|
self.command_alias_service.add_alias("s", "shout")
|
|
|
|
@command(command="shout", params=[Any("message")], access_level="leader",
|
|
description="Show a highly visible message")
|
|
def shout_command(self, _, message):
|
|
self.bot.send_private_channel_message(f"<br><notice> .:: Raid Command ::.</notice>\n"
|
|
f"<yellow>────────────────</yellow>\n"
|
|
f"<highlight>{message}</highlight>\n"
|
|
f"<yellow>────────────────</yellow>")
|