Advertisement
Guest User

Helsing is double gay

a guest
Apr 20th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.78 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4. This file contains your custom jobs.
  5. This file should also contain jobs from DarkRP that you edited.
  6.  
  7. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  8. Once you've done that, copy and paste the job to this file and edit it.
  9.  
  10. The default jobs can be found here:
  11. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  12.  
  13. For examples and explanation please visit this wiki page:
  14. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  15.  
  16. Add your custom jobs under the following line:
  17. ---------------------------------------------------------------------------]]
  18.  
  19.  
  20.  
  21. --[[---------------------------------------------------------------------------
  22. Define which team joining players spawn into and what team you change to if demoted
  23. ---------------------------------------------------------------------------]]
  24. GAMEMODE.DefaultTeam = TEAM_CIV
  25. --[[---------------------------------------------------------------------------
  26. Define which teams belong to civil protection
  27. Civil protection can set warrants, make people wanted and do some other police related things
  28. ---------------------------------------------------------------------------]]
  29. GAMEMODE.CivilProtection = {
  30. [TEAM_POLICE] = false,
  31. [TEAM_CHIEF] = false,
  32. [TEAM_MAYOR] = false,
  33. }
  34. --[[---------------------------------------------------------------------------
  35. Jobs that are hitmen (enables the hitman menu)
  36. ---------------------------------------------------------------------------]]
  37. DarkRP.addHitmanTeam(TEAM_HITMAN)
  38.  
  39. TEAM_JEDI = DarkRP.createJob("Jedi", {
  40. color = Color(0, 255, 55, 255),
  41. model = {
  42. "models/jazzmcfly/jka/younglings/jka_young_anikan.mdl",
  43. "models/jazzmcfly/jka/younglings/jka_young_female.mdl",
  44. "models/jazzmcfly/jka/younglings/jka_young_male.mdl",
  45. "models/jazzmcfly/jka/younglings/jka_young_shak.mdl"
  46. },
  47. description = [[You are a member of the Jedi Order, an ancient order of force users. Stationed on Tython the Jedi are a peaceful order of wise saber wielders.]],
  48. weapons = {"weapon_lightsaber"},
  49. command = "jedi",
  50. max = 0,
  51. salary = 1000,
  52. admin = 0,
  53. vote = false,
  54. hasLicense = false,
  55. candemote = false,
  56. category = "Jedi"
  57. })
  58.  
  59. TEAM_SITH = DarkRP.createJob("Sith", {
  60. color = Color(255, 0, 0, 255),
  61. model = {
  62. "models/jka_sithyoung_anikan.mdl",
  63. "models/jka_sithyoung_female.mdl",
  64. "models/jka_sithyoung_female2.mdl",
  65. "models/jka_sithyoung_male.mdl",
  66. "models/jka_sithyoung_male2.mdl",
  67. "models/jka_sithyoung_male3.mdl",
  68. "models/jka_sithyoung_shak.mdl"
  69. },
  70. description = [[You are a member of the Sith Order. The Sith Order was a group of dark side force users during the old republic. The Sith were aggressive and treated others with hostility leading to infighting.]],
  71. weapons = {"weapon_lightsaber"},
  72. command = "sith",
  73. max = 0,
  74. salary = 1000,
  75. admin = 0,
  76. vote = false,
  77. hasLicense = false,
  78. candemote = false,
  79. category = "Sith"
  80. })
  81.  
  82.  
  83.  
  84.  
  85. TEAM_CIV = DarkRP.createJob("Galactic Civilian", {
  86. color = Color(5, 0, 255, 255),
  87. model = {
  88. "models/player/scifi_louis.mdl",
  89. "models/player/scifi_male_05.mdl",
  90. "models/player/scifi_female_01.mdl"
  91. },
  92. description = [[You are a galactic citizen. Choose a side of the force.]],
  93. weapons = {},
  94. command = "civillian",
  95. max = 0,
  96. salary = 0,
  97. admin = 0,
  98. vote = false,
  99. hasLicense = false,
  100. candemote = false,
  101. category = "Civilian"
  102. })
  103.  
  104. TEAM_SATELE = DarkRP.createJob("Satele Shan", {
  105. color = Color(0, 255, 25, 255),
  106. model = {"models/grealms/characters/satele/satele.mdl"},
  107. description = [[You are Satele Shan, A powerful Jedi]],
  108. weapons = {"weapon_lightsaber"},
  109. command = "satele",
  110. max = 1,
  111. salary = 1000,
  112. admin = 0,
  113. vote = false,
  114. hasLicense = false,
  115. candemote = false,
  116. category = "Jedi"
  117. })
  118.  
  119. TEAM_ZAVROS = DarkRP.createJob("Ashara Zavros", {
  120. color = Color(0, 255, 25, 255),
  121. model = {"models/player/swtor/arsenic/gaz/asharazavros.mdl"},
  122. description = [[You are Ashara Zavros, A powerful Jedi]],
  123. weapons = {"weapon_lightsaber"},
  124. command = "zavros",
  125. max = 1,
  126. salary = 1000,
  127. admin = 0,
  128. vote = false,
  129. hasLicense = false,
  130. candemote = false,
  131. category = "Jedi"
  132. })
  133.  
  134.  
  135.  
  136. TEAM_JOKAL = DarkRP.createJob("Jokal", {
  137. color = Color(0, 255, 25, 255),
  138. model = {"models/player/swtor/arsenic/jokal/jokal.mdl"},
  139. description = [[You are Jokal, A powerful Jedi]],
  140. weapons = {"weapon_lightsaber"},
  141. command = "jokal",
  142. max = 1,
  143. salary = 1000,
  144. admin = 0,
  145. vote = false,
  146. hasLicense = false,
  147. candemote = false,
  148. category = "Jedi"
  149. })
  150.  
  151. TEAM_ZENGAL = DarkRP.createJob("Zengal", {
  152. color = Color(0, 255, 25, 255),
  153. model = {"models/player/swtor/arsenic/lucas/zengal.mdl"},
  154. description = [[You are Zengal, A powerful Jedi]],
  155. weapons = {"weapon_lightsaber"},
  156. command = "zengal",
  157. max = 1,
  158. salary = 1000,
  159. admin = 0,
  160. vote = false,
  161. hasLicense = false,
  162. candemote = false,
  163. category = "Jedi"
  164. })
  165.  
  166. TEAM_TOTOJO = DarkRP.createJob("Totojo", {
  167. color = Color(0, 255, 25, 255),
  168. model = {"models/player/swtor/arsenic/colonel/totojo.mdl"},
  169. description = [[You are Totojo, A powerful Jedi]],
  170. weapons = {"weapon_lightsaber"},
  171. command = "totojo",
  172. max = 1,
  173. salary = 1000,
  174. admin = 0,
  175. vote = false,
  176. hasLicense = false,
  177. candemote = false,
  178. category = "Jedi"
  179. })
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187. TEAM_JADUS = DarkRP.createJob("Jadus", {
  188. color = Color(255, 0, 0, 255),
  189. model = {"models/models/grealms/characters/darthjadus/darthjadus.mdl"},
  190. description = [[You are Jadus, A powerful Sith]],
  191. weapons = {"weapon_lightsaber"},
  192. command = "jadus",
  193. max = 1,
  194. salary = 1000,
  195. admin = 0,
  196. vote = false,
  197. hasLicense = false,
  198. candemote = false,
  199. category = "Sith"
  200. })
  201.  
  202. TEAM_NIHILUS = DarkRP.createJob("Nihilus", {
  203. color = Color(255, 0, 0, 255),
  204. model = {"models/grealms/characters/darthnihilus/darthnihilus.mdl"},
  205. description = [[You are Nihilus, A powerful Sith]],
  206. weapons = {"weapon_lightsaber"},
  207. command = "nihilus",
  208. max = 1,
  209. salary = 1000,
  210. admin = 0,
  211. vote = false,
  212. hasLicense = false,
  213. candemote = false,
  214. category = "Sith"
  215. })
  216.  
  217. TEAM_MARR = DarkRP.createJob("Marr", {
  218. color = Color(255, 0, 0, 255),
  219. model = {"models/grealms/characters/darthmarr/darthmarr.mdl"},
  220. description = [[You are Marr, A powerful Sith]],
  221. weapons = {"weapon_lightsaber"},
  222. command = "marr",
  223. max = 1,
  224. salary = 1000,
  225. admin = 0,
  226. vote = false,
  227. hasLicense = false,
  228. candemote = false,
  229. category = "Sith"
  230. })
  231.  
  232. TEAM_MALICE = DarkRP.createJob("Malice", {
  233. color = Color(255, 0, 0, 255),
  234. model = {"models/gonzo/darthmalice/darthmalice.mdl"},
  235. description = [[You are Malice, A powerful Sith]],
  236. weapons = {"weapon_lightsaber"},
  237. command = "malice",
  238. max = 1,
  239. salary = 1000,
  240. admin = 0,
  241. vote = false,
  242. hasLicense = false,
  243. candemote = false,
  244. category = "Sith"
  245. })
  246.  
  247. TEAM_MALGUS = DarkRP.createJob("Malgus", {
  248. color = Color(255, 0, 0, 255),
  249. model = {"models/grealms/characters/malgus/malgus.mdl"},
  250. description = [[You are Malgus, A powerful Sith]],
  251. weapons = {"weapon_lightsaber"},
  252. command = "malgus",
  253. max = 1,
  254. salary = 1000,
  255. admin = 0,
  256. vote = false,
  257. hasLicense = false,
  258. candemote = false,
  259. category = "Sith"
  260. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement