Page 1 of 1

my new script! hardcore mode

Posted: Fri Nov 16, 2012 11:22 am
by Oshawott
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

Re: my new script! hardcore mode

Posted: Fri Nov 16, 2012 2:32 pm
by HoboHob
Oshawott wrote:
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
:O

Re: my new script! hardcore mode

Posted: Fri Nov 16, 2012 4:20 pm
by rakiru
I'm sure aimbotters will have fun with this.