Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.17 KB | None | 0 0
  1. TEAM_LEGIONARY = DarkRP.createJob("Imperial Legionary", {
  2. color = Color(255, 0, 0, 255),
  3. model = {"models/humans/group1m/male_04.mdl"},
  4. description = [[Imperial Legionary, the main fighting force of the Legion. The lowest rank.]],
  5. weapons = {},
  6. command = "legionary",
  7. max = 0,
  8. salary = 50,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "Citizens"
  14. })
  15.  
  16. TEAM_OPTIO = DarkRP.createJob("Imperial Optio", {
  17. color = Color(255, 0, 0, 255),
  18. model = {"models/humans/group1m/male_04.mdl"},
  19. description = [[Imperial Optio, second to lowest rank in the Legion.]],
  20. weapons = {},
  21. command = "optio",
  22. max = 0,
  23. salary = 50,
  24. admin = 0,
  25. vote = false,
  26. hasLicense = false,
  27. candemote = false,
  28. category = "Citizens"
  29. })
  30.  
  31. TEAM_DECURION = DarkRP.createJob("Imperial Decurion", {
  32. color = Color(255, 0, 0, 255),
  33. model = {"models/humans/group1m/male_04.mdl"},
  34. description = [[Imperial Decurion, first NCO rank of the Legion.]],
  35. weapons = {},
  36. command = "decurion",
  37. max = 0,
  38. salary = 50,
  39. admin = 0,
  40. vote = false,
  41. hasLicense = false,
  42. candemote = false,
  43. category = "Citizens"
  44. })
  45.  
  46. TEAM_DECANUS = DarkRP.createJob("Imperial Decanus", {
  47. color = Color(255, 0, 0, 255),
  48. model = {"models/humans/group1m/male_04.mdl"},
  49. description = [[Imperial Decanus, second NCO rank of the Legion.]],
  50. weapons = {},
  51. command = "decanus",
  52. max = 0,
  53. salary = 50,
  54. admin = 0,
  55. vote = false,
  56. hasLicense = false,
  57. candemote = false,
  58. category = "Citizens"
  59. })
  60.  
  61. TEAM_CENTURION = DarkRP.createJob("Imperial Centurion", {
  62. color = Color(255, 0, 0, 255),
  63. model = {"models/humans/group1m/male_04.mdl"},
  64. description = [[Imperial Centurion, the lowest Centurion rank of the Legion.]],
  65. weapons = {},
  66. command = "centurion",
  67. max = 0,
  68. salary = 50,
  69. admin = 0,
  70. vote = false,
  71. hasLicense = false,
  72. candemote = false,
  73. category = "Citizens"
  74. })
  75.  
  76. TEAM_PRIOR = DarkRP.createJob("Imperial Pilus Prior", {
  77. color = Color(255, 0, 0, 255),
  78. model = {"models/humans/group1m/male_04.mdl"},
  79. description = [[Imperial Pilus Prior, the second lowest Centurion rank of the Legion.]],
  80. weapons = {},
  81. command = "prior",
  82. max = 0,
  83. salary = 50,
  84. admin = 0,
  85. vote = false,
  86. hasLicense = false,
  87. candemote = false,
  88. category = "Citizens"
  89. })
  90.  
  91. TEAM_PRIMUS = DarkRP.createJob("Imperial Primus Pilus", {
  92. color = Color(255, 0, 0, 255),
  93. model = {"models/humans/group1m/male_04.mdl"},
  94. description = [[Imperial Primus Pilus, the highest Centurion rank of the Legion.]],
  95. weapons = {},
  96. command = "primus",
  97. max = 0,
  98. salary = 50,
  99. admin = 0,
  100. vote = false,
  101. hasLicense = false,
  102. candemote = false,
  103. category = "Citizens"
  104. })
  105.  
  106. TEAM_LOWER = DarkRP.createJob("Imperial Lower Legate", {
  107. color = Color(255, 0, 0, 255),
  108. model = {"models/humans/group1m/male_04.mdl"},
  109. description = [[Imperial Lower Legate, the General's main officers in the field.]],
  110. weapons = {},
  111. command = "lower",
  112. max = 0,
  113. salary = 50,
  114. admin = 0,
  115. vote = false,
  116. hasLicense = false,
  117. candemote = false,
  118. category = "Citizens"
  119. })
  120.  
  121. TEAM_UPPER = DarkRP.createJob("Imperial Upper Legate", {
  122. color = Color(255, 0, 0, 255),
  123. model = {"models/humans/group1m/male_04.mdl"},
  124. description = [[Imperial Upper Legate, the General's highest officers.]],
  125. weapons = {},
  126. command = "upper",
  127. max = 0,
  128. salary = 50,
  129. admin = 0,
  130. vote = false,
  131. hasLicense = false,
  132. candemote = false,
  133. category = "Citizens"
  134. })
  135.  
  136. TEAM_GENERAL = DarkRP.createJob("Imperial General", {
  137. color = Color(255, 0, 0, 255),
  138. model = {"models/humans/group1m/male_04.mdl"},
  139. description = [[The leader of the Imperial Legion.]],
  140. weapons = {},
  141. command = "general",
  142. max = 0,
  143. salary = 50,
  144. admin = 0,
  145. vote = false,
  146. hasLicense = false,
  147. candemote = false,
  148. category = "Citizens"
  149. })
  150.  
  151. TEAM_HIGHKING = DarkRP.createJob("Jarl of Solitude", {
  152. color = Color(255, 5, 5, 255),
  153. model = {"models/humans/group1m/male_04.mdl"},
  154. description = [[The High King is the big boy in charge of Skyrim.]],
  155. weapons = {},
  156. command = "highking",
  157. max = 1,
  158. salary = 300,
  159. admin = 0,
  160. vote = false,
  161. hasLicense = false,
  162. candemote = false,
  163. category = "Citizens"
  164. })
  165.  
  166. TEAM_JARL = DarkRP.createJob("Jarl of Windhelm", {
  167. color = Color(17, 150, 191, 255),
  168. model = {"models/humans/group1m/male_04.mdl"},
  169. description = [[The Jarl rules over Whiterun.]],
  170. weapons = {},
  171. command = "jarlofwindhelm",
  172. max = 1,
  173. salary = 300,
  174. admin = 0,
  175. vote = false,
  176. hasLicense = false,
  177. candemote = false,
  178. category = "Citizens"
  179. })
  180.  
  181. TEAM_SON = DarkRP.createJob("Son of the Jarl", {
  182. color = Color(17, 150, 191, 255),
  183. model = {"models/humans/group1m/male_04.mdl"},
  184. description = [[The Jarl's Son.]],
  185. weapons = {},
  186. command = "jarlson",
  187. max = 1,
  188. salary = 50,
  189. admin = 0,
  190. vote = false,
  191. hasLicense = false,
  192. candemote = false,
  193. category = "Citizens"
  194. })
  195.  
  196. TEAM_DAUGHTER = DarkRP.createJob("Daughter of the Jarl", {
  197. color = Color(17, 150, 191, 255),
  198. model = {"models/humans/group1m/male_04.mdl"},
  199. description = [[The Jarl's Daughter.]],
  200. weapons = {},
  201. command = "jarldaughter",
  202. max = 1,
  203. salary = 50,
  204. admin = 0,
  205. vote = false,
  206. hasLicense = false,
  207. candemote = false,
  208. category = "Citizens"
  209. })
  210.  
  211. TEAM_WHITERUNGUARD = DarkRP.createJob("Whiterun Guard", {
  212. color = Color(17, 150, 191, 255),
  213. model = {"models/humans/group1m/male_04.mdl"},
  214. description = [[The Whiterun Guard enforces the law.]],
  215. weapons = {},
  216. command = "whiterunguard",
  217. max = 0,
  218. salary = 50,
  219. admin = 0,
  220. vote = false,
  221. hasLicense = false,
  222. candemote = false,
  223. category = "Citizens"
  224. })
  225.  
  226. TEAM_WHITERUNCAPTAIN = DarkRP.createJob("Whiterun Captain", {
  227. color = Color(17, 150, 191, 255),
  228. model = {"models/humans/group1m/male_04.mdl"},
  229. description = [[The Whiterun Captain is in charge of the Guard.]],
  230. weapons = {},
  231. command = "whiteruncaptain",
  232. max = 1,
  233. salary = 50,
  234. admin = 0,
  235. vote = false,
  236. hasLicense = false,
  237. candemote = false,
  238. category = "Citizens"
  239. })
  240.  
  241. TEAM_FLEDGLING = DarkRP.createJob("Vampire Fledgling", {
  242. color = Color(82, 82, 82, 255),
  243. model = {"models/humans/group1m/male_04.mdl"},
  244. description = [[The newest addition to the Vampire family.]],
  245. weapons = {},
  246. command = "vampirefledgling",
  247. max = 0,
  248. salary = 50,
  249. admin = 0,
  250. vote = false,
  251. hasLicense = false,
  252. candemote = false,
  253. category = "Citizens"
  254. })
  255.  
  256. TEAM_BLOODED = DarkRP.createJob("Blooded Vampire", {
  257. color = Color(82, 82, 82, 255),
  258. model = {"models/humans/group1m/male_04.mdl"},
  259. description = [[A recognised fledgling, now a full member of the family.]],
  260. weapons = {},
  261. command = "bloodedvampire",
  262. max = 0,
  263. salary = 50,
  264. admin = 0,
  265. vote = false,
  266. hasLicense = false,
  267. candemote = false,
  268. category = "Citizens"
  269. })
  270.  
  271. TEAM_NIGHTSTALKER = DarkRP.createJob("Vampire Nightstalker", {
  272. color = Color(82, 82, 82, 255),
  273. model = {"models/humans/group1m/male_04.mdl"},
  274. description = [[A Vampire who's trained in the art of stealth.]],
  275. weapons = {},
  276. command = "vampirenightstalker",
  277. max = 0,
  278. salary = 50,
  279. admin = 0,
  280. vote = false,
  281. hasLicense = false,
  282. candemote = false,
  283. category = "Citizens"
  284. })
  285.  
  286. TEAM_VOLKIHAR = DarkRP.createJob("Volkihar Vampire", {
  287. color = Color(82, 82, 82, 255),
  288. model = {"models/humans/group1m/male_04.mdl"},
  289. description = [[A Vampire who's trained in magic.]],
  290. weapons = {},
  291. command = "vampirevolkihar",
  292. max = 0,
  293. salary = 50,
  294. admin = 0,
  295. vote = false,
  296. hasLicense = false,
  297. candemote = false,
  298. category = "Citizens"
  299. })
  300.  
  301. TEAM_VOLKIHARMASTER = DarkRP.createJob("Volkihar Master Vampire", {
  302. color = Color(82, 82, 82, 255),
  303. model = {"models/humans/group1m/male_04.mdl"},
  304. description = [[A master Vampire who's trained in the art of magic.]],
  305. weapons = {},
  306. command = "volkiharmaster",
  307. max = 0,
  308. salary = 50,
  309. admin = 0,
  310. vote = false,
  311. hasLicense = false,
  312. candemote = false,
  313. category = "Citizens"
  314. })
  315.  
  316. TEAM_NIGHTMASTER = DarkRP.createJob("Nightmaster Vampire", {
  317. color = Color(82, 82, 82, 255),
  318. model = {"models/humans/group1m/male_04.mdl"},
  319. description = [[A master Vampire who's trained in the art of stealth.]],
  320. weapons = {},
  321. command = "nightmaster",
  322. max = 0,
  323. salary = 50,
  324. admin = 0,
  325. vote = false,
  326. hasLicense = false,
  327. candemote = false,
  328. category = "Citizens"
  329. })
  330.  
  331. TEAM_VAMPIRELORD = DarkRP.createJob("Vampire Lord", {
  332. color = Color(82, 82, 82, 255),
  333. model = {"models/humans/group1m/male_04.mdl"},
  334. description = [[The lord of all vampires, the master of the night.]],
  335. weapons = {},
  336. command = "vampirelord",
  337. max = 1,
  338. salary = 300,
  339. admin = 0,
  340. vote = false,
  341. hasLicense = false,
  342. candemote = false,
  343. category = "Citizens"
  344. })
  345.  
  346. TEAM_NEWBLOOD = DarkRP.createJob("Dawnguard New-Blood", {
  347. color = Color(235, 235, 235, 255),
  348. model = {"models/humans/group1m/male_04.mdl"},
  349. description = [[The Dawnguard New-Blood is the newest member of the Dawnguard hunters.]],
  350. weapons = {},
  351. command = "newblood",
  352. max = 0,
  353. salary = 50,
  354. admin = 0,
  355. vote = false,
  356. hasLicense = false,
  357. candemote = false,
  358. category = "Citizens"
  359. })
  360.  
  361. TEAM_HUNTER = DarkRP.createJob("Dawnguard Hunter", {
  362. color = Color(235, 235, 235, 255),
  363. model = {"models/humans/group1m/male_04.mdl"},
  364. description = [[The Dawnguard Hunter is a trained member of the Dawnguard.]],
  365. weapons = {},
  366. command = "hunter",
  367. max = 0,
  368. salary = 50,
  369. admin = 0,
  370. vote = false,
  371. hasLicense = false,
  372. candemote = false,
  373. category = "Citizens"
  374. })
  375.  
  376. TEAM_TRACKER = DarkRP.createJob("Dawnguard Tracker", {
  377. color = Color(235, 235, 235, 255),
  378. model = {"models/humans/group1m/male_04.mdl"},
  379. description = [[The Dawnguard Tracker specialises in tracking werewolves.]],
  380. weapons = {},
  381. command = "tracker",
  382. max = 0,
  383. salary = 50,
  384. admin = 0,
  385. vote = false,
  386. hasLicense = false,
  387. candemote = false,
  388. category = "Citizens"
  389. })
  390.  
  391. TEAM_SERGEANT = DarkRP.createJob("Dawnguard Sergeant", {
  392. color = Color(235, 235, 235, 255),
  393. model = {"models/humans/group1m/male_04.mdl"},
  394. description = [[The Dawnguard Sergeant is the first NCO rank of the Dawnguard.]],
  395. weapons = {},
  396. command = "dsergeant",
  397. max = 0,
  398. salary = 50,
  399. admin = 0,
  400. vote = false,
  401. hasLicense = false,
  402. candemote = false,
  403. category = "Citizens"
  404. })
  405.  
  406. TEAM_CAPTAIN = DarkRP.createJob("Dawnguard Captain", {
  407. color = Color(235, 235, 235, 255),
  408. model = {"models/humans/group1m/male_04.mdl"},
  409. description = [[The Dawnguard Captain is the final CO rank of the Dawnguard.]],
  410. weapons = {},
  411. command = "captain",
  412. max = 0,
  413. salary = 50,
  414. admin = 0,
  415. vote = false,
  416. hasLicense = false,
  417. candemote = false,
  418. category = "Citizens"
  419. })
  420.  
  421. TEAM_DMASTER = DarkRP.createJob("Leader of the Dawnguard", {
  422. color = Color(235, 235, 235, 255),
  423. model = {"models/humans/group1m/male_04.mdl"},
  424. description = [[You are the leader of the Dawnguard faction.]],
  425. weapons = {},
  426. command = "dcommander",
  427. max = 1,
  428. salary = 300,
  429. admin = 0,
  430. vote = false,
  431. hasLicense = false,
  432. candemote = false,
  433. category = "Citizens"
  434. })
  435.  
  436. TEAM_CGREENHORN = DarkRP.createJob("Companions Whelp", {
  437. color = Color(53, 176, 65, 255),
  438. model = {"models/humans/group1m/male_04.mdl"},
  439. description = [[The Companions Greenhorn is the newest member of the Companions guild.]],
  440. weapons = {},
  441. command = "cgreenhorn",
  442. max = 0,
  443. salary = 50,
  444. admin = 0,
  445. vote = false,
  446. hasLicense = false,
  447. candemote = false,
  448. category = "Citizens"
  449. })
  450.  
  451. TEAM_CMEMBER = DarkRP.createJob("Companions Member", {
  452. color = Color(53, 176, 65, 255),
  453. model = {"models/humans/group1m/male_04.mdl"},
  454. description = [[The Companions Member is a trained, experienced member of the Companions.]],
  455. weapons = {},
  456. command = "cmember",
  457. max = 0,
  458. salary = 50,
  459. admin = 0,
  460. vote = false,
  461. hasLicense = false,
  462. candemote = false,
  463. category = "Citizens"
  464. })
  465.  
  466. TEAM_BLOODCIRCLE = DarkRP.createJob("Companions Blood Circle", {
  467. color = Color(53, 176, 65, 255),
  468. model = {"models/humans/group1m/male_04.mdl"},
  469. description = [[Not much is known about the Blood Circle other than that they take commanding roles within the Companions.]],
  470. weapons = {},
  471. command = "bloodcircle",
  472. max = 0,
  473. salary = 50,
  474. admin = 0,
  475. vote = false,
  476. hasLicense = false,
  477. candemote = false,
  478. category = "Citizens"
  479. })
  480.  
  481. TEAM_HARBINGER = DarkRP.createJob("Companions Harbinger", {
  482. color = Color(53, 176, 65, 255),
  483. model = {"models/humans/group1m/male_04.mdl"},
  484. description = [[The Companions Harbinger is the leader of the Companions.]],
  485. weapons = {},
  486. command = "harbinger",
  487. max = 1,
  488. salary = 300,
  489. admin = 0,
  490. vote = false,
  491. hasLicense = false,
  492. candemote = false,
  493. category = "Citizens"
  494. })
  495.  
  496. TEAM_NEWBLADE = DarkRP.createJob("Dark Brotherhood New-Blade", {
  497. color = Color(105, 23, 23, 255),
  498. model = {"models/humans/group1m/male_04.mdl"},
  499. description = [[The New-Blade is the newest member of the Dark Brotherhood]],
  500. weapons = {"blink"},
  501. command = "newblade",
  502. max = 0,
  503. salary = 50,
  504. admin = 0,
  505. vote = false,
  506. hasLicense = false,
  507. candemote = false,
  508. category = "Citizens"
  509. })
  510.  
  511. TEAM_ASSASSIN = DarkRP.createJob("Dark Brotherhood Assassin", {
  512. color = Color(105, 23, 23, 255),
  513. model = {"models/humans/group1m/male_04.mdl"},
  514. description = [[The Dark Brotherhood Assassin is a trained, experienced member of the Dark Brotherhood.]],
  515. weapons = {"blink"},
  516. command = "assassin",
  517. max = 0,
  518. salary = 50,
  519. admin = 0,
  520. vote = false,
  521. hasLicense = false,
  522. candemote = false,
  523. category = "Citizens"
  524. })
  525.  
  526. TEAM_ELIMINATOR = DarkRP.createJob("Dark Brotherhood Eliminator", {
  527. color = Color(105, 23, 23, 255),
  528. model = {"models/humans/group1m/male_04.mdl"},
  529. description = [[The Dark Brotherhood Eliminator is a brotherhood member who's trained in eliminating enemies of the Night Mother.]],
  530. weapons = {"blink"},
  531. command = "eliminator",
  532. max = 0,
  533. salary = 50,
  534. admin = 0,
  535. vote = false,
  536. hasLicense = false,
  537. candemote = false,
  538. category = "Citizens"
  539. })
  540.  
  541. TEAM_EXECUTIONER = DarkRP.createJob("Dark Brotherhood Executioner", {
  542. color = Color(105, 23, 23, 255),
  543. model = {"models/humans/group1m/male_04.mdl"},
  544. description = [[The Dark Brotherhood Executioner specialises in taking down members of the Dark Brotherhood who have violated the 5 tenets]],
  545. weapons = {"blink"},
  546. command = "executioner",
  547. max = 0,
  548. salary = 50,
  549. admin = 0,
  550. vote = false,
  551. hasLicense = false,
  552. candemote = false,
  553. category = "Citizens"
  554. })
  555.  
  556. TEAM_LISTENER = DarkRP.createJob("The Listener", {
  557. color = Color(105, 23, 23, 255),
  558. model = {"models/humans/group1m/male_04.mdl"},
  559. description = [[The Listener is the one who speaks to the night mother, abiding by her will. He then passes information down to the four Speakers.]],
  560. weapons = {"blink"},
  561. command = "listener",
  562. max = 1,
  563. salary = 50,
  564. admin = 0,
  565. vote = false,
  566. hasLicense = false,
  567. candemote = false,
  568. category = "Citizens"
  569. })
  570.  
  571. TEAM_SPEAKER = DarkRP.createJob("Dark Brotherhood Speakers", {
  572. color = Color(105, 23, 23, 255),
  573. model = {"models/humans/group1m/male_04.mdl"},
  574. description = [[The Speakers are in charge of the Dark Brotherhood, communicating the Night Mother's will down to the Brotherhood members.]],
  575. weapons = {"blink"},
  576. command = "speaker",
  577. max = 4,
  578. salary = 50,
  579. admin = 0,
  580. vote = false,
  581. hasLicense = false,
  582. candemote = false,
  583. category = "Citizens"
  584. })
  585.  
  586. TEAM_SILENCER = DarkRP.createJob("Dark Brotherhood Silencer", {
  587. color = Color(105, 23, 23, 255),
  588. model = {"models/humans/group1m/male_04.mdl"},
  589. description = [[The silencers are the Speakers' private assassins. They handle any of the Speakers' "personal business".]],
  590. weapons = {"blink"},
  591. command = "silencer",
  592. max = 4,
  593. salary = 50,
  594. admin = 0,
  595. vote = false,
  596. hasLicense = false,
  597. candemote = false,
  598. category = "Citizens"
  599. })
  600.  
  601. TEAM_ASSOCIATE = DarkRP.createJob("Thieves Guild Associate", {
  602. color = Color(112, 86, 33, 255),
  603. model = {"models/humans/group1m/male_04.mdl"},
  604. description = [[The Thieves Guild Associate is the lowest rank of the Thieves Guild and only does odd jobs here and there, has no access to their base.]],
  605. weapons = {},
  606. command = "associate",
  607. max = 0,
  608. salary = 50,
  609. admin = 0,
  610. vote = false,
  611. hasLicense = false,
  612. candemote = false,
  613. category = "Citizens"
  614. })
  615.  
  616. TEAM_PAGE = DarkRP.createJob("Thieves Guild Page", {
  617. color = Color(112, 86, 33, 255),
  618. model = {"models/humans/group1m/male_04.mdl"},
  619. description = [[The newest member of the Thieves Guild, has access to the hideout.]],
  620. weapons = {},
  621. command = "page",
  622. max = 0,
  623. salary = 50,
  624. admin = 0,
  625. vote = false,
  626. hasLicense = false,
  627. candemote = false,
  628. category = "Citizens"
  629. })
  630.  
  631. TEAM_OPERATIVE = DarkRP.createJob("Thieves Guild Operative", {
  632. color = Color(112, 86, 33, 255),
  633. model = {"models/humans/group1m/male_04.mdl"},
  634. description = [[Thieves Guild Operative, is used for the main operations and extortions of the Guild.]],
  635. weapons = {},
  636. command = "operative",
  637. max = 0,
  638. salary = 50,
  639. admin = 0,
  640. vote = false,
  641. hasLicense = false,
  642. candemote = false,
  643. category = "Citizens"
  644. })
  645.  
  646. TEAM_FENCE = DarkRP.createJob("Thieves Guild Fence", {
  647. color = Color(112, 86, 33, 255),
  648. model = {"models/humans/group1m/male_04.mdl"},
  649. description = [[Thieves Guild Fence, used mainly for getting rid of any bounties and/or stolen items. Knows where to sell items that have come into your hands in any suspicious ways.]],
  650. weapons = {},
  651. command = "fence",
  652. max = 0,
  653. salary = 50,
  654. admin = 0,
  655. vote = false,
  656. hasLicense = false,
  657. candemote = false,
  658. category = "Citizens"
  659. })
  660.  
  661. TEAM_MASTERMIND = DarkRP.createJob("Thieves Guild Mastermind", {
  662. color = Color(112, 86, 33, 255),
  663. model = {"models/humans/group1m/male_04.mdl"},
  664. description = [[Thieves Guild Mastermind, advisor of the Guild Master.]],
  665. weapons = {},
  666. command = "mastermind",
  667. max = 0,
  668. salary = 50,
  669. admin = 0,
  670. vote = false,
  671. hasLicense = false,
  672. candemote = false,
  673. category = "Citizens"
  674. })
  675.  
  676. TEAM_TGUILDMASTER = DarkRP.createJob("Thieves Guild Master", {
  677. color = Color(112, 86, 33, 255),
  678. model = {"models/humans/group1m/male_04.mdl"},
  679. description = [[The Guild Master, the one in charge of it all.]],
  680. weapons = {},
  681. command = "tguildmaster",
  682. max = 0,
  683. salary = 50,
  684. admin = 0,
  685. vote = false,
  686. hasLicense = false,
  687. candemote = false,
  688. category = "Citizens"
  689. })
  690.  
  691. TEAM_MINITIATE = DarkRP.createJob("Mages Guild Initiate", {
  692. color = Color(172, 89, 207, 255),
  693. model = {"models/humans/group1m/male_04.mdl"},
  694. description = [[Mages Guild Initiate, the newest addition to the Guild.]],
  695. weapons = {},
  696. command = "minitiate",
  697. max = 0,
  698. salary = 50,
  699. admin = 0,
  700. vote = false,
  701. hasLicense = false,
  702. candemote = false,
  703. category = "Citizens"
  704. })
  705.  
  706. TEAM_FAMILIAR = DarkRP.createJob("Mages Guild Familiar", {
  707. color = Color(172, 89, 207, 255),
  708. model = {"models/humans/group1m/male_04.mdl"},
  709. description = [[Mages Guild Familiar, one who's trained in the art of Magic.]],
  710. weapons = {},
  711. command = "familiar",
  712. max = 0,
  713. salary = 50,
  714. admin = 0,
  715. vote = false,
  716. hasLicense = false,
  717. candemote = false,
  718. category = "Citizens"
  719. })
  720.  
  721. TEAM_ARTISAN = DarkRP.createJob("Mages Guild Artisan", {
  722. color = Color(172, 89, 207, 255),
  723. model = {"models/humans/group1m/male_04.mdl"},
  724. description = [[Mages Guild Artisan, a member who has no restrictions within the Guild.]],
  725. weapons = {},
  726. command = "artisan",
  727. max = 0,
  728. salary = 50,
  729. admin = 0,
  730. vote = false,
  731. hasLicense = false,
  732. candemote = false,
  733. category = "Citizens"
  734. })
  735.  
  736. TEAM_SCHOLAR = DarkRP.createJob("Mages Guild Scholar", {
  737. color = Color(172, 89, 207, 255),
  738. model = {"models/humans/group1m/male_04.mdl"},
  739. description = [[Mages Guild Scholar, tasked with teaching the Guild members the art of magic.]],
  740. weapons = {},
  741. command = "scholar",
  742. max = 0,
  743. salary = 50,
  744. admin = 0,
  745. vote = false,
  746. hasLicense = false,
  747. candemote = false,
  748. category = "Citizens"
  749. })
  750.  
  751. TEAM_ARCHMAGE = DarkRP.createJob("Mages Guild Arch-Mage", {
  752. color = Color(172, 89, 207, 255),
  753. model = {"models/humans/group1m/male_04.mdl"},
  754. description = [[The Arch-Mage, second in command to the Grand Sage]],
  755. weapons = {},
  756. command = "archmage",
  757. max = 0,
  758. salary = 50,
  759. admin = 0,
  760. vote = false,
  761. hasLicense = false,
  762. candemote = false,
  763. category = "Citizens"
  764. })
  765.  
  766. TEAM_GRANDSAGE = DarkRP.createJob("Mages Guild Grand Sage", {
  767. color = Color(172, 89, 207, 255),
  768. model = {"models/humans/group1m/male_04.mdl"},
  769. description = [[The Grand Sage, the one in charge of the Guild.]],
  770. weapons = {},
  771. command = "grandsage",
  772. max = 0,
  773. salary = 50,
  774. admin = 0,
  775. vote = false,
  776. hasLicense = false,
  777. candemote = false,
  778. category = "Citizens"
  779. })
  780.  
  781. TEAM_PRINCE = DarkRP.createJob("Prince", {
  782. color = Color(250, 6, 6, 255),
  783. model = {"models/humans/group1m/male_04.mdl"},
  784. description = [[The son of the High King of Skyrim.]],
  785. weapons = {},
  786. command = "prince",
  787. max = 1,
  788. salary = 50,
  789. admin = 0,
  790. vote = false,
  791. hasLicense = false,
  792. candemote = false,
  793. category = "Citizens"
  794. })
  795.  
  796. TEAM_PRINCESS = DarkRP.createJob("Princess", {
  797. color = Color(250, 6, 6, 255),
  798. model = {"models/humans/group1m/male_04.mdl"},
  799. description = [[The daughter of the High King of Skyrim.]],
  800. weapons = {},
  801. command = "princess",
  802. max = 1,
  803. salary = 50,
  804. admin = 0,
  805. vote = false,
  806. hasLicense = false,
  807. candemote = false,
  808. category = "Citizens"
  809. })
  810.  
  811. TEAM_VSON = DarkRP.createJob("Vampire Lord's Son", {
  812. color = Color(82, 82, 82, 255),
  813. model = {"models/humans/group1m/male_04.mdl"},
  814. description = [[The son of the Vampire Lord]],
  815. weapons = {},
  816. command = "vson",
  817. max = 1,
  818. salary = 50,
  819. admin = 0,
  820. vote = false,
  821. hasLicense = false,
  822. candemote = false,
  823. category = "Citizens"
  824. })
  825.  
  826. TEAM_VDAUGHTER = DarkRP.createJob("Vampire Lord's Daughter", {
  827. color = Color(34, 85, 85, 255),
  828. model = {"models/humans/group1m/male_04.mdl"},
  829. description = [[The daughter of the Vampire Lord]],
  830. weapons = {},
  831. command = "vdaughter",
  832. max = 1,
  833. salary = 50,
  834. admin = 0,
  835. vote = false,
  836. hasLicense = false,
  837. candemote = false,
  838. category = "Citizens"
  839. })
  840.  
  841. TEAM_DRENG = DarkRP.createJob("Stormcloak Dreng", {
  842. color = Color(50, 129, 232, 255),
  843. model = {"models/humans/group1m/male_04.mdl"},
  844. description = [[A newly enlisted member of the Stormcloak Rebellion]],
  845. weapons = {},
  846. command = "dreng",
  847. max = 0,
  848. salary = 50,
  849. admin = 0,
  850. vote = false,
  851. hasLicense = false,
  852. candemote = false,
  853. category = "Citizens"
  854. })
  855.  
  856. TEAM_FRIHALS = DarkRP.createJob("Stormcloak Fri-Hals", {
  857. color = Color(50, 129, 232, 255),
  858. model = {"models/humans/group1m/male_04.mdl"},
  859. description = [[The main fighting force of the Stormcloak Rebellion.]],
  860. weapons = {},
  861. command = "frihals",
  862. max = 0,
  863. salary = 50,
  864. admin = 0,
  865. vote = false,
  866. hasLicense = false,
  867. candemote = false,
  868. category = "Citizens"
  869. })
  870.  
  871. TEAM_ICEVEIGNS = DarkRP.createJob("Stormcloak Ice-Veigns", {
  872. color = Color(50, 129, 232, 255),
  873. model = {"models/humans/group1m/male_04.mdl"},
  874. description = [[A notable soldier in the Stormcloak Rebellion, has been recognised for his skill in battle.]],
  875. weapons = {},
  876. command = "iceveigns",
  877. max = 0,
  878. salary = 50,
  879. admin = 0,
  880. vote = false,
  881. hasLicense = false,
  882. candemote = false,
  883. category = "Citizens"
  884. })
  885.  
  886. TEAM_VALKYRION = DarkRP.createJob("Stormcloak Valkyrion", {
  887. color = Color(50, 129, 232, 255),
  888. model = {"models/humans/group1m/male_04.mdl"},
  889. description = [[The first NCO rank of the Stormcloak Rebellion, usually used as a Recruiter.]],
  890. weapons = {},
  891. command = "valkyrion",
  892. max = 0,
  893. salary = 50,
  894. admin = 0,
  895. vote = false,
  896. hasLicense = false,
  897. candemote = false,
  898. category = "Citizens"
  899. })
  900.  
  901. TEAM_HERSIR = DarkRP.createJob("Stormcloak Hersir", {
  902. color = Color(50, 129, 232, 255),
  903. model = {"models/humans/group1m/male_04.mdl"},
  904. description = [[The second NCO rank of the Stormcloak Rebellion, usually used as a trainer.]],
  905. weapons = {},
  906. command = "hersir",
  907. max = 0,
  908. salary = 50,
  909. admin = 0,
  910. vote = false,
  911. hasLicense = false,
  912. candemote = false,
  913. category = "Citizens"
  914. })
  915.  
  916. TEAM_STALLARI = DarkRP.createJob("Stormcloak Stallari", {
  917. color = Color(50, 129, 232, 255),
  918. model = {"models/humans/group1m/male_04.mdl"},
  919. description = [[The first CO rank of the Stormcloak Rebellion.]],
  920. weapons = {},
  921. command = "stallari",
  922. max = 0,
  923. salary = 50,
  924. admin = 0,
  925. vote = false,
  926. hasLicense = false,
  927. candemote = false,
  928. category = "Citizens"
  929. })
  930.  
  931. TEAM_BERSERKER = DarkRP.createJob("Stormcloak Berserker", {
  932. color = Color(50, 129, 232, 255),
  933. model = {"models/humans/group1m/male_04.mdl"},
  934. description = [[The second to last CO rank of the Stormcloak Rebellion.]],
  935. weapons = {},
  936. command = "berserker",
  937. max = 0,
  938. salary = 50,
  939. admin = 0,
  940. vote = false,
  941. hasLicense = false,
  942. candemote = false,
  943. category = "Citizens"
  944. })
  945.  
  946. TEAM_STORMBLADE = DarkRP.createJob("Stormcloak Stormblade", {
  947. color = Color(50, 129, 232, 255),
  948. model = {"models/humans/group1m/male_04.mdl"},
  949. description = [[The last CO rank of the Stormcloak Rebellion.]],
  950. weapons = {},
  951. command = "stormblade",
  952. max = 0,
  953. salary = 50,
  954. admin = 0,
  955. vote = false,
  956. hasLicense = false,
  957. candemote = false,
  958. category = "Citizens"
  959. })
  960.  
  961. TEAM_SGENERAL = DarkRP.createJob("Stormcloak General", {
  962. color = Color(50, 129, 232, 255),
  963. model = {"models/humans/group1m/male_04.mdl"},
  964. description = [[The leader of the Stormcloak Rebellion.]],
  965. weapons = {},
  966. command = "sgeneral",
  967. max = 1,
  968. salary = 50,
  969. admin = 0,
  970. vote = false,
  971. hasLicense = false,
  972. candemote = false,
  973. category = "Citizens"
  974. })
  975.  
  976. TEAM_QUEEN = DarkRP.createJob("Queen", {
  977. color = Color(235, 0, 0, 255),
  978. model = {"models/humans/group1m/male_04.mdl"},
  979. description = [[The woman whomst is married to thou high king of Skyrimikus]],
  980. weapons = {},
  981. command = "queen",
  982. max = 1,
  983. salary = 50,
  984. admin = 0,
  985. vote = false,
  986. hasLicense = false,
  987. candemote = false
  988. })
  989.  
  990. TEAM_BLADEMASTER = DarkRP.createJob("Blade Grandmaster", {
  991. color = Color(235, 0, 0, 255),
  992. model = {"models/humans/group1m/male_04.mdl"},
  993. description = [[The woman whomst is married to thou high king of Skyrimikus]],
  994. weapons = {},
  995. command = "bladegm",
  996. max = 1,
  997. salary = 50,
  998. admin = 0,
  999. vote = false,
  1000. hasLicense = false,
  1001. candemote = false
  1002. })
  1003.  
  1004. TEAM_KSISTER = DarkRP.createJob("Knight Sister",{
  1005. color = Color(235, 0, 0, 255),
  1006. model = {"models/humans/group1m/male_04.mdl"},
  1007. description = [[The woman whomst is married to thou high king of Skyrimikus]],
  1008. weapons = {},
  1009. command = "ksister",
  1010. max = 1,
  1011. salary = 50,
  1012. admin = 0,
  1013. vote = false,
  1014. hasLicense = false,
  1015. candemote = false
  1016. })
  1017.  
  1018. TEAM_KBROTHER = DarkRP.createJob("Knight Brother", {
  1019. color = Color(235, 0, 0, 255),
  1020. model = {"models/humans/group1m/male_04.mdl"},
  1021. description = [[The woman whomst is married to thou high king of Skyrimikus]],
  1022. weapons = {},
  1023. command = "kbrother",
  1024. max = 1,
  1025. salary = 50,
  1026. admin = 0,
  1027. vote = false,
  1028. hasLicense = false,
  1029. candemote = false
  1030. })
  1031.  
  1032. TEAM_BARCHIVISTS = DarkRP.createJob("Archivists", {
  1033. color = Color(235, 0, 0, 255),
  1034. model = {"models/humans/group1m/male_04.mdl"},
  1035. description = [[The woman whomst is married to thou high king of Skyrimikus]],
  1036. weapons = {},
  1037. command = "archivists",
  1038. max = 1,
  1039. salary = 50,
  1040. admin = 0,
  1041. vote = false,
  1042. hasLicense = false,
  1043. candemote = false
  1044. })
  1045.  
  1046. TEAM_BNEWBLOOD = DarkRP.createJob("Akaviri New Blood", {
  1047. color = Color(235, 0, 0, 255),
  1048. model = {"models/humans/group1m/male_04.mdl"},
  1049. description = [[The woman whomst is married to thou high king of Skyrimikus]],
  1050. weapons = {},
  1051. command = "bladenewblood",
  1052. max = 1,
  1053. salary = 50,
  1054. admin = 0,
  1055. vote = false,
  1056. hasLicense = false,
  1057. candemote = false
  1058. })
  1059.  
  1060. TEAM_DPRINCE = DarkRP.createJob("Daedric Prince", {
  1061. color = Color(235, 0, 0, 255),
  1062. model = {"models/humans/group1m/male_04.mdl"},
  1063. description = [[The woman whomst is married to thou high king of Skyrimikus]],
  1064. weapons = {},
  1065. command = "dprince",
  1066. max = 1,
  1067. salary = 50,
  1068. admin = 0,
  1069. vote = false,
  1070. hasLicense = false,
  1071. candemote = false
  1072. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement