Advertisement
Guest User

USMC Jobs

a guest
Dec 12th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. TEAM_USMCINF = DarkRP.createJob("Marines Infantry", {
  2. color = Color(178,34,34,0),
  3. model = {"models/player/pmc_6/pmc__06.mdl"},
  4. description = [["United States Marine Core Infantry"]],
  5. weapons = {"cw_g4p_m16a4","cw_g4p_fiveseven"},
  6. command = "usmcinf",
  7. max = 12,
  8. salary = 250,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = true,
  12. })
  13.  
  14. TEAM_USMCSNIPER = DarkRP.createJob("Marines Sniper", {
  15. color = Color(178,34,34,0),
  16. model = {"models/player/pmc_6/pmc__03.mdl"},
  17. description = [["United States Marine Core Sniper"]],
  18. weapons = {"cw_g4p_m98b","cw_g4p_fiveseven"},
  19. command = "usmcsniper",
  20. max = 4,
  21. salary = 250,
  22. admin = 0,
  23. vote = false,
  24. hasLicense = true,
  25. })
  26.  
  27. TEAM_USMCDEMO = DarkRP.createJob("Marines Demoman", {
  28. color = Color(178,34,34,0),
  29. model = {"models/player/pmc_6/pmc__13.mdl"},
  30. description = [["United States Marine Core Demoman"]],
  31. weapons = {"cw_m3super90","cw_g4p_fiveseven","fas2_ammobox","fas2_m67"},
  32. command = "usmcdemo",
  33. max = 4,
  34. salary = 250,
  35. admin = 0,
  36. vote = false,
  37. hasLicense = true,
  38. })
  39.  
  40. TEAM_USMCMED = DarkRP.createJob("Marines Combat Medic", {
  41. color = Color(178,34,34,0),
  42. model = {"models/player/pmc_6/pmc__06.mdl"},
  43. description = [["United States Marine Core Combat Medic"]],
  44. weapons = {"cw_g36c","cw_g4p_fiveseven","fas2_ifak"},
  45. command = "usmcmed",
  46. max = 4,
  47. salary = 250,
  48. admin = 0,
  49. vote = false,
  50. hasLicense = true,
  51. })
  52.  
  53. TEAM_USMCOFFICER = DarkRP.createJob("Marines Officer", {
  54. color = Color(178,34,34,0),
  55. model = {"models/player/pmc_6/pmc__07.mdl"},
  56. description = [["United States Marine Core Officer. You help lead the USMC"]],
  57. weapons = {"cw_g4p_m16a4","cw_deagle"},
  58. command = "usmcofficer",
  59. max = 2,
  60. salary = 350,
  61. admin = 0,
  62. vote = false,
  63. hasLicense = true,
  64. })
  65.  
  66. TEAM_USMCOFFICER = DarkRP.createJob("Marines General", {
  67. color = Color(178,34,34,0),
  68. model = {"models/player/pmc_6/pmc__01.mdl"},
  69. description = [["United States Marine Core General. You lead the entire USMC"]],
  70. weapons = {"cw_g4p_m16a4","cw_deagle","cw_g4p_m98b","fas2_ifak"},
  71. command = "usmcgen",
  72. max = 1,
  73. salary = 500,
  74. admin = 0,
  75. vote = false,
  76. hasLicense = true,
  77. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement