]> jfr.im git - z_archive/Ophion.git/blame - modules/autoload/quit.py
Initialize repo
[z_archive/Ophion.git] / modules / autoload / quit.py
CommitLineData
b069ba10
JR
1from classes import *
2from util import *
3
4name = 'quit'
5def init(cache):
6 cache.currmod = __name__
7 cache.hookcmd('DIE', 8, die, 0, helpdie, isadmin=True)
8def deinit(cache, reloading=False):
9 cache.currmod = __name__
10 cache.unhookcmd('DIE')
11
12def die(nick, target, params, bot, cache):
13 return "QUIT"
14
15def helpdie(): return ['DIE', 'Kills the bots.']