Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. HEAVYSWAT = DarkRP.createJob("Heavy SWAT", {
  2. color = Color(255, 140, 0, 255),
  3. model = "models/player/ct_sas.mdl",
  4. description = [[Has the same duty as the SWAT, but has a Machine Gun instead.]],
  5. weapons = {"weapon_arc_atmcard","m9k_m249lmg","arrest_stick","unarrest_stick","stunstick" },
  6. command = "heavyswat",
  7. max = 2,
  8. salary = GAMEMODE.Config.normalsalary,
  9. admin = 0,
  10. vote = true,
  11. hasLicense = false,
  12. category = "Officials",
  13. })
  14.  
  15. PRISONGUARD = DarkRP.createJob("Prison Guard", {
  16. color = Color(255, 140, 0, 255),
  17. model = "models/player/barney.mdl",
  18. description = [[Keep those pesky criminals in their cells.]],
  19. weapons = {"weapon_arc_atmcard", "stunstick", "arrest_stick"},
  20. command = "prisonguard",
  21. max = 2,
  22. salary = GAMEMODE.Config.normalsalary,
  23. admin = 0,
  24. vote = true,
  25. hasLicense = false,
  26. category = "Officials",
  27. })
  28.  
  29. PIANIST = DarkRP.createJob("Pianist", {
  30. color = Color(255, 140, 0, 255),
  31. model = "models/player/hostage/hostage_01.mdl",
  32. description = [[Play the piano with all your heart.]],
  33. weapons = {"weapon_arc_atmcard"},
  34. command = "pianist",
  35. max = 1,
  36. salary = GAMEMODE.Config.normalsalary,
  37. admin = 0,
  38. vote = false,
  39. hasLicense = false,
  40. category = "Citizens",
  41. })
  42.  
  43. BODYGUARD = DarkRP.createJob("Bodyguard", {
  44. color = Color(255, 140, 0, 255),
  45. model = "models/player/combine_super_soldier.mdl",
  46. description = [[Protect the mayor with everything it takes.]],
  47. weapons = {"weapon_arc_atmcard", "stunstick","m9k_glock","arrest_stick"},
  48. command = "bodyguard",
  49. max = 2,
  50. salary = GAMEMODE.Config.normalsalary,
  51. admin = 0,
  52. vote = true,
  53. hasLicense = false,
  54. category = "Officials",
  55. })
  56.  
  57. KIDNAPPER = DarkRP.createJob("Kidnapper", {
  58. color = Color(255, 140, 0, 255),
  59. model = "models/player/t_phoenix.mdl",
  60. description = [[Kidnap anyone you want, don't forget to advert it.]],
  61. weapons = {"weapon_arc_atmcard", "weapon_cuff_rope" ,"m9k_colt1911"},
  62. command = "kidnapper",
  63. max = 2,
  64. salary = GAMEMODE.Config.normalsalary,
  65. admin = 0,
  66. vote = false,
  67. hasLicense = false,
  68. category = "Gangsters",
  69. })
  70.  
  71. HOBOBOSS = DarkRP.createJob("Hobo Boss", {
  72. color = Color(255, 140, 0, 255),
  73. model = "models/player/charple.mdl",
  74. description = [[Lead your fellow Hobos in to battle!.]],
  75. weapons = {"weapon_arc_atmcard","weapon_bugbait","m9k_fists"},
  76. command = "hoboboss",
  77. max = 1,
  78. salary = GAMEMODE.Config.normalsalary,
  79. admin = 0,
  80. vote = false,
  81. hasLicense = false,
  82. category = "Citizens",
  83. })
  84.  
  85. CLUBMANAGER = DarkRP.createJob("Club Manager", {
  86. color = Color(255, 140, 0, 255),
  87. model = "models/player/hostage/hostage_02.mdl",
  88. description = [[Manage the club as you please.]],
  89. weapons = {"weapon_arc_atmcard","m9k_m92beretta"},
  90. command = "clubmanager",
  91. max = 1,
  92. salary = GAMEMODE.Config.normalsalary,
  93. admin = 0,
  94. vote = false,
  95. hasLicense = false,
  96. category = "Citizens",
  97. })
  98.  
  99. SWATSNIPER = DarkRP.createJob("SWAT Sniper", {
  100. color = Color(255, 140, 0, 255),
  101. model = "models/player/combine_soldier_prisonguard.mdl",
  102. description = [[Has the same duty as the SWAT, but has a Sniper Rifle instead.]],
  103. weapons = {"weapon_arc_atmcard", "m9k_aw50","arrest_stick","unarrest_stick","stunstick"},
  104. command = "swatsniper",
  105. max = 1,
  106. salary = GAMEMODE.Config.normalsalary,
  107. admin = 0,
  108. vote = true,
  109. hasLicense = false,
  110. category = "Officials",
  111. })
  112.  
  113. LANDLORD = DarkRP.createJob("Land Lord", {
  114. color = Color(255, 140, 0, 255),
  115. model = "models/player/hostage/hostage_03.mdl",
  116. description = [[Manage 1 of the 4 apartment complexes.]],
  117. weapons = {"weapon_arc_atmcard","m9k_fists"},
  118. command = "landlord",
  119. max = 4,
  120. salary = GAMEMODE.Config.normalsalary,
  121. admin = 0,
  122. vote = false,
  123. hasLicense = false,
  124. category = "Citizens",
  125. })
  126.  
  127. TERRORIST = DarkRP.createJob("Terrorist", {
  128. color = Color(255, 140, 0, 255),
  129. model = "http://steamcommunity.com/sharedfiles/filedetails/?id=208348503&searchtext=Terrorist+player+model",
  130. description = [[Fuck shit up! Build on the streets(Expect the Officials to arrest you) and cause mayhem. Advert suicide bomb and grenade before using them.]],
  131. weapons = {"weapon_arc_atmcard","m9k_suicide_bomb","m9k_sticky_grenade"},
  132. command = "terrorist",
  133. max = 3,
  134. salary = GAMEMODE.Config.normalsalary,
  135. admin = 0,
  136. vote = false,
  137. hasLicense = false,
  138. category = "Gangster",
  139. })
  140.  
  141. ROBBER = DarkRP.createJob("Robber", {
  142. color = Color(255, 140, 0, 255),
  143. model = "http://steamcommunity.com/sharedfiles/filedetails/?id=213276429&searchtext=robber+player+model",
  144. description = [[A regular thief with a better weapon making it easier to rob the bank and stores.]],
  145. weapons = {"weapon_arc_atmcard""m9k_glock"},
  146. command = "robber",
  147. max = 4,
  148. salary = GAMEMODE.Config.normalsalary,
  149. admin = 0,
  150. vote = false,
  151. hasLicense = false,
  152. category = "Gangsters",
  153. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement