Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. TEAM_CWE = DarkRP.createJob("Chief Weapons Expert", {
  2. color = Color(6, 67, 165),
  3. model = {"models/smitty/bf2_reg/brown_officer/brown_officer.mdl"},
  4. description = [[This Is The Weapons Expert]],
  5. weapons = {"tfa_dc17chrome"},
  6. command = "cwe",
  7. max = 2,
  8. salary = 175,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = true,
  12. candemote = false,
  13. category = "Fleet",
  14. })
  15.  
  16. TEAM_MEDOFF = DarkRP.createJob("Medical Officer", {
  17. color = Color(6, 67, 165),
  18. model = {"models/smitty/bf2_reg/medic_officer/medic_officer.mdl"},
  19. description = [[This Is The Medical Officer]],
  20. weapons = {"med_kit", "tfa_steelapistol"},
  21. command = "medoff",
  22. max = 2,
  23. salary = 150,
  24. admin = 0,
  25. vote = false,
  26. hasLicense = true,
  27. candemote = false,
  28. category = "Fleet",
  29. })
  30.  
  31. TEAM_FLEETOFF = DarkRP.createJob("Fleet Officer", {
  32. color = Color(6, 67, 165),
  33. model = {"models/smitty/bf2_reg/blue_officer/blue_officer.mdl"},
  34. description = [[This Is The Fleet Officer]],
  35. weapons = {""},
  36. command = "fleetoff",
  37. max = 8,
  38. salary = 75,
  39. admin = 0,
  40. vote = false,
  41. hasLicense = true,
  42. candemote = false,
  43. category = "Fleet",
  44. })
  45.  
  46. TEAM_FLEETEN = DarkRP.createJob("Fleet Ensign", {
  47. color = Color(6, 67, 165),
  48. model = {"models/smitty/bf2_reg/clone_recruit/clone_recruit.mdl"},
  49. description = [[This Is The Fleet Ensign]],
  50. weapons = {""},
  51. command = "fleetensign",
  52. max = 10,
  53. salary = 50,
  54. admin = 0,
  55. vote = false,
  56. hasLicense = true,
  57. candemote = false,
  58. category = "Fleet",
  59. })
  60.  
  61. TEAM_ADMIRAL = DarkRP.createJob("Admiral", {
  62. color = Color(6, 67, 165),
  63. model = {"models/smitty/bf2_reg/black_officer/black_officer.mdl"},
  64. description = [[This Is The Admiral]],
  65. weapons = {""},
  66. command = "admiral",
  67. max = 1,
  68. salary = 225,
  69. admin = 0,
  70. vote = false,
  71. hasLicense = true,
  72. candemote = false,
  73. category = "Fleet",
  74. })
  75.  
  76. TEAM_VICEADMIRAL = DarkRP.createJob("Vice Admiral", {
  77. color = Color(6, 67, 165),
  78. model = {"models/smitty/bf2_reg/grey_officer/grey_officer.mdl"},
  79. description = [[This Is The Vice Admiral]],
  80. weapons = {""},
  81. command = "vadmiral",
  82. max = 1,
  83. salary = 205,
  84. admin = 0,
  85. vote = false,
  86. hasLicense = true,
  87. candemote = false,
  88. category = "Fleet",
  89. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement