Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class MinOut:
- @staticmethod
- def GetName():
- return "Min Out"
- @staticmethod
- def ApplyTo(human):
- #human.model = ""
- human.health = 50; #MIN 50
- human.armor = 0; #MIN 0
- human.cash = 0; #MIN 0
- human.speed = 1; #MIN 1
- human.setPrimaryAmmo(0) #MIN 0
- human.setPrimaryClip(0) #MIN 0
- human.setSecondaryAmmo(0) #MIN 0
- human.setSecondaryClip(0) #MIN 0
- human.he = 0 #MIN 0 [EXPLOSIVE]
- human.fb = 0 #MIN 0 [FLASH]
- human.sg = 0 #MIN 0 [SMOKE]
- human.noblock = 1 #ALWAYS 1
- human.freeze = 0 #DEFAULT 0
- human.godmode = 0 #DEFAULT 0
- class MaxOut:
- @staticmethod
- def GetName():
- return "Max Out"
- @staticmethod
- def ApplyTo(human):
- #human.model = ""
- human.health = 500; #MAX 500
- human.armor = 100; #MAX 100
- human.cash = 999999; #MAX 999999
- human.speed = 5; #MAX 5
- human.setPrimaryAmmo(100) #MAX 100
- human.setPrimaryClip(200) #MAX 2000
- human.setSecondaryAmmo(50) #MAX 50
- human.setSecondaryClip(1000) #MAX 1000
- human.he = 5 #MAX 5 [EXPLOSIVE]
- human.fb = 10 #MAX 10 [FLASH]
- human.sg = 10 #MAX 10 [SMOKE]
- human.noblock = 1 #ALWAYS 1
- human.freeze = 0 #DEFAULT 0
- human.godmode = 0 #DEFAULT 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement