Advertisement
Guest User

Job

a guest
Aug 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.48 KB | None | 0 0
  1. TEAM_BANKM = DarkRP.createJob("Bank Manager", {
  2. color = Color(0, 0, 0, 255),
  3. model = {"models/player/shaun.mdl"},
  4. description = [[You are a Bank Manager, Go Manager a Bank!]],
  5. weapons = {"weapon_fists","itemstore_pickup"},
  6. command = "BankM",
  7. max = 1,
  8. salary = 50,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = true,
  13. category = "The Good"
  14. })
  15.  
  16. TEAM_BANKG = DarkRP.createJob("Bank Guard", {
  17. color = Color(0, 0, 0, 255),
  18. model = {"models/player/macdguy.mdl"},
  19. description = [[You are a Bank Guard, Go guard the bank!]],
  20. weapons = {"weapon_fists", "m9k_usc","itemstore_pickup"},
  21. command = "BankG",
  22. max = 2,
  23. salary = 50,
  24. admin = 0,
  25. vote = false,
  26. hasLicense = true,
  27. candemote = true,
  28. category = "The Good"
  29. })
  30.  
  31. TEAM_BODYG = DarkRP.createJob("Body Guard", {
  32. color = Color(0, 0, 0, 255),
  33. model = {"models/player/smith.mdl"},
  34. description = [[You are a Body Guard, Go guard someone!]],
  35. weapons = {"weapon_fists", "m9k_m3","itemstore_pickup"},
  36. command = "BodyG",
  37. max = 2,
  38. salary = 50,
  39. admin = 0,
  40. vote = false,
  41. hasLicense = true,
  42. candemote = true,
  43. category = "The Good"
  44. })
  45.  
  46. TEAM_THIEF = DarkRP.createJob("Thief", {
  47. color = Color(0, 0, 0, 255),
  48. model = {"models/player/group01/cookies114.mdl"},
  49. description = [[You are a Thief, Go raid, mug and Kill people!]],
  50. weapons = {"weapon_fists", "weapon_sh_keypadcracker_deploy", "lockpick", "itemstore_pickup"},
  51. command = "Thief",
  52. max = 10,
  53. salary = 50,
  54. admin = 0,
  55. vote = false,
  56. hasLicense = false,
  57. candemote = true,
  58. category = "The Bad"
  59. })
  60.  
  61. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  62. color = Color(0, 0, 0, 255),
  63. model = {"models/player/rorschach.mdl"},
  64. description = [[You are a Hitman, Go get some Hits and kill some people!]],
  65. weapons = {"weapon_fists", "itemstore_pickup", "m9k_m24"},
  66. command = "Hitman",
  67. max = 2,
  68. salary = 50,
  69. admin = 0,
  70. vote = true,
  71. hasLicense = true,
  72. candemote = true,
  73. category = "The Bad"
  74. })
  75.  
  76. TEAM_LIGHTGUNDEALER = DarkRP.createJob("Light Gun Dealer", {
  77. color = Color(0, 55, 255, 255),
  78. model = {"models/player/zoey.mdl"},
  79. description = [[You are a Light Gun Dealer, Setup a store and Sell Weapons!]],
  80. weapons = {"weapon_fists","itemstore_pickup"},
  81. command = "GunL",
  82. max = 2,
  83. salary = 40,
  84. admin = 0,
  85. vote = false,
  86. hasLicense = true,
  87. candemote = true,
  88. category = "The Dealers"
  89. })
  90.  
  91. TEAM_HEAVYGUNDEALER = DarkRP.createJob("Heavy Gun Dealer", {
  92. color = Color(0, 55, 255, 255),
  93. model = {"models/player/billymays.mdl"},
  94. description = [[You are a Heavy Gun Dealer, Setup a store and Sell Weapons!]],
  95. weapons = {"weapon_fists","itemstore_pickup"},
  96. command = "GunH",
  97. max = 2,
  98. salary = 50,
  99. admin = 0,
  100. vote = false,
  101. hasLicense = true,
  102. candemote = true,
  103. category = "The Dealers"
  104. })
  105.  
  106. TEAM_POLICEO = DarkRP.createJob("Police Officer", {
  107. color = Color(0, 0, 0, 255),
  108. model = {"models/player/londoncop/londoncop_01.mdl"},
  109. description = [[You are a Police Officer, Stop crimes and protect the PD!]],
  110. weapons = {"weapon_fists", "itemstore_pickup", "weapon_cuff_police", "m9k_m92beretta", "m9k_remington870"},
  111. command = "Police",
  112. max = 4,
  113. salary = 50,
  114. admin = 0,
  115. vote = false,
  116. hasLicense = true,
  117. candemote = true,
  118. category = "The Government"
  119. })
  120.  
  121. TEAM_POLICEC = DarkRP.createJob("Police Chief", {
  122. color = Color(0, 0, 0, 255),
  123. model = {"models/player/londoncop/londoncop_02.mdl"},
  124. description = [[You are a Police Chief, Command the Police officers, stop crimes and protect the PD!]],
  125. weapons = {"weapon_fists", "itemstore_pickup", "weapon_cuff_police", "m9k_m4a1", "m9k_m92beretta"},
  126. command = "Chief",
  127. max = 1,
  128. salary = 50,
  129. admin = 0,
  130. vote = true,
  131. hasLicense = true,
  132. candemote = true,
  133. category = "The Government"
  134. })
  135.  
  136. TEAM_SWATO = DarkRP.createJob("Swat Officer", {
  137. color = Color(0, 0, 0, 255),
  138. model = {"models/bloocobalt/player/l4d/riot_02.mdl"},
  139. description = [[You are a Swat Officer, Stop crimes and protect the PD!]],
  140. weapons = {"weapon_fists", "itemstore_pickup", "weapon_cuff_police", "m9k_usp", "m9k_mp5sd"},
  141. command = "Swat",
  142. max = 4,
  143. salary = 50,
  144. admin = 0,
  145. vote = false,
  146. hasLicense = true,
  147. candemote = true,
  148. category = "The Government"
  149. })
  150.  
  151. TEAM_SWATL = DarkRP.createJob("Swat Leader", {
  152. color = Color(0, 0, 0, 255),
  153. model = {"models/bloocobalt/player/l4d/riot_09.mdl"},
  154. description = [[You are a Swat Commander, Command the Swat officers, stop crimes and protect the PD!]],
  155. weapons = {"weapon_fists", "itemstore_pickup", "weapon_cuff_police", "m9k_g36", "m9k_usp"},
  156. command = "swatl",
  157. max = 4,
  158. salary = 50,
  159. admin = 0,
  160. vote = true,
  161. hasLicense = true,
  162. candemote = true,
  163. category = "The Government"
  164. })
  165.  
  166. TEAM_MAYOR = DarkRP.createJob("Mayor", {
  167. color = Color(0, 0, 0, 255),
  168. model = {"models/fearless/mayor1.mdl"},
  169. description = [[You are the Mayor, Tell the Police and Swat what to do also control the town!]],
  170. weapons = {"weapon_fists", "itemstore_pickup"},
  171. command = "Mayor",
  172. max = 1,
  173. salary = 50,
  174. admin = 0,
  175. vote = true,
  176. hasLicense = true,
  177. candemote = true,
  178. category = "The Government"
  179. })
  180.  
  181. TEAM_BLOODZL = DarkRP.createJob("Bloodz Leader", {
  182. color = Color(0, 0, 0, 255),
  183. model = {"models/player/bloodz/slow_1.mdl"},
  184. description = [[You are the Bloodz Leader, Tell the Bloodz Members what to do also you hate the Cripz!]],
  185. weapons = {"weapon_fists", "itemstore_pickup", "lockpick", "m9k_uzi"},
  186. command = "BloodzL",
  187. max = 1,
  188. salary = 50,
  189. admin = 0,
  190. vote = true,
  191. hasLicense = false,
  192. candemote = true,
  193. category = "The Bloodz and Cripz"
  194. })
  195.  
  196. TEAM_BLOODZM = DarkRP.createJob("Bloodz Member", {
  197. color = Color(0, 0, 0, 255),
  198. model = {"models/player/bloodz/slow_2.mdl", "models/player/bloodz/slow_3.mdl"},
  199. description = [[You are the Bloodz Member, Get told from Bloodz Leader what to do also you hate the Cripz!]],
  200. weapons = {"weapon_fists", "itemstore_pickup", "lockpick", "m9k_glock"},
  201. command = "BloodzM",
  202. max = 4,
  203. salary = 50,
  204. admin = 0,
  205. vote = false,
  206. hasLicense = false,
  207. candemote = true,
  208. category = "The Bloodz and Cripz"
  209. })
  210.  
  211. TEAM_CRIPZL = DarkRP.createJob("Cripz Leader", {
  212. color = Color(0, 0, 0, 255),
  213. model = {"models/player/cripz/slow_1.mdl"},
  214. description = [[You are the Crips Leader, Tell the Crips Members what to do also you hate the Bloodz!]],
  215. weapons = {"weapon_fists", "itemstore_pickup", "lockpick", "m9k_uzi"},
  216. command = "CripzL",
  217. max = 1,
  218. salary = 50,
  219. admin = 0,
  220. vote = true,
  221. hasLicense = false,
  222. candemote = true,
  223. category = "The Bloodz and Cripz"
  224. })
  225.  
  226. TEAM_CRIPZM = DarkRP.createJob("Cripz Member", {
  227. color = Color(0, 0, 0, 255),
  228. model = {"models/player/cripz/slow_1.mdl", "models/player/cripz/slow_3.mdl"},
  229. description = [[You are the Cripz Member, Get told by Cripz Leader what to do also you hate the Bloodz!]],
  230. weapons = {"weapon_fists", "itemstore_pickup", "lockpick", "m9k_glock"},
  231. command = "CripzM",
  232. max = 4,
  233. salary = 50,
  234. admin = 0,
  235. vote = false,
  236. hasLicense = false,
  237. candemote = true,
  238. category = "The Bloodz and Cripz"
  239. })
  240.  
  241. TEAM_MOBBOSS = DarkRP.createJob("Mob Boss", {
  242. color = Color(0, 0, 0, 255),
  243. model = {"models/humans/mafia/male_08.mdl"},
  244. description = [[You are a Mob Boss, Tell the Mob Members what to do!]],
  245. weapons = {"weapon_fists", "itemstore_pickup", "lockpick", "unarrest_stick"},
  246. command = "MobB",
  247. max = 1,
  248. salary = 50,
  249. admin = 0,
  250. vote = true,
  251. hasLicense = false,
  252. candemote = true,
  253. category = "The Mob"
  254. })
  255.  
  256. TEAM_MOBMEMBER = DarkRP.createJob("Mob Member", {
  257. color = Color(0, 0, 0, 255),
  258. model = {"models/humans/mafia/male_02.mdl"},
  259. description = [[You are a Mob Member, Get told by the Mob Boss what to do!]],
  260. weapons = {"weapon_fists", "itemstore_pickup", "lockpick"},
  261. command = "MobM",
  262. max = 4,
  263. salary = 50,
  264. admin = 0,
  265. vote = false,
  266. hasLicense = false,
  267. candemote = true,
  268. category = "The Mob"
  269. })
  270.  
  271. TEAM_STAFF = DarkRP.createJob("Staff On Duty", {
  272. color = Color(0, 0, 0, 255),
  273. model = {"models/player/anon/anon.mdl"},
  274. description = [[You are staff.]],
  275. weapons = {},
  276. command = "sod",
  277. max = 0,
  278. salary = 0,
  279. admin = 0,
  280. vote = false,
  281. hasLicense = false,
  282. candemote = false,
  283. category = "Staff",
  284. customCheck = function(ply) return ply:IsUserGroup("Owner","superadmin","TMod","Mod","TAdmin","Admin") end,
  285. CustomCheckFailMsg = "This is staff only!",
  286. })
  287.  
  288. TEAM_PROTHIEF = DarkRP.createJob("Pro Thief", {
  289. color = Color(0, 0, 0, 255),
  290. model = {"models/player/spike/robber.mdl"},
  291. description = [[You are a Pro thief, you are better than a normal thief so go rob people and raid them!]],
  292. weapons = {},
  293. command = "Prothief",
  294. max = 4,
  295. salary = 50,
  296. admin = 0,
  297. vote = false,
  298. hasLicense = false,
  299. candemote = true,
  300. category = "VIP",
  301. customCheck = function(ply) return ply:IsUserGroup("Owner","superadmin","Admin") end,
  302. CustomCheckFailMsg = "This is VIP only!!",
  303. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement