Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 KB | None | 0 0
  1. TEAM_5THCMD = DarkRP.createJob("5th Fleet Security Commander", {
  2. color = Color(204, 6, 235, 255),
  3. model = {
  4. "models/player/smitty/bf2_reg/5th_commander/5th_commander.mdl",
  5. },
  6. description = [[You are a Commanding Officer of 5th Fleet Security!]],
  7. weapons = {"pocket", "keys", "odd_dc15a", "odd_dc15s", "tfa_sw_dc17dual", "weapon_stunstick", "arrest_stick", "unarrest_stick", "lockpick"},
  8. command = "5THCMD",
  9. max = 2,
  10. salary = 400,
  11. admin = 0,
  12. vote = false,
  13. hasLicense = false,
  14. candemote = false,
  15. category = "5th Fleet Security",
  16. PlayerSpawn = function(ply)
  17. ply:SetMaxHealth(250)
  18. ply:SetHealth(250)
  19. ply:SetArmor(150)
  20. end
  21. })
  22.  
  23. TEAM_5THOFC = DarkRP.createJob("5th Fleet Security Officer", {
  24. color = Color(204, 6, 235, 255),
  25. model = {
  26. "models/player/smitty/bf2_reg/5th_captain/5th_captain.mdl",
  27. },
  28. description = [[You are an Officer of the 5th fleet Security!]],
  29. weapons = {"pocket", "keys", "odd_dc15a", "odd_dc15s", "tfa_sw_dc17dual", "weapon_stunstick", "arrest_stick", "unarrest_stick", "lockpick"},
  30. command = "5THOFC",
  31. max = 10,
  32. salary = 250,
  33. admin = 0,
  34. vote = false,
  35. hasLicense = false,
  36. candemote = false,
  37. category = "5th Fleet Security",
  38. PlayerSpawn = function(ply)
  39. ply:SetMaxHealth(150)
  40. ply:SetHealth(150)
  41. ply:SetArmor(50)
  42. end
  43. })
  44.  
  45. TEAM_5THNCO = DarkRP.createJob("5th Fleet Security NCO", {
  46. color = Color(204, 6, 235, 255),
  47. model = {
  48. "models/player/smitty/bf2_reg/5th_sergeant/5th_sergeant.mdl",
  49. },
  50. description = [[You are an NCO of the 5th fleet Security!]],
  51. weapons = {"pocket", "keys", "odd_dc15a", "odd_dc15s", "weapon_stunstick", "arrest_stick", "unarrest_stick", "lockpick"},
  52. command = "5THNCO",
  53. max = 20,
  54. salary = 150,
  55. admin = 0,
  56. vote = false,
  57. hasLicense = false,
  58. candemote = false,
  59. category = "5th Fleet Security",
  60. PlayerSpawn = function(ply)
  61. ply:SetMaxHealth(150)
  62. ply:SetHealth(150)
  63. ply:SetArmor(50)
  64. end
  65. })
  66.  
  67. TEAM_5THTRP = DarkRP.createJob("5th Fleet Security Trooper", {
  68. color = Color(204, 6, 235, 255),
  69. model = {
  70. "models/player/smitty/bf2_reg/5th_trooper/5th_trooper.mdl",
  71. },
  72. description = [[You are a Trooper of the 5th fleet Security!]],
  73. weapons = {"pocket", "keys", "odd_dc15a", "odd_dc15s", "weapon_stunstick", "arrest_stick", "unarrest_stick", "lockpick"},
  74. command = "5THTRP",
  75. max = 40,
  76. salary = 100,
  77. admin = 0,
  78. vote = false,
  79. hasLicense = false,
  80. candemote = false,
  81. category = "5th Fleet Security",
  82. PlayerSpawn = function(ply)
  83. ply:SetMaxHealth(100)
  84. ply:SetHealth(100)
  85. ply:SetArmor(0)
  86. end
  87. })
  88.  
  89. TEAM_5THCQCE = DarkRP.createJob("5th Fleet Security CQC Enforcer", {
  90. color = Color(204, 6, 235, 255),
  91. model = {
  92. "models/player/smitty/bf2_reg/5th_lieutenant/5th_lieutenant.mdl",
  93. },
  94. description = [[You are an CQC Enforcer of the 5th fleet Security!]],
  95. weapons = {"pocket", "keys", "odd_dc15a", "odd_dc15s", "weapon_stunstick", "arrest_stick", "unarrest_stick", "lockpick"},
  96. command = "5THCQCE",
  97. max = 6,
  98. salary = 200,
  99. admin = 0,
  100. vote = false,
  101. hasLicense = false,
  102. candemote = false,
  103. category = "5th Fleet Security",
  104. PlayerSpawn = function(ply)
  105. ply:SetMaxHealth(175)
  106. ply:SetHealth(175)
  107. ply:SetArmor(75)
  108. end
  109. })
  110.  
  111. TEAM_5THRC = DarkRP.createJob("5th Fleet Security Riot Control", {
  112. color = Color(204, 6, 235, 255),
  113. model = {
  114. "models/player/smitty/bf2_reg/5th_major/5th_major.mdl",
  115. },
  116. description = [[You are an Riot Control of the 5th fleet Security!]],
  117. weapons = {"pocket", "keys", "odd_dc15a", "odd_dc15s", "weapon_stunstick", "arrest_stick", "unarrest_stick", "lockpick", "shizuwishield"},
  118. command = "5THRC",
  119. max = 6,
  120. salary = 300,
  121. admin = 0,
  122. vote = false,
  123. hasLicense = false,
  124. candemote = false,
  125. category = "5th Fleet Security",
  126. PlayerSpawn = function(ply)
  127. ply:SetMaxHealth(200)
  128. ply:SetHealth(200)
  129. ply:SetArmor(100)
  130. end
  131. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement