Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.25 KB | None | 0 0
  1. TEAM_CO = DarkRP.createJob("Correctional Officer", {
  2. color = Color(0, 178, 255, 255),
  3. model = {"models/player/portal/male_01_security.mdl"},
  4. description = [[You're one of the guards in this wretred place, enjoy fighting off the prisoners and keeping this place secure.]],
  5. weapons = {"fas2_glock20", "arrest_stick", "unarrest_stick"},
  6. command = "co",
  7. max = 5,
  8. salary = 1500,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = true,
  12. candemote = true,
  13. category = "Correctional Officers",
  14. PlayerSpawn = function(ply)
  15. ply:SetMaxHealth(100)
  16. ply:SetHealth(100)
  17. ply:SetArmor(50)
  18. end
  19. })
  20.  
  21. TEAM_SGT = DarkRP.createJob("Correctional Sergeant", {
  22. color = Color(0, 178, 255, 255),
  23. model = {"models/player/portal/male_02_security.mdl"},
  24. description = [[You're one of the guards in this wretred place, enjoy fighting off the prisoners and keeping this place secure.]],
  25. weapons = {"fas2_glock20", "arrest_stick", "unarrest_stick"},
  26. command = "sgt",
  27. max = 4,
  28. salary = 1999,
  29. admin = 0,
  30. vote = false,
  31. hasLicense = true,
  32. candemote = true,
  33. category = "Correctional Officers",
  34. PlayerSpawn = function(ply)
  35. ply:SetMaxHealth(100)
  36. ply:SetHealth(100)
  37. ply:SetArmor(50)
  38. end
  39. })
  40.  
  41. TEAM_LT = DarkRP.createJob("Correctional Lieutenant", {
  42. color = Color(0, 178, 255, 255),
  43. model = {
  44. "models/player/portal/male_01_security.mdl",
  45. "models/player/portal/male_02_security.mdl",
  46. "models/player/portal/male_03_security.mdl",
  47. "models/player/portal/male_04_security.mdl",
  48. "models/player/portal/male_05_security.mdl",
  49. "models/player/portal/male_06_security.mdl",
  50. "models/player/portal/male_07_security.mdl",
  51. "models/player/portal/male_08_security.mdl",
  52. "models/player/portal/male_09_security.mdl"
  53. },
  54. description = [[You're one of the guards in this wretred place, enjoy fighting off the prisoners and keeping this place secure.]],
  55. weapons = {"fas2_glock20", "fas2_g36c", "arrest_stick", "unarrest_stick"},
  56. command = "lt",
  57. max = 4,
  58. salary = 2500,
  59. admin = 0,
  60. vote = false,
  61. hasLicense = true,
  62. candemote = true,
  63. category = "Correctional Officers",
  64. PlayerSpawn = function(ply)
  65. ply:SetMaxHealth(100)
  66. ply:SetHealth(100)
  67. ply:SetArmor(50)
  68. end
  69. })
  70.  
  71. TEAM_CPT = DarkRP.createJob("Correctional Captain", {
  72. color = Color(0, 178, 255, 255),
  73. model = {
  74. "models/player/portal/male_01_security.mdl",
  75. "models/player/portal/male_02_security.mdl",
  76. "models/player/portal/male_03_security.mdl",
  77. "models/player/portal/male_04_security.mdl",
  78. "models/player/portal/male_05_security.mdl",
  79. "models/player/portal/male_06_security.mdl",
  80. "models/player/portal/male_07_security.mdl",
  81. "models/player/portal/male_08_security.mdl",
  82. "models/player/portal/male_09_security.mdl"
  83. },
  84. description = [[You're one of the guards in this wretred place, enjoy fighting off the prisoners and keeping this place secure.]],
  85. weapons = {"fas2_glock20", "fas2_g36c", "arrest_stick", "unarrest_stick"},
  86. command = "cpt",
  87. max = 4,
  88. salary = 2500,
  89. admin = 0,
  90. vote = false,
  91. hasLicense = true,
  92. candemote = true,
  93. category = "Correctional Officers",
  94. PlayerSpawn = function(ply)
  95. ply:SetMaxHealth(100)
  96. ply:SetHealth(100)
  97. ply:SetArmor(50)
  98. end
  99. })
  100.  
  101. TEAM_MJR = DarkRP.createJob("Correctional Major", {
  102. color = Color(0, 178, 255, 255),
  103. model = {
  104. "models/player/portal/male_01_security.mdl",
  105. "models/player/portal/male_02_security.mdl",
  106. "models/player/portal/male_03_security.mdl",
  107. "models/player/portal/male_04_security.mdl",
  108. "models/player/portal/male_05_security.mdl",
  109. "models/player/portal/male_06_security.mdl",
  110. "models/player/portal/male_07_security.mdl",
  111. "models/player/portal/male_08_security.mdl",
  112. "models/player/portal/male_09_security.mdl"
  113. },
  114. description = [[You're one of the guards in this wretred place, enjoy fighting off the prisoners and keeping this place secure.]],
  115. weapons = {"fas2_m4a1", "fas2_deagle"},
  116. command = "mjr",
  117. max = 2,
  118. salary = 2500,
  119. admin = 0,
  120. vote = false,
  121. hasLicense = true,
  122. candemote = true,
  123. category = "Correctional Officers",
  124. PlayerSpawn = function(ply)
  125. ply:SetMaxHealth(100)
  126. ply:SetHealth(100)
  127. ply:SetArmor(50)
  128. end
  129. })
  130.  
  131. TEAM_CHIEF = DarkRP.createJob("Correctional Chief", {
  132. color = Color(0, 178, 255, 255),
  133. model = {
  134. "models/player/portal/male_01_security.mdl",
  135. "models/player/portal/male_02_security.mdl",
  136. "models/player/portal/male_03_security.mdl",
  137. "models/player/portal/male_04_security.mdl",
  138. "models/player/portal/male_05_security.mdl",
  139. "models/player/portal/male_06_security.mdl",
  140. "models/player/portal/male_07_security.mdl",
  141. "models/player/portal/male_08_security.mdl",
  142. "models/player/portal/male_09_security.mdl"
  143. },
  144. description = [[You're one of the guards in this wretred place, enjoy fighting off the prisoners and keeping this place secure.]],
  145. weapons = {"fas2_m4a1", "fas2_deagle", "arrest_stick", "unarrest_stick"},
  146. command = "chief",
  147. max = 1,
  148. salary = 5000,
  149. admin = 0,
  150. vote = false,
  151. hasLicense = true,
  152. candemote = true,
  153. category = "Correctional Officers",
  154. PlayerSpawn = function(ply)
  155. ply:SetMaxHealth(100)
  156. ply:SetHealth(100)
  157. ply:SetArmor(50)
  158. end
  159. })
  160.  
  161. TEAM_PRISONER = DarkRP.createJob("Prisoner", {
  162. color = Color(255, 153, 0, 255),
  163. model = {"models/jbarnes/player/prisoners/jumpsuitm1.mdl"},
  164. description = [[You're basic pal, do your time and get out. Or escape, or make lean, or make pills, or fuck shit up.]],
  165. weapons = {"lockpick_t1"},
  166. command = "prisoner",
  167. max = 0,
  168. salary = 0,
  169. admin = 0,
  170. vote = false,
  171. hasLicense = false,
  172. candemote = false,
  173. category = "Prisoners"
  174. })
  175.  
  176. TEAM_PRISGUNDEALER = DarkRP.createJob("Prison Gundealer", {
  177. color = Color(255, 153, 0, 255),
  178. model = {"models/jbarnes/player/prisoners/jumpsuitm1.mdl"},
  179. description = [[Hello! You're a gundealer, pretty self-expantory. Sell guns you dumbie!]],
  180. weapons = {"lockpick_t1"},
  181. command = "prsiongundealer",
  182. max = 4,
  183. salary = 0,
  184. admin = 0,
  185. vote = true,
  186. hasLicense = false,
  187. candemote = false,
  188. category = "Prisoners"
  189. })
  190.  
  191. TEAM_RAPIST = DarkRP.createJob("Prison Rapist", {
  192. color = Color(0, 133, 255, 255),
  193. model = {"models/jbarnes/player/prisoners/jumpsuitm1.mdl"},
  194. description = [[Of course, you rape people you freak.]],
  195. weapons = {"weapon_rape"},
  196. command = "rapist",
  197. max = 5,
  198. salary = 100,
  199. admin = 0,
  200. vote = true,
  201. hasLicense = true,
  202. candemote = false,
  203. category = "Prisoners"
  204. })
  205.  
  206. TEAM_PRISONHITMAN = DarkRP.createJob("Prison Hitman", {
  207. color = Color(255, 153, 0, 255),
  208. model = {"models/jbarnes/player/prisoners/jumpsuitm1.mdl"},
  209. description = [[Yikes! You're in here for being a hitman, now you're going to be one inside? Goodluck with that of course.
  210. ]],
  211. weapons = {"lockpick_t1", "fas2_deagle"},
  212. command = "prisonhitman",
  213. max = 2,
  214. salary = 0,
  215. admin = 0,
  216. vote = true,
  217. hasLicense = false,
  218. candemote = false,
  219. category = "Prisoners"
  220. })
  221.  
  222. TEAM_SPRISONSENIOR = DarkRP.createJob("[S] Senior Prisoner", {
  223. color = Color(255, 153, 0, 255),
  224. model = {"models/jbarnes/player/prisoners/jumpsuitm1.mdl"},
  225. description = [[You've been here for over 10 years, you've got the power to control the prisoners and if they don't listen to you, you do the dirty work.]],
  226. weapons = {"lockpick_t1", "fas2_dv2"},
  227. command = "seniorprisoner",
  228. max = 5,
  229. salary = 0,
  230. admin = 0,
  231. vote = false,
  232. hasLicense = false,
  233. candemote = false,
  234. donationrank = 1,
  235. category = "Prisoners"
  236. })
  237.  
  238. TEAM_PSC = DarkRP.createJob("Merryweather Protection Member", {
  239. color = Color(51, 0, 255, 255),
  240. model = {"models/kerry/player/merriweather/male_07.mdl"},
  241. description = [[You protect the prisoners if they hire you. You can not kill guards, you protect them against other prisoners.]],
  242. weapons = {"fas2_mp5a5", "fas2_m1911"},
  243. command = "merryweatherprotection",
  244. max = 2,
  245. salary = 0,
  246. admin = 0,
  247. vote = true,
  248. hasLicense = true,
  249. candemote = false,
  250. category = "Prisoners"
  251. })
  252.  
  253. TEAM_PSL = DarkRP.createJob("[S] Merryweather Protection Leader", {
  254. color = Color(51, 0, 255, 255),
  255. model = {"models/kerry/player/merriweather/male_07.mdl"},
  256. description = [[You lead the Merryweather Protect Service, if your members don't listen they can be blacklisted from the job.]],
  257. weapons = {"fas2_m1911", "fas2_rk95"},
  258. command = "merryweatherleader",
  259. max = 2,
  260. salary = 0,
  261. admin = 0,
  262. vote = true,
  263. hasLicense = true,
  264. candemote = false,
  265. donationrank = 1,
  266. category = "Prisoners",
  267. PlayerSpawn = function(ply)
  268. ply:SetMaxHealth(100)
  269. ply:SetHealth(100)
  270. ply:SetArmor(200)
  271. end
  272. })
  273.  
  274. TEAM_PSL = DarkRP.createJob("[S] Fightclub Manager", {
  275. color = Color(255, 184, 0, 255),
  276. model = {"models/player/p2_chell.mdl"},
  277. description = [[You build and lead the fight club, goodluck.]],
  278. weapons = {},
  279. command = "fightclubmanager",
  280. max = 1,
  281. salary = 0,
  282. admin = 0,
  283. vote = false,
  284. hasLicense = false,
  285. donationrank = 1,
  286. candemote = false,
  287. category = "Prisoners",
  288. PlayerSpawn = function(ply)
  289. ply:SetMaxHealth(100)
  290. ply:SetHealth(100)
  291. ply:SetArmor(200)
  292. end
  293. })
  294.  
  295. TEAM_WARDEN = DarkRP.createJob("Warden", {
  296. color = Color(0, 133, 255, 255),
  297. model = {"models/player/breen.mdl"},
  298. description = [[You run the prison! Deal with it!]],
  299. weapons = {"arrest_stick", "unarrest_stick"},
  300. command = "warden",
  301. max = 1,
  302. salary = 6000,
  303. admin = 0,
  304. vote = true,
  305. hasLicense = true,
  306. candemote = false,
  307. category = "Correctional Officers"
  308. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement