Advertisement
Guest User

jobs

a guest
Sep 22nd, 2019
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. TEAM_TRTCOMMANDER = DarkRP.createJob("TRT Commander", {
  2. color = Color(18, 120, 240, 255),
  3. model = {"models/codmw2/codmw2m.mdl"},
  4. description = [[REDACTED]],
  5. weapons = {"cw_rinic_m4a1", "cw_blacks_deagle", "bkeycard", "dradio"},
  6. command = "trtcommander",
  7. max = 1,
  8. salary = 100,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "Tactical Response Team",
  14. PlayerSpawn = function(ply)
  15. ply:SetMaxHealth(100)
  16. ply:SetHealth(100)
  17. ply:SetArmor(100)
  18. end
  19. })
  20.  
  21. TEAM_TRTCSPEC = DarkRP.createJob("TRT Containment Specialist", {
  22. color = Color(18, 120, 240, 255),
  23. model = {"models/codmw2/t_codmw2.mdl"},
  24. description = [[REDACTED]],
  25. weapons = {"cw_rinic_m4a1", "cw_ber_fnp45", "bkeycard", "dradio"},
  26. command = "trtcspec",
  27. max = 3,
  28. salary = 100,
  29. admin = 0,
  30. vote = false,
  31. hasLicense = false,
  32. candemote = false,
  33. category = "Tactical Response Team",
  34. PlayerSpawn = function(ply)
  35. ply:SetMaxHealth(100)
  36. ply:SetHealth(100)
  37. ply:SetArmor(100)
  38. end
  39. })
  40.  
  41. TEAM_TRTCOMBATSPEC = DarkRP.createJob("TRT Combat Specialist", {
  42. color = Color(18, 120, 240, 255),
  43. model = {"models/codmw2/codmw2.mdl"},
  44. description = [[REDACTED]],
  45. weapons = {"cw_ber_fnp45", "bkeycard", "dradio", "cw_rinic_spas12"},
  46. command = "trtcombatspec",
  47. max = 3,
  48. salary = 100,
  49. admin = 0,
  50. vote = false,
  51. hasLicense = false,
  52. candemote = false,
  53. category = "Tactical Response Team",
  54. PlayerSpawn = function(ply)
  55. ply:SetMaxHealth(100)
  56. ply:SetHealth(100)
  57. ply:SetArmor(100)
  58. end
  59. })
  60.  
  61. TEAM_TRTSOLDIER = DarkRP.createJob("TRT Soldier", {
  62. color = Color(18, 120, 240, 255),
  63. model = {"models/codmw2/codmw2he.mdl"},
  64. description = [[REDACTED]],
  65. weapons = {"cw_ber_fnp45", "bkeycard", "dradio", "cw_rinic_m4a1"},
  66. command = "trtsoldier",
  67. max = 3,
  68. salary = 100,
  69. admin = 0,
  70. vote = false,
  71. hasLicense = false,
  72. candemote = false,
  73. category = "Tactical Response Team",
  74. PlayerSpawn = function(ply)
  75. ply:SetMaxHealth(100)
  76. ply:SetHealth(100)
  77. ply:SetArmor(100)
  78. end
  79. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement