Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.10 KB | None | 0 0
  1. TEAM_CITIZEN = AddExtraTeam("Citizen", {
  2. color = Color(20, 150, 20, 255),
  3. model = {
  4. "models/player/Group01/Female_01.mdl",
  5. "models/player/Group01/Female_02.mdl",
  6. "models/player/Group01/Female_03.mdl",
  7. "models/player/Group01/Female_04.mdl",
  8. "models/player/Group01/Female_06.mdl",
  9. "models/player/group01/male_01.mdl",
  10. "models/player/Group01/Male_02.mdl",
  11. "models/player/Group01/male_03.mdl",
  12. "models/player/Group01/Male_04.mdl",
  13. "models/player/Group01/Male_05.mdl",
  14. "models/player/Group01/Male_06.mdl",
  15. "models/player/Group01/Male_07.mdl",
  16. "models/player/Group01/Male_08.mdl",
  17. "models/player/Group01/Male_09.mdl"
  18. },
  19. description = [[The Citizen is the most basic level of society you can hold
  20. besides being a hobo.
  21. You have no specific role in city life.]],
  22. weapons = {},
  23. command = "citizen",
  24. max = 0,
  25. salary = 45,
  26. admin = 0,
  27. vote = false,
  28. hasLicense = false,
  29. candemote = false,
  30. mayorCanSetSalary = true
  31. })
  32.  
  33. TEAM_GUN = DarkRP.createJob("F.A.S2 Dealer", {
  34. color = color(255, 153, 51, 255),
  35. model = {"models/player/monk.mdl"},
  36. description = [[You F.A.S 2 Weapons to people]],
  37. weapons = {"fas2_glock20"},
  38. command = "Dealer",
  39. max = 5,
  40. salary = 60,
  41. admin = 0,
  42. vote = false,
  43. haslicense = true,
  44. candemote = true,
  45. category = "Citizens"
  46. })
  47.  
  48. TEAM_OWNER = DarkRP.createJob("Owner On Duty", {
  49. color = Color(136, 6, 6, 255),
  50. model = {"models/player/combine_super_soldier.mdl"},
  51. description = [[You are the Owner and you protect the server from shit heads]],
  52. weapons = {"fas2_m82"},
  53. command = "Owner",
  54. max = 1,
  55. salary = 10000,
  56. admin = 2,
  57. vote = false,
  58. hasLicense = true,
  59. candemote = false,
  60. category = "Citizens",
  61. customCheck = function(ply) return CLIENT or ply:SteamID("SteamId") == "STEAM_0:0:00000" end,
  62. CustomCheckFailMsg = "This job is for the owner only!"
  63. })
  64.  
  65. TEAM_THIEF = DarkRP.createJob("Thief", {
  66. color = Color(255, 0, 0, 255),
  67. model = {"models/player/arctic.mdl"},
  68. description = [[You mug people and steal from people. ]],
  69. weapons = {"fas2_glock20" , "lockpick"},
  70. command = "thief",
  71. max = 10,
  72. salary = 45,
  73. admin = 0,
  74. vote = false,
  75. hasLicense = false,
  76. candemote = true,
  77. category = "Gangsters",
  78. })
  79.  
  80. TEAM_MOB = DarkRP.createJob("Hitman", {
  81. color = Color(255, 0, 0, 255),
  82. model = {"models/player/barney.mdl"},
  83. description = [[You Accept hits.You can kill other hitman without adverting.]],
  84. weapons = {"fas2_glock20","fas2_m24"},
  85. command = "hitman",
  86. max = 2,
  87. salary = 45,
  88. admin = 0,
  89. vote = true,
  90. hasLicense = false,
  91. candemote = true,
  92. category = "Citizens",
  93. })
  94.  
  95. TEAM_BANKOWNER = DarkRP.createJob("Bank Owner", {
  96. color = Color(0, 10, 255, 255),
  97. model = {"models/player/hostage/hostage_02.mdl"},
  98. description = [[You run the bank.]],
  99. weapons = {"stunstick"},
  100. command = "bo",
  101. max = 1,
  102. salary = 45,
  103. admin = 0,
  104. vote = true,
  105. hasLicense = true,
  106. candemote = true,
  107. category = "Civil Protection",
  108. })
  109.  
  110. TEAM_GUARD = DarkRP.createJob("Guard", {
  111. color = Color(0, 10, 255, 255),
  112. model = {"models/player/odessa.mdl"},
  113. description = [[You are hired by anyone.]],
  114. weapons = {"stunstick","fas2_p226"},
  115. command = "guard",
  116. max = 6,
  117. salary = 45,
  118. admin = 0,
  119. vote = false,
  120. hasLicense = false,
  121. candemote = true,
  122. -- CustomCheck
  123. medic = false,
  124. chief = false,
  125. mayor = false,
  126. hobo = false,
  127. cook = false,
  128. category = "Citizens",
  129. })
  130.  
  131. TEAM_CASINOOWNER = DarkRP.createJob("Casino Owner", {
  132. color = Color(219, 255, 0, 255),
  133. model = {"models/player/hostage/hostage_01.mdl"},
  134. description = [[You run the casino.]],
  135. weapons = {"stunstick"},
  136. command = "casino",
  137. max = 1,
  138. salary = 45,
  139. admin = 0,
  140. vote = true,
  141. hasLicense = false,
  142. candemote = true,
  143. -- CustomCheck
  144. medic = false,
  145. chief = false,
  146. mayor = false,
  147. hobo = false,
  148. cook = false,
  149. category = "Citizens",
  150. })
  151.  
  152. TEAM_STAFFONDUTY = DarkRP.createJob("Staff On Duty", {
  153. color = Color(0, 0, 0, 255),
  154. model = {"models/player/combine_soldier_prisonguard.mdl"},
  155. description = [[Staff.]],
  156. weapons = {},
  157. command = "staff",
  158. max = 15,
  159. salary = 500,
  160. admin = 1,
  161. vote = false,
  162. hasLicense = true,
  163. candemote = false,
  164. category = "Citizens",
  165. })
  166.  
  167. TEAM_SWAT = DarkRP.createJob("Swat Sniper", {
  168. color = Color(136, 6, 6, 255),
  169. model = {"models/player/swat.mdl"},
  170. description = [[You are a Swat Sniper you protect the citizens for bad.]],
  171. weapons = {"fas2_sr25","fas2_glock20","fas2_dv2" },
  172. command = "Sniper",
  173. max = 2,
  174. salary = 50,
  175. admin = 0,
  176. vote = false,
  177. hasLicense = true,
  178. candemote = true,
  179. -- CustomCheck
  180. medic = false,
  181. chief = false,
  182. mayor = false,
  183. hobo = false,
  184. cook = false,
  185. category = "S.W.A.T.",
  186. })
  187.  
  188. TEAM_SWAT = DarkRP.createJob("Swat Medic", {
  189. color = Color(136, 6, 6, 255),
  190. model = {"models/player/urban.mdl"},
  191. description = [[You are a Swat Medic you heal the swat members.]],
  192. weapons = {"fas2_famas"},
  193. command = "SwatMedic",
  194. max = 2,
  195. salary = 50,
  196. admin = 0,
  197. vote = true,
  198. hasLicense = true,
  199. candemote = false,
  200. -- CustomCheck
  201. medic = true,
  202. chief = false,
  203. mayor = false,
  204. hobo = false,
  205. cook = false,
  206. category = "S.W.A.T.",
  207. })
  208.  
  209. TEAM_SWAT = DarkRP.createJob("Swat Assult", {
  210. color = Color(0, 0, 0, 255),
  211. model = {"models/player/riot.mdl"},
  212. description = [[You are Swat you protect the citizens.]],
  213. weapons = {"fas2_rem870" , "fas2_m4a1" , "fas2_dv2"},
  214. command = "SwatAssult",
  215. max = 4,
  216. salary = 50,
  217. admin = 0,
  218. vote = true,
  219. hasLicense = true,
  220. candemote = false,
  221. -- CustomCheck
  222. medic = false,
  223. chief = false,
  224. mayor = false,
  225. hobo = false,
  226. cook = false,
  227. category = "S.W.A.T.",
  228. })
  229.  
  230. TEAM_SWAT = DarkRP.createJob("Swat Leader", {
  231. color = Color(0, 0, 0, 255),
  232. model = {"models/player/combine_soldier_prisonguard.mdl"},
  233. description = [[You are Swat you protect the citizens.]],
  234. weapons = {"fas2_g36c" , "fas2_dv2"},
  235. command = "SwatLeader",
  236. max = 1,
  237. salary = 50,
  238. admin = 0,
  239. vote = true,
  240. hasLicense = true,
  241. candemote = false,
  242. category = "S.W.A.T.",
  243. })
  244.  
  245. TEAM_CULTIST = DarkRP.createJob("Cultist", {
  246. color = Color(255, 0, 0, 255),
  247. model = {"models/player/skeleton.mdl"},
  248. description = [[You sacrifice people to satan.]],
  249. weapons = {"fas2_dv2"},
  250. command = "cult",
  251. max = 8,
  252. salary = 45,
  253. admin = 0,
  254. vote = false,
  255. hasLicense = false,
  256. candemote = true,
  257. category = "Citizens",
  258. })
  259.  
  260. TEAM_PROSTITUTE = DarkRP.createJob("Prostitute", {
  261. color = Color(0, 0, 0, 255),
  262. model = {"models/azusa.mdl"},
  263. description = [[You are a Prostitute you sleep with people and you can scam people.]],
  264. weapons = {"fas2_dv2"},
  265. command = "Prostitute",
  266. max = 6,
  267. salary = 50,
  268. admin = 0,
  269. vote = false,
  270. hasLicense = false,
  271. candemote = true,
  272. category = "Citizens",
  273. })
  274.  
  275. TEAM_DEATH = DarkRP.createJob("Death", {
  276. color = Color(0, 0, 0, 255),
  277. model = {"models/player/demon_violinist/demon_violinist.mdl"},
  278. description = [[You can kill anybody and they can kill you. but no killing in spawn.]],
  279. weapons = {"weapon_rubyrose_scythe" , "vortigaunt_beam"},
  280. command = "Death",
  281. max = 1,
  282. salary = 50,
  283. admin = 0,
  284. vote = true,
  285. hasLicense = false,
  286. candemote = true,
  287. category = "Citizens",
  288. })
  289.  
  290. TEAM_BREAD = DarkRP.createJob("Bread man", {
  291. color = Color(44, 22, 0, 255),
  292. model = {"models/gingerbread/gingerbread.mdl"},
  293. description = [[You are a ginger bread man. you can kill people but you are kos at ALL times. you can also become someone's pet. Custom job for curse ONLY!]],
  294. weapons = {"breadfish_weap"},
  295. command = "Bread",
  296. max = 1,
  297. salary = 445,
  298. admin = 0,
  299. vote = true,
  300. hasLicense = true,
  301. candemote = true,
  302. category = "Custom jobs",
  303. })
  304.  
  305. TEAM_POPS = DarkRP.createJob("Pops", {
  306. color = Color(226, 193, 18, 255),
  307. model = {"models/player/hostage/hostage_04.mdl"},
  308. description = [[Pops the raspy old man who is always the man with a big plan.]],
  309. weapons = {"fas2_sg550"},
  310. command = "PopsRox",
  311. max = 1,
  312. salary = 500,
  313. admin = 2,
  314. vote = false,
  315. hasLicense = true,
  316. candemote = true,
  317. category = "Custom jobs",
  318. customCheck = function(ply) return CLIENT or ply:SteamID("SteamId") == "STEAM_0:0:00000" end,
  319. CustomCheckFailMsg = "This job is for the owner only!"
  320. })
  321.  
  322. TEAM_BANKOWNER = DarkRP.createJob("Bank Owner", {
  323. color = Color(0, 10, 255, 255),
  324. model = {"models/player/hostage/hostage_02.mdl"},
  325. description = [[You run the bank.]],
  326. weapons = {"stunstick"},
  327. command = "bo",
  328. max = 1,
  329. salary = 45,
  330. admin = 0,
  331. vote = true,
  332. hasLicense = true,
  333. candemote = true,
  334. category = "Civil Protection",
  335. })
  336.  
  337.  
  338. GAMEMODE.CivilProtection = {
  339. [TEAM_POLICE] = true,
  340. [TEAM_CHIEF] = true,
  341. [TEAM_SWAT] = true,
  342. })
  343.  
  344. DarkRP.addHitmanTeam(TEAM_MOB)
  345.  
  346. GAMEMODE.DefaultTeam = TEAM_CITIZEN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement