[SCRIPT] noaim
Posted: Sat Apr 12, 2014 3:33 am
It's me tobi9sc and here is my first simple script. Woot!
So this script "noaim" doesn't disable you to aim nor use secondary fire but instead you take damage! The damage is set to 5 but since you need to press right-click again to disable aim, you get a total of 10 damage. Avoid using ironsight and use your noscope skills!
So this script "noaim" doesn't disable you to aim nor use secondary fire but instead you take damage! The damage is set to 5 but since you need to press right-click again to disable aim, you get a total of 10 damage. Avoid using ironsight and use your noscope skills!
Code: Select all
Enjoy :>"""
noaim script by tobi9sc
"""
def apply_script(protocol,connection,config):
class noaimConnection(connection):
def on_secondary_fire_set(self, secondary):
if self.hp>=10:
self.hit(5)
self.send_chat("Avoid using ironsight!")
return connection.on_secondary_fire_set(self, secondary)
return protocol, noaimConnection