Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. TEAM_DRILLSERGEANTS = DarkRP.createJob("Drill Sergeant ", {
  2. category = "Drill Sergeants",
  3. color = Color(51, 51, 255, 255),
  4. model = "models/player/garc/garc.mdl",
  5. description = [[You are a Drill Sergeant, you specialize in training recruits, as well as troopers.]],
  6. weapons = {"Stunstick","weapon_752_dc15s","keys"},
  7. command = "drillsgt",
  8. max = 3,
  9. salary = 100,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = false,
  13. level = 30,
  14. hasRadio = true,
  15. canTalkToGlobal = true,
  16. customCheck = function(ply) return ply:GetNWString("usergroup") == "drillsgt" or ply:IsAdmin() end,
  17. CustomCheckFailMsg = "This is for Drill sergeants only!",
  18. PlayerSpawn = function(ply)
  19. ply:SetHealth(4000)
  20. ply:SetArmor(100)
  21. ply:SetRunSpeed(320)
  22. end,
  23. })
  24.  
  25. TEAM_DRILLSERGEANTS = DarkRP.createJob("Drill Staff Sergeant ", {
  26. category = "Drill Sergeants",
  27. color = Color(51, 51, 255, 255),
  28. model = "models/player/barc/cgicbarc.mdl",
  29. description = [[You are a Drill Sergeant, you specialize in training recruits, as well as troopers.]],
  30. weapons = {"Stunstick","weapon_752_dc15s","keys","arrest_stick"},
  31. command = "drillssgt",
  32. max = 3,
  33. salary = 100,
  34. admin = 0,
  35. vote = false,
  36. hasLicense = false,
  37. level = 40,
  38. hasRadio = true,
  39. canTalkToGlobal = true,
  40. customCheck = function(ply) return ply:GetNWString("usergroup") == "drillsgt" or ply:IsAdmin() end,
  41. CustomCheckFailMsg = "This is for Drill sergeants only!",
  42. PlayerSpawn = function(ply)
  43. ply:SetHealth(4000)
  44. ply:SetArmor(100)
  45. ply:SetRunSpeed(320)
  46. end,
  47. })
  48.  
  49. TEAM_DRILLSERGEANTS = DarkRP.createJob("Drill Sergeant First Class ", {
  50. category = "Drill Sergeants",
  51. color = Color(51, 51, 255, 255),
  52. model = "models/player/rarc/cgirarc.mdl",
  53. description = [[You are a Drill Sergeant, you specialize in training recruits, as well as troopers.]],
  54. weapons = {"Stunstick","weapon_752_dc15s","keys","arrest_stick"},
  55. command = "drillsfc",
  56. max = 2,
  57. salary = 100,
  58. admin = 0,
  59. vote = false,
  60. hasLicense = false,
  61. level = 70,
  62. hasRadio = true,
  63. canTalkToGlobal = true,
  64. customCheck = function(ply) return ply:GetNWString("usergroup") == "drillsgt" or ply:IsAdmin() end,
  65. CustomCheckFailMsg = "This is for Drill sergeants only!",
  66. PlayerSpawn = function(ply)
  67. ply:SetHealth(4000)
  68. ply:SetArmor(100)
  69. ply:SetRunSpeed(320)
  70. end,
  71. })
  72.  
  73. TEAM_DRILLSERGEANTS = DarkRP.createJob("Drill Master Sergeant", {
  74. category = "Drill Sergeants",
  75. color = Color(51, 51, 255, 255),
  76. model = "models/player/yarc/cgicyarc.mdl",
  77. description = [[You are a Drill Sergeant, you specialize in training recruits, as well as troopers.]],
  78. weapons = {"Stunstick","weapon_752_dc15s","keys","arrest_stick","weapon_752_dc17duel"},
  79. command = "drillmsgt",
  80. max = 1,
  81. salary = 100,
  82. admin = 0,
  83. vote = false,
  84. hasLicense = false,
  85. level = 90,
  86. hasRadio = true,
  87. canTalkToGlobal = true,
  88. customCheck = function(ply) return ply:GetNWString("usergroup") == "drillsgt" or ply:IsAdmin() end,
  89. CustomCheckFailMsg = "This is for Drill sergeants only!",
  90. PlayerSpawn = function(ply)
  91. ply:SetHealth(4000)
  92. ply:SetArmor(100)
  93. ply:SetRunSpeed(320)
  94. end,
  95. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement