Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. TEAM_MEDIC = DarkRP.createJob("Medic", {
  2. color = Color(0, 178, 255, 255),
  3. model = {"models/player/Group03m/male_04.mdl"},
  4. description = [[Heal people for free! or charge them!]],
  5. weapons = {},
  6. command = "medic",
  7. max = 2,
  8. salary = 100,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. -- CustomCheck
  14. medic = true,
  15. chief = false,
  16. mayor = false,
  17. hobo = false,
  18. cook = false,
  19. })
  20.  
  21. TEAM_GANGSTER = DarkRP.createJob("Gangster", {
  22. color = Color(113, 114, 109, 255),
  23. model = {"models/player/Group03/male_07.mdl"},
  24. description = [[You are a gangsta!]],
  25. weapons = {},
  26. command = "gangster",
  27. max = 5,
  28. salary = 10,
  29. admin = 0,
  30. vote = false,
  31. hasLicense = false,
  32. candemote = false,
  33. -- CustomCheck
  34. medic = false,
  35. chief = false,
  36. mayor = false,
  37. hobo = false,
  38. cook = false,
  39. })
  40.  
  41. TEAM_THEIF = DarkRP.createJob("Theif", {
  42. color = Color(113, 114, 109, 255),
  43. model = {"models/player/gman_high.mdl"},
  44. description = [[You are a theif! Mug and rob and kidnap for a living!]],
  45. weapons = {"keypad_cracker", "lockpick"},
  46. command = "theif",
  47. max = 8,
  48. salary = 68,
  49. admin = 0,
  50. vote = false,
  51. hasLicense = false,
  52. candemote = false,
  53. -- CustomCheck
  54. medic = false,
  55. chief = false,
  56. mayor = false,
  57. hobo = false,
  58. cook = false,
  59. })
  60.  
  61. TEAM_POLICEOFFICER = DarkRP.createJob("Police officer", {
  62. color = Color(54, 96, 247, 255),
  63. model = {"models/player/police.mdl"},
  64. description = [[The protector of every citizen that lives in the city. You have the power to arrest criminals and protect innocents. Hit them with your arrest baton to put them in jail. Bash them with a stunstick and they might learn better than to disobey the law.]],
  65. weapons = {"arrest_stick", "unarrest_stick", "stunstick", "door_ram", "weaponchecker"},
  66. command = "policeofficer",
  67. max = 5,
  68. salary = 10,
  69. admin = 0,
  70. vote = true,
  71. hasLicense = false,
  72. candemote = false,
  73. -- CustomCheck
  74. medic = false,
  75. chief = false,
  76. mayor = false,
  77. hobo = false,
  78. cook = false,
  79. })
  80.  
  81. TEAM_SWAT = DarkRP.createJob("Swat", {
  82. color = Color(25, 25, 170, 255),
  83. model = {"models/player/swat.mdl"},
  84. description = [[The protector of every citizen that lives in the city.
  85. You have the power to arrest criminals and protect innocents.
  86. Hit a player with your arrest baton to put them in jail.
  87. Bash a player with a stunstick and they may learn to obey the law.
  88. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  89. The Battering Ram can also unfreeze frozen props (if enabled).
  90. Type /wanted <name> to alert the public to the presence of a criminal.]],
  91. weapons = {"arrest_stick", "unarrest_stick", "m9k_m92beretta", "stunstick", "door_ram", "m9k_m16a4_acog", "weaponchecker"},
  92. command = "Swat",
  93. max = 4,
  94. salary = 85,
  95. admin = 0,
  96. vote = true,
  97. hasLicense = true,
  98. candemote = false,
  99. -- CustomCheck
  100. medic = false,
  101. chief = false,
  102. mayor = false,
  103. hobo = false,
  104. cook = false,
  105. })
  106.  
  107. TEAM_MOBBOSS = DarkRP.createJob("Mob boss", {
  108. color = Color(113, 114, 109, 255),
  109. model = {"models/player/gman_high.mdl"},
  110. description = [[You are the leader of the gangsters! you give orders to your minions!]],
  111. weapons = {"keypad_cracker", "lockpick", "m9k_deagle", "unarrest_stick"},
  112. command = "mobboss",
  113. max = 1,
  114. salary = 10,
  115. admin = 0,
  116. vote = false,
  117. hasLicense = false,
  118. candemote = false,
  119. -- CustomCheck
  120. medic = false,
  121. chief = false,
  122. mayor = false,
  123. hobo = false,
  124. cook = false,
  125. })
  126.  
  127. TEAM_zombie = AddExtraTeam("zombie", Color(0,0,0,255),"models/player/zombie_classic.mdl", [[BE A ZOMBIE AND SAY "YABA MY ICEING!!!" "AGH..."]], {"m9k_knife"}, "zombie", 1, 50, 0, true)
  128. //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement