Advertisement
BitPlanet

Working DarkRP 2.5.1 Jobs

Oct 29th, 2014
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.38 KB | None | 0 0
  1. TEAM_CITIZEN = AddExtraTeam("Citizen", {
  2. color = Color(20, 150, 20, 255),
  3. model = {"models/player/group01/male_01.mdl"},
  4. description = [[The Citizen is the most basic level of society you can hold besides being a hobo. You have no specific role in city life.]],
  5. weapons = {"weapon_arc_atmcard"},
  6. command = "citizen",
  7. max = 0,
  8. salary = 45,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. mayorCanSetSalary = true
  14. })
  15.  
  16. TEAM_POLICE = AddExtraTeam("Civil Protection", {
  17. color = Color(25, 25, 170, 255),
  18. model = {"models/player/police.mdl", "models/player/police_fem.mdl"},
  19. description = [[The protector of every citizen that lives in the city. You have the power to arrest criminals and protect innocents.]],
  20. weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker"},
  21. command = "cp",
  22. max = 4,
  23. salary = 65,
  24. admin = 0,
  25. vote = true,
  26. hasLicense = true,
  27. })
  28.  
  29. TEAM_GANG = AddExtraTeam("Gangster", {
  30. color = Color(75, 75, 75, 255),
  31. model = {"models/player/Group03/Male_09.mdl"},
  32. description = [[The lowest person of crime. A gangster generally works for the Mob boss who runs the crime family. The Mob boss sets your agenda and you follow it or you might be punished.]],
  33. weapons = {"weapon_arc_atmcard"},
  34. command = "gangster",
  35. max = 3,
  36. salary = 45,
  37. admin = 0,
  38. vote = false,
  39. hasLicense = false,
  40. mayorCanSetSalary = false
  41. })
  42.  
  43. TEAM_MOB = AddExtraTeam("Mob boss", {
  44. color = Color(25, 25, 25, 255),
  45. model = "models/player/gman_high.mdl",
  46. description = [[The Mob boss is the boss of the criminals in the city.]],
  47. weapons = {"lockpick", "unarrest_stick", "weapon_arc_atmcard"},
  48. command = "mobboss",
  49. max = 1,
  50. salary = 60,
  51. admin = 0,
  52. vote = false,
  53. hasLicense = false,
  54. mayorCanSetSalary = false,
  55. })
  56.  
  57. TEAM_GUN = AddExtraTeam("Gun Dealer", {
  58. color = Color(255, 140, 0, 255),
  59. model = "models/player/monk.mdl",
  60. description = [[A Gun Dealer is the only person who can sell guns to other people. Make sure you aren't caught selling illegal firearms to the public.]],
  61. weapons = {"weapon_arc_atmcard"},
  62. command = "gundealer",
  63. max = 2,
  64. salary = 45,
  65. admin = 0,
  66. vote = false,
  67. hasLicense = false,
  68. mayorCanSetSalary = true
  69. })
  70.  
  71. TEAM_MEDIC = AddExtraTeam("Medic", {
  72. color = Color(47, 79, 79, 255),
  73. model = "models/player/kleiner.mdl",
  74. description = [[With your medical knowledge, you work to restore players to full health. Without a medic, people cannot be healed.]],
  75. weapons = {"med_kit", "weapon_arc_atmcard"},
  76. command = "medic",
  77. max = 2,
  78. salary = 45,
  79. admin = 0,
  80. vote = false,
  81. hasLicense = false,
  82. medic = true,
  83. mayorCanSetSalary = true
  84. })
  85.  
  86. TEAM_CHIEF = AddExtraTeam("Civil Protection Chief", {
  87. color = Color(20, 20, 255, 255),
  88. model = "models/player/combine_soldier_prisonguard.mdl",
  89. description = [[The Chief is the leader of the Civil Protection unit. Coordinate the police force to enforce law in the city.]],
  90. weapons = {"arrest_stick", "unarrest_stick", "weapon_deagle2", "stunstick", "door_ram", "weaponchecker", "weapon_arc_atmcard"},
  91. command = "chief",
  92. max = 1,
  93. salary = 75,
  94. admin = 0,
  95. vote = true,
  96. hasLicense = true,
  97. chief = true,
  98. NeedToChangeFrom = TEAM_POLICE,
  99. })
  100.  
  101. TEAM_MAYOR = AddExtraTeam("Mayor", {
  102. color = Color(150, 20, 20, 255),
  103. model = "models/player/breen.mdl",
  104. description = [[The Mayor of the city creates laws to govern the city. If you are the mayor you may create and accept warrants.]],
  105. weapons = {"weapon_arc_atmcard"},
  106. command = "mayor",
  107. max = 1,
  108. salary = 130,
  109. admin = 0,
  110. vote = true,
  111. hasLicense = true,
  112. mayor = true,
  113. })
  114.  
  115. TEAM_HOBO = AddExtraTeam("Hobo", {
  116. color = Color(80, 45, 0, 255),
  117. model = "models/player/corpse1.mdl",
  118. description = [[The lowest member of society. Everybody laughs at you. You have no home. Beg for your food and money, Sing for everyone who passes to get money, Make your own wooden home somewhere in a corner or outside someone else's door]],
  119. weapons = {"weapon_bugbait", "weapon_arc_atmcard"},
  120. command = "hobo",
  121. max = 5,
  122. salary = 1,
  123. admin = 0,
  124. vote = false,
  125. hasLicense = false,
  126. candemote = false,
  127. hobo = true,
  128. mayorCanSetSalary = false
  129. })
  130.  
  131. TEAM_METH = AddExtraTeam("Meth Cook", {
  132. color = Color(255, 120, 80, 255),
  133. model = "models/player/magnusson.mdl",
  134. description = [[You cook meth, and sell it for money. You have access to the meth stove.]],
  135. weapons = {"weapon_arc_atmcard", "weapon_extinguisher"},
  136. command = "methcook",
  137. max = 2,
  138. salary = 75,
  139. admin = 0,
  140. vote = true,
  141. hasLicense = false,
  142. candemote = true,
  143. mayorCanSetSalary = false
  144. })
  145.  
  146. TEAM_ADMIN = AddExtraTeam("Admin on Duty", {
  147. color = Color(230, 0, 80, 255),
  148. model = "models/player/Combine_Soldier.mdl",
  149. description = [[You're an admin on duty. Make the players behave, or give them a slap with the banhammer!]],
  150. weapons = {"weapon_arc_atmcard"},
  151. command = "admin",
  152. max = 4,
  153. salary = 150,
  154. admin = 1,
  155. vote = false,
  156. hasLicense = true,
  157. candemote = true,
  158. mayorCanSetSalary = false
  159. })
  160.  
  161. TEAM_SUPER = AddExtraTeam("Super Admin on Duty", {
  162. color = Color(255, 0, 0, 255),
  163. model = "models/player/Combine_Super_Soldier.mdl",
  164. description = [[You're a Super admin on duty. Make the players behave, or give them a slap
  165. with the banhammer!]],
  166. weapons = {"weapon_arc_atmcard"},
  167. command = "super",
  168. max = 4,
  169. salary = 500000000000,
  170. admin = 2,
  171. vote = false,
  172. hasLicense = true,
  173. candemote = true,
  174. mayorCanSetSalary = false
  175. })
  176.  
  177. TEAM_SNIPER = AddExtraTeam("SWAT Sniper", {
  178. color = Color(80, 120, 12, 255),
  179. model = "models/player/gasmask.mdl",
  180. description = [[The swat sniper is only called out to serious crimes. You will be laying on the rooftops, sniping all them criminals!]],
  181. weapons = {"weapon_real_cs_awp", "weapon_arc_atmcard"},
  182. command = "sniper",
  183. max = 2,
  184. salary = 115,
  185. admin = 0,
  186. vote = true,
  187. hasLicense = true,
  188. candemote = true,
  189. mayorCanSetSalary = false,
  190. })
  191.  
  192. TEAM_SWAT = AddExtraTeam("SWAT", {
  193. color = Color(100, 120, 255, 255),
  194. model = "models/player/swat.mdl",
  195. description = [[The SWAT team is only sent on duty in serious crime actions. Stay ready in the HQ, and be damn fast when the criminals strikes!]],
  196. weapons = {"weapon_real_cs_mp5a5", "weapon_arc_atmcard"},
  197. command = "swat",
  198. max = 3,
  199. salary = 90,
  200. admin = 0,
  201. vote = true,
  202. hasLicense = true,
  203. candemote = true,
  204. mayorCanSetSalary = false,
  205. NeedToChangeFrom = TEAM_POLICE
  206. })
  207.  
  208. TEAM_SWATLEADER = AddExtraTeam("SWAT Leader", {
  209. color = Color(0, 255, 80, 255),
  210. model = "models/player/riot.mdl",
  211. description = [[You lead the SWAT team. Train them hard,
  212. and make them ready for the hard crimes they are gonna face!]],
  213. weapons = {"weapon_real_cs_m4a1", "weapon_arc_atmcard"},
  214. command = "swatleader",
  215. max = 1,
  216. salary = 120,
  217. admin = 0,
  218. vote = true,
  219. hasLicense = true,
  220. candemote = true,
  221. mayorCanSetSalary = true,
  222. NeedToChangeFrom = TEAM_SWAT
  223. })
  224.  
  225. TEAM_DRUG = AddExtraTeam("Drug dealer", {
  226. color = Color(255, 255, 90, 255),
  227. model = "models/player/odessa.mdl",
  228. description = [[You are the drug dealer in town.
  229. Sell drugs to earn yourself some money.]],
  230. weapons = {"weapon_arc_atmcard"},
  231. command = "drug",
  232. max = 1,
  233. salary = 50,
  234. admin = 0,
  235. vote = false,
  236. hasLicense = false,
  237. candemote = true,
  238. mayorCanSetSalary = false,
  239. })
  240.  
  241. TEAM_COMPUTER = AddExtraTeam("Computer technician", {
  242. color = Color(0, 50, 190, 255),
  243. model = "models/player/hostage/hostage_01.mdl",
  244. description = [[You charge people money, for setting up
  245. their pc's]],
  246. weapons = {"weapon_arc_atmcard"},
  247. command = "pctech",
  248. max = 2,
  249. salary = 60,
  250. admin = 0,
  251. vote = false,
  252. hasLicense = false,
  253. candemote = true,
  254. mayorCanSetSalary = false,
  255. })
  256.  
  257. TEAM_THIEF = AddExtraTeam("Theif", {
  258. color = Color(0, 0, 255, 255),
  259. model = "models/player/phoenix.mdl",
  260. description = [[As a theif, you steal from other people.
  261. But watch out! The town might have a strong police force!]],
  262. weapons = {"weapon_arc_atmhack", "weapon_arc_atmcard"},
  263. command = "thief",
  264. max = 5,
  265. salary = 55,
  266. admin = 0,
  267. vote = true,
  268. hasLicense = false,
  269. candemote = true,
  270. mayorCanSetSalary = false,
  271. })
  272.  
  273. TEAM_TERRORIST = AddExtraTeam("Terrorist", {
  274. color = Color(120, 95, 77, 255),
  275. model = "models/player/guerilla.mdl",
  276. description = [[As a terrorist you will try to destory the town
  277. You can kill anyone you want.
  278. But be aware, police is gonna send the swat at people like you!]],
  279. weapons = {"weapon_arc_atmcard", "weapon_real_cs_ak47"},
  280. command = "terrorist",
  281. max = 2,
  282. salary = 0,
  283. admin = 0,
  284. vote = false,
  285. hasLicense = false,
  286. candemote = true,
  287. mayorCanSetSalary = false,
  288. })
  289.  
  290. TEAM_HOTEL = AddExtraTeam("Hotel manager", {
  291. color = Color(200, 95, 20, 255),
  292. model = "models/player/Group01/Male_09.mdl",
  293. description = [[You deal out hotel rooms for the people, and charge them money for it.
  294. You gotta be able to buy the hotel first though!]],
  295. weapons = {"weapon_arc_atmcard"},
  296. command = "hotel",
  297. max = 1,
  298. salary = 80,
  299. admin = 0,
  300. vote = false,
  301. hasLicense = false,
  302. candemote = true,
  303. mayorCanSetSalary = false,
  304. })
  305.  
  306. TEAM_HITMAN = AddExtraTeam("Hitman", {
  307. color = Color(50, 50, 255, 255),
  308. model = "models/player/Group01/Male_09.mdl",
  309. description = [[The hitman kills people for money.
  310. People can give you a hit, and its then your job to complete the hit!]],
  311. weapons = {"weapon_arc_atmcard", "weapon_real_cs_scout", "m9k_machete"},
  312. command = "hitman",
  313. max = 2,
  314. salary = 70,
  315. admin = 0,
  316. vote = true,
  317. hasLicense = true,
  318. candemote = true,
  319. mayorCanSetSalary = false,
  320. })
  321.  
  322. TEAM_PYRO = AddExtraTeam("Pyroman", {
  323. color = Color(200, 222, 134, 255),
  324. model = "models/player/hostage/hostage_01.mdl",
  325. description = [[A pyroman, likes fire. No wait, you dont like fire
  326. you LIVE and BREATHE for fire. Get that flame thrower heated up,
  327. and start burning everything you see! But the police might not like
  328. fire as much as you do. So watch out!]],
  329. weapons = {"weapon_arc_atmcard", "swep_flamethrower_d2k"},
  330. command = "pyro",
  331. max = 3,
  332. salary = 0,
  333. admin = 0,
  334. vote = false,
  335. hasLicense = false,
  336. candemote = true,
  337. mayorCanSetSalary = false,
  338. })
  339.  
  340. TEAM_FIRE = AddExtraTeam("Fire Fighter", {
  341. color = Color(255, 212, 19, 255),
  342. model = "models/player/Eli.mdl",
  343. description = [[As a fire fighter, you respond to call outs about fires. You have a fire extinguisher, use that to get rid of fires.]],
  344. weapons = {"weapon_arc_atmcard", "weapon_extinguisher"},
  345. command = "firefighter",
  346. max = 3,
  347. salary = 90,
  348. admin = 0,
  349. vote = false,
  350. hasLicense = false,
  351. candemote = true,
  352. mayorCanSetSalary = false,
  353. })
  354.  
  355. TEAM_DETECTIVE = AddExtraTeam("Detective", {
  356. color = Color(123, 252, 145, 255),
  357. model = "models/player/gasmask.mdl",
  358. description = [[As a detective, you solve the crimes and murders,
  359. that normal cops cant handle. You will be paid 2500 for each murderer you catch!]],
  360. weapons = {"weapon_arc_atmcard", "weapon_real_cs_p228"},
  361. command = "detective",
  362. max = 1,
  363. salary = 120,
  364. admin = 0,
  365. vote = true,
  366. hasLicense = false,
  367. candemote = true,
  368. mayorCanSetSalary = false,
  369. NeedToChangeFrom = TEAM_POLICE
  370. })
  371.  
  372. AddDoorGroup("Cops and Mayor only", TEAM_CHIEF, TEAM_POLICE, TEAM_MAYOR)
  373. AddDoorGroup("Gundealer only", TEAM_GUN)
  374.  
  375. AddAgenda("Gangster's agenda", TEAM_MOB, {TEAM_GANG})
  376. AddAgenda("Police agenda", TEAM_MAYOR, {TEAM_CHIEF, TEAM_POLICE})
  377.  
  378. GM.DefaultTeam = TEAM_CITIZEN
  379.  
  380. GM.CivilProtection = {
  381. [TEAM_POLICE] = true,
  382. [TEAM_CHIEF] = true,
  383. [TEAM_MAYOR] = true,
  384. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement