Advertisement
captmicro

Untitled

Jun 30th, 2011
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.15 KB | None | 0 0
  1. class MinOut:
  2.     @staticmethod
  3.     def GetName():
  4.         return "Min Out"
  5.     @staticmethod
  6.     def ApplyTo(human):
  7.         #human.model = ""
  8.         human.health = 50; #MIN 50
  9.         human.armor = 0; #MIN 0
  10.         human.cash = 0; #MIN 0
  11.         human.speed = 1; #MIN 1
  12.         human.setPrimaryAmmo(0) #MIN 0
  13.         human.setPrimaryClip(0) #MIN 0
  14.         human.setSecondaryAmmo(0) #MIN 0
  15.         human.setSecondaryClip(0) #MIN 0
  16.         human.he = 0 #MIN 0 [EXPLOSIVE]
  17.         human.fb = 0 #MIN 0 [FLASH]
  18.         human.sg = 0 #MIN 0 [SMOKE]
  19.         human.noblock = 1 #ALWAYS 1
  20.         human.freeze = 0 #DEFAULT 0
  21.         human.godmode = 0 #DEFAULT 0
  22.  
  23. class MaxOut:
  24.     @staticmethod
  25.     def GetName():
  26.         return "Max Out"
  27.     @staticmethod
  28.     def ApplyTo(human):
  29.         #human.model = ""
  30.         human.health = 500; #MAX 500
  31.         human.armor = 100; #MAX 100
  32.         human.cash = 999999; #MAX 999999
  33.         human.speed = 5; #MAX 5
  34.         human.setPrimaryAmmo(100) #MAX 100
  35.         human.setPrimaryClip(200) #MAX 2000
  36.         human.setSecondaryAmmo(50) #MAX 50
  37.         human.setSecondaryClip(1000) #MAX 1000
  38.         human.he = 5 #MAX 5 [EXPLOSIVE]
  39.         human.fb = 10 #MAX 10 [FLASH]
  40.         human.sg = 10 #MAX 10 [SMOKE]
  41.         human.noblock = 1 #ALWAYS 1
  42.         human.freeze = 0 #DEFAULT 0
  43.         human.godmode = 0 #DEFAULT 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement