add motd.py
This commit is contained in:
29
motd.py
Normal file
29
motd.py
Normal file
@@ -0,0 +1,29 @@
|
||||
#pylint: disable=F0401
|
||||
from helpers import *
|
||||
|
||||
motd = server.getMotd()
|
||||
|
||||
@hook.command("getmotd")
|
||||
def onGetMotdCommand(sender, args):
|
||||
plugHeader("MOTD")
|
||||
msg(sender, motd, usecolor=False)
|
||||
|
||||
|
||||
@hook.command("setmotd")
|
||||
def onSetMotdCommand(sender, args):
|
||||
global motd
|
||||
plugHeader("MOTD")
|
||||
if sender.hasPermission("utils.setmotd"):
|
||||
if not checkargs(sender, args, 1, -1):
|
||||
return True
|
||||
|
||||
motd = colorify(" ".join(args))
|
||||
broadcast(plugHeader(name="MOTD"))
|
||||
broadcast("&aNew MOTD:&r\n%s" % motd)
|
||||
else:
|
||||
noperm(sender)
|
||||
return True
|
||||
|
||||
@hook.event("server.ServerListPingEvent")
|
||||
def onServerPing(event):
|
||||
event.setMotd(motd)
|
||||
Reference in New Issue
Block a user