Advertisement
Guest User

DSDF

a guest
Nov 20th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. TEAM_SOD = DarkRP.createJob("Staff On Duty", {
  2. color = Color(250, 0, 0),
  3. model = {"models/Combine_Super_Soldier.mdl"},
  4. description = [[The Job Especially For Staff!]],
  5. weapons = {"weapon_keypadchecker", "arrest_stick", "weaponchecker", "unarrest_stick", "stunstick"},
  6. command = "sod",
  7. max = 10,
  8. salary = 1000,
  9. admin = 1,
  10. vote = false,
  11. hasLicense = true,
  12.  
  13. })
  14. TEAM_GANGSTERS = DarkRP.createJob("Rapist", {
  15. color = Color(105, 178, 49),
  16. model = {"models/obese_male.mdl"},
  17. description = [[Let All Your Sexual Desires Make Way, As 12 Inches Sinks Into Your Victim!]],
  18. weapons = {"weapon_rape"},
  19. command = "rapist",
  20. max = 3,
  21. salary = 60,
  22. admin = 0,
  23. vote = True,
  24. hasLicense = False,
  25.  
  26. })
  27. TEAM_THIEF = DarkRP.createJob("Thief", {
  28. color = Color(56, 209, 209),
  29. model = {"models/player/phoenix.mdl"},
  30. description = [[1,2,3,4, How Many Printers Are Behind This Door?]],
  31. weapons = {"lockpick", "m9k_glock", "keypad_cracker", "csgo_m9_bluesteel"},
  32. command = "thief",
  33. max = 6,
  34. salary = 75,
  35. admin = 0,
  36. vote = True,
  37. hasLicense = False,
  38.  
  39. })
  40. TEAM_HEAVY = DarkRP.createJob("Juggernaut", {
  41. color = Color(128, 79, 255),
  42. model = {"models/juggerjaut_player.mdl"},
  43. description = [[This Is The Greatest Police Unit There Is. Handle With Care, Slaughter With Precision!]],
  44. weapons = {"m9k_m249lmg", "m9k_jackhammer","m9k_ex41", "pro_lockpick", "arrest_stick", "unarrest_stick", "prokeypadcracker", "door_ram", "realrbn_tazer_mr"},
  45. command = "juggernaut",
  46. max = 1,
  47. salary = 1000,
  48. admin = 0,
  49. vote = True,
  50. hasLicense = True,
  51. customCheck = function(ply) return CLIENT or table.HasValue({"VIP"}, ply:GetUserGroup()) or ply:IsAdmin() end,
  52. CustomCheckFailMsg = "These Job's Don't Grow On Trees Bud! Now Go And PAY!"
  53. })
  54. TEAM_XENO = DarkRP.createJob("Xenomorph", {
  55. color = Color(244, 72, 66),
  56. model = {"models/iffy/alienscm/alien/xeno_lurker_player.mdl"},
  57. description = [[Hunt, Pounce, And Slay Your Prey Then Claw Your Victim To The Bone!]],
  58. weapons = {"weapon_pet", "parkourmod"},
  59. command = "juggernaut",
  60. max = 3,
  61. salary = 95,
  62. admin = 0,
  63. vote = True,
  64. hasLicense = False,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement