11 lines
222 B
Python
11 lines
222 B
Python
# erstes chat-plugin
|
|
|
|
class HalloServerPlugin(PythonPlugin):
|
|
def onEnable(self):
|
|
pass
|
|
|
|
def onCommand(self, sender, command, label, args):
|
|
self.getServer().broadcastMessage("Hallo " + args[0] + "!")
|
|
return True
|
|
|