Advertisement
Guest User

Navy

a guest
May 28th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.92 KB | None | 0 0
  1. -- Engineer
  2. TEAM_ENGINEER = DarkRP.createJob("Engineer", {
  3. color = Color(255,255,255),
  4. model = ("models/player/clone engineer/ccgi engineer.mdl"),
  5. description = [[The clone engineers, also known as clone combat engineers, were members of special Combat Engineer Battalions in the Grand Army of the Republic that were well versed in a range of engineering techniques, from repairing vehicles to performing demolitions work.]],
  6. weapons = {"weapon_752_dc15s", "weapon_752_dc17"},
  7. command = "enginner",
  8. max = 3,
  9. salary = 750,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = false,
  13. candemote = true,
  14. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  15. customCheck = function(ply)return CLIENT or table.HasValue({'superadmin', 'admin', 'owner', 'engineer', 'moderator', 'senior_moderator',}, ply:GetNWString('usergroup')) end,
  16. CustomCheckFailMsg = "You are not part of Navy",
  17. category = "Navy"
  18. })
  19. -- Petty Officer
  20. TEAM_PETTYOFFICER = DarkRP.createJob("Petty Officer", {
  21. color = Color(255,255,255),
  22. model = ("models/player/bridgestaff/cgibridgestaff.mdl"),
  23. description = [[Bridge Staff, Spend most of there time on the bridge.]],
  24. weapons = {"weapon_752_dc15s", "weapon_752_dc17"},
  25. command = "officer",
  26. max = 5,
  27. salary = 750,
  28. admin = 0,
  29. vote = false,
  30. hasLicense = false,
  31. candemote = true,
  32. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  33. customCheck = function(ply)return CLIENT or table.HasValue({'superadmin', 'admin', 'owner', 'petty_officer', 'moderator', 'senior_moderator',}, ply:GetNWString('usergroup')) end,
  34. CustomCheckFailMsg = "You are not part of Navy",
  35. category = "Navy"
  36. })
  37. -- Bridge Staff
  38. TEAM_BRIDGESTAFF = DarkRP.createJob("Bridge Staff", {
  39. color = Color(255,255,255),
  40. model = ("models/npc/zak/zak.mdl"),
  41. description = [[Bridge Staff, Spend most of there time on the bridge.]],
  42. weapons = {"weapon_752_dc15s", "weapon_752_dc17"},
  43. command = "bridgestaff",
  44. max = 5,
  45. salary = 1000,
  46. admin = 0,
  47. vote = false,
  48. hasLicense = false,
  49. candemote = true,
  50. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  51. customCheck = function(ply)return CLIENT or table.HasValue({'superadmin', 'admin', 'owner', 'bridge_staff', 'moderator', 'senior_moderator',}, ply:GetNWString('usergroup')) end,
  52. CustomCheckFailMsg = "You are not part of Navy",
  53. category = "Navy"
  54. })
  55. -- Admiral Wullf
  56. TEAM_ADMIRAL = DarkRP.createJob("Admiral Wullf", {
  57. color = Color(255,255,255),
  58. model = ("models/player/wullf/wullf.mdl"),
  59. description = [[Bridge Staff, Spend most of there time on the bridge.]],
  60. weapons = {"weapon_752_dc15s", "weapon_752_dc17"},
  61. command = "admiralwulff",
  62. max = 1,
  63. salary = 1500,
  64. admin = 0,
  65. vote = false,
  66. hasLicense = false,
  67. candemote = true,
  68. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  69. customCheck = function(ply)return CLIENT or table.HasValue({'superadmin', 'admin', 'owner', 'admiral_wullf', 'moderator', 'senior_moderator',}, ply:GetNWString('usergroup')) end,
  70. CustomCheckFailMsg = "You are not part of Navy",
  71. category = "Navy"
  72. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement