mod_admin.py

Thu, 15 Jan 2015 19:06:14 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Thu, 15 Jan 2015 19:06:14 +0200
changeset 118
dbf49689af0d
parent 103
e4891ab34fb1
child 121
ac07779f788d
permissions
-rw-r--r--

- added bridging functionality

from modulecore import command_error
import hgapi

ModuleData = {
	'commands':
	[
		{
			'name': 'raw',
			'description': 'Sends a raw message to the server',
			'args': '<message...>',
			'level': 'admin',
		},

		{
			'name': 'msg',
			'description': 'Sends a message to someone',
			'args': '<recipient> <message...>',
			'level': 'admin',
		},

		{
			'name': 'restart',
			'description': 'Restarts the bot',
			'args': None,
			'level': 'admin',
		},

		{
			'name': 'die',
			'description': 'Shuts the bot down',
			'args': None,
			'level': 'admin',
		},
	]
}

def cmd_raw (bot, args, **rest):
	bot.write (args['message'])

def cmd_msg (bot, args, **rest):
	bot.privmsg (args['recipient'], args['message'])

def cmd_restart (bot, **rest):
	bot.restart()

def cmd_die (bot, **rest):
	quit()

mercurial