Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. TEAM_RANCORCOMMANDER = DarkRP.createJob("Rancor Commander", {
  2. color = Color(255, 171, 0, 255),
  3. model = {"models/player/venator/tk_arc/tk_arc.mdl"},
  4. description = [[You Are Rancor Battalion Commander, Elite Guard Of The General And Front Line Assult Special Forces.]],
  5. weapons = {"seal6-c4", "tfa_sw_dual_dl44", "tfa_swch_z6_green", "tfa_e11d_extended"},
  6. command = "Rancorcmdr",
  7. max = 1,
  8. salary = 500,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. category = "Rancor Battalion",
  13. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("570") ply:SetGravity(1) return CLIENT end,
  14. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end,
  15. customCheck = function(ply) return CLIENT or table.HasValue({"Rancorcmdr"}, ply:GetUserGroup()) or ply:IsAdmin() end,
  16. CustomCheckFailMsg = "You Are Not White-listed."
  17. })
  18. TEAM_RANCORSNIPER = DarkRP.createJob("Colt", {
  19. color = Color(255, 171, 0, 255),
  20. model = {"models/player/venator/tk_arc/tk_colt.mdl"},
  21. description = [[You Are Rancor Battalion Sniper, Elite Guard Of The General And Front Line Assult Special Forces.]],
  22. weapons = {"tfa_imperialdisruptor_extended", "tfa_wsp_2", "unfuckedgrapple", "tfa_krennic_darkish", "weapon_jetpack"},
  23. command = "Rancorsniper",
  24. max = 1,
  25. salary = 500,
  26. admin = 0,
  27. vote = false,
  28. hasLicense = false,
  29. category = "Rancor Battalion",
  30. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("200") ply:SetGravity(1) return CLIENT end,
  31. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end,
  32. customCheck = function(ply) return CLIENT or table.HasValue({"Rancorsniper"}, ply:GetUserGroup()) or ply:IsAdmin() end,
  33. CustomCheckFailMsg = "You Are Not White-listed."
  34. })
  35. TEAM_RANCORHEAVY = DarkRP.createJob("Havoc", {
  36. color = Color(255, 171, 0, 255),
  37. model = {"models/player/venator/tk_arc/tk_havoc.mdl"},
  38. description = [[You Are Rancor Battalion Heavy, Elite Guard Of The General And Front Line Assult Special Forces.]],
  39. weapons = {"tfa_swch_z6_green", "tfa_752_dlt19", "tfa_sw_dual_dl44", "unfuckedgrapple"},
  40. command = "Rancorheavy",
  41. max = 1,
  42. salary = 500,
  43. admin = 0,
  44. vote = false,
  45. hasLicense = false,
  46. category = "Rancor Battalion",
  47. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("500") ply:SetGravity(1) return CLIENT end,
  48. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end,
  49. customCheck = function(ply) return CLIENT or table.HasValue({"Rancorheavy"}, ply:GetUserGroup()) or ply:IsAdmin() end,
  50. CustomCheckFailMsg = "You Are Not White-listed."
  51. })
  52. TEAM_RANCORBASIC = DarkRP.createJob("Blitz", {
  53. color = Color(255, 171, 0, 255),
  54. model = {"models/player/venator/tk_arc/tk_blitz.mdl"},
  55. description = [[You Are Rancor Battalion, Elite Guard Of The General And Front Line Assult Special Forces.]],
  56. weapons = {"unfuckedgrapple", "tfa_rt97c_extended", "tfa_kotor_bp_4"},
  57. command = "Rancorbasic",
  58. max = 1,
  59. salary = 500,
  60. admin = 0,
  61. vote = false,
  62. hasLicense = false,
  63. category = "Rancor Battalion",
  64. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  65. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end,
  66. customCheck = function(ply) return CLIENT or table.HasValue({"Rancorbasic"}, ply:GetUserGroup()) or ply:IsAdmin() end,
  67. CustomCheckFailMsg = "You Are Not White-listed."
  68. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement