Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. TEAM_104thCPLCOM = DarkRP.createJob("104th CPL Comet", {
  2. color = Color(133, 123, 123, 255),
  3. model = {"models/sample/104th/comet/comet.mdl"},
  4. description = [[ Du bist CPL Comet. ]],
  5. weapons = {"rw_sw_dc15s","rw_sw_dc15a","rw_sw_dc17","realistic_hook"},
  6. command = "104thComet",
  7. max = 0,
  8. salary = 500,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "104th",
  14. ammo = {
  15. ["pulse_ammo"] = 800
  16. },
  17. PlayerSpawn = function(ply)
  18. ply:SetMaxHealth(105)
  19. ply:SetHealth(105)
  20. ply:SetArmor(100)
  21. ply:SetMaxArmor(100)
  22. end
  23. })
  24.  
  25. TEAM_104thSGTSINK = DarkRP.createJob("104th SGT Sinker", {
  26. color = Color(133, 123, 123, 255),
  27. model = {"models/sample/104th/sinker/sinker.mdl"},
  28. description = [[ Du bist SGT Sinker. ]],
  29. weapons = {"rw_sw_dc15s","rw_sw_dc15a","rw_sw_dc17","realistic_hook"},
  30. command = "104thComet",
  31. max = 0,
  32. salary = 500,
  33. admin = 0,
  34. vote = false,
  35. hasLicense = false,
  36. candemote = false,
  37. category = "104th",
  38. ammo = {
  39. ["pulse_ammo"] = 800
  40. },
  41. PlayerSpawn = function(ply)
  42. ply:SetMaxHealth(110)
  43. ply:SetHealth(110)
  44. ply:SetArmor(100)
  45. ply:SetMaxArmor(100)
  46. end
  47. })
  48.  
  49. TEAM_104thSGTBoost = DarkRP.createJob("104th SGT Boost", {
  50. color = Color(133, 123, 123, 255),
  51. model = {"models/sample/104th/boost/boost.mdl"},
  52. description = [[ Du bist SGT Boost. ]],
  53. weapons = {"rw_sw_dc15s","rw_sw_dc15a","rw_sw_dc17","realistic_hook"},
  54. command = "104thBoost",
  55. max = 0,
  56. salary = 500,
  57. admin = 0,
  58. vote = false,
  59. hasLicense = false,
  60. candemote = false,
  61. category = "104th",
  62. ammo = {
  63. ["pulse_ammo"] = 800
  64. },
  65. PlayerSpawn = function(ply)
  66. ply:SetMaxHealth(110)
  67. ply:SetHealth(110)
  68. ply:SetArmor(100)
  69. ply:SetMaxArmor(100)
  70. end
  71. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement