Advertisement
Guest User

1

a guest
Oct 27th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. TEAM_USAP = DarkRP.createJob("USA Private", {
  2. color = Color(255, 0, 0, 255),
  3. model = {"models/codmw2/codmw2he.mdl"},
  4. description = [[You are a Private of the US Army.]],
  5. weapons = {"cw_g4p_glock17", "cw_ar15", "wep_jack_job_drpradio"},
  6. command = "USAP",
  7. max = 0,
  8. salary = 0,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = true,
  12. candemote = false,
  13. medic = false,
  14. chief = false,
  15. mayor = false,
  16. hobo = false,
  17. cook = false,
  18. category = "USA",
  19. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  20. ply:SetHealth(110)
  21. end,
  22. })
  23. TEAM_USAS = DarkRP.createJob("USA Sergeant", {
  24. color = Color(255, 0, 0, 255),
  25. model = {"models/codmw2/codmw2he.mdl"},
  26. description = [[You are a Sergeant of the US Army.]],
  27. weapons = {"cw_g4p_glock17", "cw_ar15", "wep_jack_job_drpradio"},
  28. command = "USAS",
  29. max = 0,
  30. salary = 0,
  31. admin = 0,
  32. vote = false,
  33. hasLicense = true,
  34. candemote = false,
  35. medic = false,
  36. chief = false,
  37. mayor = false,
  38. hobo = false,
  39. cook = false,
  40. category = "USA",
  41. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  42. ply:SetHealth(125)
  43. end,
  44. })
  45. TEAM_USALT = DarkRP.createJob("USA Lieutenant", {
  46. color = Color(255, 0, 0, 255),
  47. model = {"models/codmw2/codmw2hexe.mdl"},
  48. description = [[You are a Lieutenant of the US Army.]],
  49. weapons = {"cw_g4p_glock17", "cw_ar15", "wep_jack_job_drpradio"},
  50. command = "USALT",
  51. max = 0,
  52. salary = 0,
  53. admin = 0,
  54. vote = false,
  55. hasLicense = true,
  56. candemote = false,
  57. medic = false,
  58. chief = false,
  59. mayor = false,
  60. hobo = false,
  61. cook = false,
  62. category = "USA",
  63. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  64. ply:SetHealth(140)
  65. end,
  66. })
  67. TEAM_USACPT = DarkRP.createJob("USA Captain", {
  68. color = Color(255, 0, 0, 255),
  69. model = {"models/codmw2/codmw2m.mdl"},
  70. description = [[You are a Lieutenant of the US Army.]],
  71. weapons = {"cw_g4p_glock17", "cw_ar15", "wep_jack_job_drpradio"},
  72. command = "USACPT",
  73. max = 2,
  74. salary = 0,
  75. admin = 0,
  76. vote = false,
  77. hasLicense = true,
  78. candemote = false,
  79. medic = false,
  80. chief = false,
  81. mayor = false,
  82. hobo = false,
  83. cook = false,
  84. category = "USA",
  85. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  86. ply:SetHealth(150)
  87. end,
  88. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement