my new script! hardcore mode
Posted: Fri Nov 16, 2012 11:22 am
hello influx helped me with this script, it makes you disconect if you die!
Code: Select all
def apply_script(protocol, connection, config):
class HardcoreConnection(connection):
def on_kill(self, killer, type):
self.disconnect()
return connection.on_kill(self, killer, type)
return protocol, HardcoreConnection