Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.76 KB | None | 0 0
  1. TEAM_THIEFS = DarkRP.createJob("Thief Specialist", {
  2. color = Color(0, 0, 0, 255),
  3. model = "models/player/arctic.mdl",
  4. description = [[You are a Specialist among the thiefs, rob people, break into houses and steal printers.
  5. Show the other thiefs how it's done!]],
  6. weapons = {"lockpick"},
  7. command = "thiefspecialist",
  8. max = 1,
  9. salary = 105,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = false,
  13. })
  14. TEAM_THIEFL = DarkRP.createJob("Thief Leader", {
  15. color = Color(0, 0, 0, 255),
  16. model = "models/player/arctic.mdl",
  17. description = [[You are a thief leader, rob people, break into houses and steal printers.
  18. You lead the other Thiefs]],
  19. weapons = {"lockpick"},
  20. command = "thiefleader",
  21. max = 1,
  22. salary = 75,
  23. admin = 0,
  24. vote = false,
  25. hasLicense = false,
  26. })
  27. TEAM_THIEF = DarkRP.createJob("Thief", {
  28. color = Color(0, 0, 0, 255),
  29. model = "models/player/arctic.mdl",
  30. description = [[You are a thief, rob people, break into houses and steal printers]],
  31. weapons = {"lockpick"},
  32. command = "thief",
  33. max = 5,
  34. salary = 65,
  35. admin = 0,
  36. vote = false,
  37. hasLicense = false,
  38. })
  39. TEAM_SPGUNDEALER = DarkRP.createJob("Gun Dealer Specialist", {
  40. color = Color(80, 45, 0, 255),
  41. model = "models/player/odessa.mdl",
  42. description = [[Your job is to sell bigger and more professional weapons to the public. They pay you a higher amount of money as your weapons are special from the other gun dealers.]],
  43. weapons = {"weapon_glock2", "weaponchecker"},
  44. command = "specialistgundealer",
  45. max = 1,
  46. salary = 100,
  47. admin = 0,
  48. vote = false,
  49. hasLicense = true,
  50. })
  51. TEAM_HEGUNDEALER = DarkRP.createJob("Heavy Gun Dealer", {
  52. color = Color(80, 45, 0, 255),
  53. model = "models/player/odessa.mdl",
  54. description = [[Your job is to sell bigger guns to the people.]],
  55. weapons = {"weapon_glock2", "weaponchecker"},
  56. command = "heavygundealer",
  57. max = 1,
  58. salary = 80,
  59. admin = 0,
  60. vote = false,
  61. hasLicense = true,
  62. })
  63. TEAM_DRUGDEALER = DarkRP.createJob("Drug Dealer", {
  64. color = Color(51, 204, 255, 255),
  65. model = "models/player/soldier_stripped.mdl",
  66. description = [[You sell drugs to the public, stay away from the police.]],
  67. weapons = {},
  68. command = "drugdealer",
  69. max = 3,
  70. salary = 40,
  71. admin = 0,
  72. vote = false,
  73. hasLicense = true,
  74. })
  75. TEAM_HADMIN = DarkRP.createJob("H-Admin On Duty", {
  76. color = Color(170, 0, 0, 255),
  77. model = "models/player/combine_soldier.mdl",
  78. description = [[Being a head admin requires a great responsibility, when you become this job you have to take
  79. your job as an admin serious, and help the ones who is in need of an admin.]],
  80. weapons = {},
  81. command = "hadminonduty",
  82. max = 0,
  83. salary = 200,
  84. admin = 1,
  85. vote = false,
  86. hasLicense = false,
  87.  
  88. })
  89. TEAM_ADMIN = DarkRP.createJob("Admin On Duty", {
  90. color = Color(170, 0, 0, 255),
  91. model = "models/player/combine_soldier.mdl",
  92. description = [[Being an admin requires a great responsibility, when you become this job you have to take
  93. your job as an admin serious, and help the ones who is in need of an admin.]],
  94. weapons = {},
  95. command = "adminonduty",
  96. max = 0,
  97. salary = 100,
  98. admin = 1,
  99. vote = false,
  100. hasLicense = false,
  101.  
  102. })
  103. TEAM_SADMIN = DarkRP.createJob("Owner On Duty", {
  104. color = Color(170, 0, 0, 255),
  105. model = "models/player/combine_super_soldier.mdl",
  106. description = [[Being a super admin requires a great responsibility, when you become this job you have to take
  107. your job as an Owner is serious, and help the ones who is in need of a superadmin.]],
  108. weapons = {"arrest_stick", "unarrest_stick"},
  109. command = "sadminonduty",
  110. max = 2,
  111. salary = 100000000,
  112. admin = 2,
  113. vote = false,
  114. hasLicense = false,
  115.  
  116. })
  117. TEAM_TMOD = DarkRP.createJob("Trial-Mod On Duty", {
  118. color = Color(170, 0, 0, 255),
  119. model = "models/player/combine_soldier_prisonguard.mdl",
  120. description = [[Being a trial mod requires a great responsibility, when you become this job you have to take
  121. your job as a mod serious, and help the ones who is in need of a trial mod.]],
  122. weapons = {"arrest_stick", "unarrest_stick"},
  123. command = "tmodonduty",
  124. max = 0,
  125. salary = 50,
  126. admin = 0,
  127. vote = false,
  128. hasLicense = false,
  129.  
  130. })
  131. TEAM_HMOD = DarkRP.createJob("Head-Mod On Duty", {
  132. color = Color(170, 0, 0, 255),
  133. model = "models/player/combine_soldier_prisonguard.mdl",
  134. description = [[Being a Head mod requires a great responsibility, when you become this job you have to take
  135. your job as a Head Mod serious and teach other moderators common sense, and help the ones who is in need of a mod in general.]],
  136. weapons = {"arrest_stick", "unarrest_stick"},
  137. command = "hmodonduty",
  138. max = 0,
  139. salary = 100,
  140. admin = 0,
  141. vote = false,
  142. hasLicense = false,
  143.  
  144. })
  145. TEAM_MOD = DarkRP.createJob("Mod On Duty", {
  146. color = Color(170, 0, 0, 255),
  147. model = "models/player/combine_soldier_prisonguard.mdl",
  148. description = [[Being a mod requires a great responsibility, when you become this job you have to take
  149. your job as a mod serious, and help the ones who is in need of a mod.]],
  150. weapons = {"arrest_stick", "unarrest_stick"},
  151. command = "modonduty",
  152. max = 0,
  153. salary = 100,
  154. admin = 0,
  155. vote = false,
  156. hasLicense = false,
  157.  
  158. })
  159. TEAM_ITALIANMAFIAL = DarkRP.createJob("Italian Mafia Leader", {
  160. color = Color(230, 255, 77, 255),
  161. model = {"models/player/gman_high.mdl"},
  162. description = [[You lead the Italian Mafia, you set up the rules for the gang!]],
  163. weapons = {"weapon_ak472"},
  164. command = "italianmafialeader",
  165. max = 1,
  166. salary = 250,
  167. admin = 0,
  168. vote = true,
  169. hasLicense = true,
  170. candemote = true,
  171. })
  172. TEAM_ITALIANMAFIA = DarkRP.createJob("Italian Mafia", {
  173. color = Color(230, 255, 77, 255),
  174. model = {"models/player/gman_high.mdl"},
  175. description = [[You obey anything your leader says, follow your gang.]],
  176. weapons = {"weapon_ak472"},
  177. command = "italianmafia",
  178. max = 4,
  179. salary = 150,
  180. admin = 0,
  181. vote = true,
  182. hasLicense = false,
  183. candemote = true,
  184. })
  185. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  186. color = Color(0, 0, 0, 255),
  187. model = "models/player/phoenix.mdl",
  188. description = [[People hire you to send people to a looong vacation.]],
  189. weapons = {"weapon_glock2", "ls_sniper"},
  190. command = "hitman",
  191. max = 2,
  192. salary = 65,
  193. admin = 0,
  194. vote = false,
  195. hasLicense = false,
  196. })
  197. TEAM_PHITMAN = DarkRP.createJob("Professional Hitman", {
  198. color = Color(0, 0, 0, 255),
  199. model = "models/player/phoenix.mdl",
  200. description = [[People hire you to send people to a looong vacation. You are better then the average Hitmans in the town. You have a bigger salary.]],
  201. weapons = {"weapon_glock2", "ls_sniper"},
  202. command = "professionalhitman",
  203. max = 1,
  204. salary = 150,
  205. admin = 0,
  206. vote = false,
  207. hasLicense = false,
  208. })
  209. TEAM_TERRORISTL = DarkRP.createJob("Terrorist Leader", {
  210. color = Color(80, 45, 0, 255),
  211. model = "models/player/guerilla.mdl",
  212. description = [[You attack the streets, and the Police Force. You lead the other Terrorists]],
  213. weapons = {"lockpick", "weapon_ak472"},
  214. command = "terroristleader",
  215. max = 1,
  216. salary = 105,
  217. admin = 0,
  218. vote = false,
  219. hasLicense = false,
  220. })
  221. TEAM_TERRORIST = DarkRP.createJob("Terrorist", {
  222. color = Color(80, 45, 0, 255),
  223. model = "models/player/guerilla.mdl",
  224. description = [[You attack the streets, and the Police Force.]],
  225. weapons = {"lockpick", "weapon_ak472"},
  226. command = "terrorist",
  227. max = 2,
  228. salary = 105,
  229. admin = 0,
  230. vote = false,
  231. hasLicense = false,
  232. })
  233. TEAM_AMERICANMAFIA = DarkRP.createJob("American Mafia", {
  234. color = Color(230, 255, 77, 255),
  235. model = {"models/player/gman_high.mdl"},
  236. description = [[You obey anything your leader says, follow your gang.]],
  237. weapons = {"weapon_ak472"},
  238. command = "americanmafia",
  239. max = 4,
  240. salary = 150,
  241. admin = 0,
  242. vote = true,
  243. hasLicense = false,
  244. candemote = true,
  245. })
  246. TEAM_AMERICANMAFIAL = DarkRP.createJob("American Mafia Leader", {
  247. color = Color(230, 255, 77, 255),
  248. model = {"models/player/gman_high.mdl"},
  249. description = [[You lead the American Mafia, you set up the rules for the gang!]],
  250. weapons = {"weapon_ak472"},
  251. command = "americanmafialeader",
  252. max = 1,
  253. salary = 250,
  254. admin = 0,
  255. vote = true,
  256. hasLicense = true,
  257. candemote = true,
  258. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement