Advertisement
Guest User

Untitled

a guest
May 25th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. --- All Jobs:
  2. -- [ALL USERS]
  3. -- Theif,Abductor,Alyx,Hitman,Swat,Secret Service,Hobo,Citizen,Mayor
  4. -- [VIP]
  5. -- Assassin,Expierienced Theif,
  6. -- [ADMIN/SUPERADMIN]
  7. -- Administrator
  8.  
  9. TEAM_THEIF = DarkRP.createJob("Theif", {
  10. color = Color(80, 96, 239, 255),
  11. model = {"models/player/guerilla.mdl"},
  12. description = [[Steal other players Plants and Legal Printers!]],
  13. weapons = {"lockpick"},
  14. command = "theif",
  15. max = 10,
  16. salary = 200,
  17. admin = 0,
  18. vote = false,
  19. hasLicense = false,
  20. candemote = true,
  21. -- CustomCheck
  22. medic = false,
  23. chief = false,
  24. mayor = false,
  25. hobo = false,
  26. cook = false,
  27. category = "Criminals",
  28. })
  29.  
  30. TEAM_ALYX = DarkRP.createJob("Alyx the Lioness", {
  31. color = Color(90, 255, 126, 255)
  32. model = {"models/player/alyx.mdl"},
  33. description = [[You are a maniac! Help other bandits in the charge to taking over the town!]],
  34. weapons = {"pro_lockpick,m9k_ak47"},
  35. command = "alyx",
  36. max = 2,
  37. salary = 4,500,
  38. admin = 0,
  39. vote = false,
  40. hasLicense = false,
  41. candemote = true,
  42. -- CustomCheck
  43. medic = false,
  44. chief = false,
  45. mayor = false,
  46. hobo = false,
  47. cook = false,
  48. category = "Criminals",
  49. })
  50. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  51. color = Color(81, 45, 94, 255),
  52. model = {"models/player/leet.mdl"},
  53. description = [[In Secret take your hits out for clients and do not fail!]],
  54. weapons = {"m9k_uzi"},
  55. command = "hitman",
  56. max = 5,
  57. salary = 450,
  58. admin = 0,
  59. vote = false,
  60. hasLicense = false,
  61. candemote = true,
  62. -- CustomCheck
  63. medic = false,
  64. chief = false,
  65. mayor = false,
  66. hobo = false,
  67. cook = false,
  68. category = "Criminal",
  69. })
  70.  
  71. TEAM_SWAT = DarkRP.createJob("SWAT - CP", {
  72. color = Color(5, 43, 239, 255),
  73. model = {"models/player/swat.mdl"},
  74. description = [[Patrol the Town and make sure the Mayor stays alive!]],
  75. weapons = {"m9k_mp5sd"},
  76. command = "swat",
  77. max = 7,
  78. salary = 2500,
  79. admin = 0,
  80. vote = true,
  81. hasLicense = true,
  82. candemote = true,
  83. -- CustomCheck
  84. medic = false,
  85. chief = false,
  86. mayor = false,
  87. hobo = false,
  88. cook = false,
  89. category = "Civil Protection",
  90. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement