32 lines
690 B
Python
32 lines
690 B
Python
#pylint: disable=F0401
|
|
from helpers import *
|
|
|
|
motd = server.getMotd()
|
|
|
|
|
|
@hook.command("getmotd")
|
|
def on_getmotd_command(sender, args):
|
|
plugin_header(sender, "MOTD")
|
|
msg(sender, motd, usecolor=False)
|
|
|
|
|
|
@hook.command("setmotd")
|
|
def on_setmotd_command(sender, args):
|
|
global motd
|
|
if sender.hasPermission("utils.setmotd"):
|
|
if not checkargs(sender, args, 1, -1):
|
|
return True
|
|
|
|
motd = colorify(" ".join(args).replace("\\n", "\n"))
|
|
broadcast("", plugin_header(name="MOTD"))
|
|
broadcast("", "&aNew MOTD:&r\n%s" % motd)
|
|
broadcast(" ")
|
|
else:
|
|
noperm(sender)
|
|
return True
|
|
|
|
|
|
@hook.event("server.ServerListPingEvent")
|
|
def on_server_ping(event):
|
|
event.setMotd(motd)
|