Advertisement
Guest User

Jobs | lua

a guest
May 19th, 2019
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.57 KB | None | 0 0
  1. TEAM_MD = DarkRP.createJob("Mayors Daughter", {
  2.     color = Color(255,100,100,255),
  3.     model = "models/player/alyx.mdl",
  4.     description = [[You are the mayors daughter, walk around with your dad
  5.                 just chill around. But be careful, you never know when somebody
  6.                 is waiting to kidnap you!]],
  7.     weapons = {},
  8.     command = "mayorsdaughter",
  9.     max = 1,
  10.     salary = 85,
  11.     admin = 0,
  12.     vote = false,
  13.     hasLicense = false
  14. })
  15.  
  16. TEAM_TERROR = DarkRP.createJob("Terrorist", {
  17.     color = Color(255, 140, 0, 255),
  18.     model = "models/codplayers/opfor4.mdl",
  19.     description = [[]],
  20.     weapons = {"tfa_ins2_aks74un","pocket"}, -- You may wanna find a pickpocket swep and add it here.
  21.     command = "terrorist",
  22.     max = 2,
  23.     salary = 150,
  24.     admin = 0,
  25.     vote = true,
  26.     hasLicense = false,
  27.     category = "Criminals",
  28. })
  29.  
  30. TEAM_TERRORL = DarkRP.createJob("Terrorist Leader", {
  31.     color = Color(255, 140, 0, 255),
  32.     model = "models/codplayers/opfor4.mdl",
  33.     description = [[]],
  34.     weapons = {"tfa_fml_mpx","pocket"},
  35.     command = "terroristl",
  36.     max = 1,
  37.     salary = 150,
  38.     admin = 0,
  39.     vote = true,
  40.     hasLicense = false,
  41.     category = "Criminals",
  42. })
  43.  
  44. TEAM_MTHIEF = DarkRP.createJob("Master Thief", {
  45.     color = Color(0, 0, 0, 255),
  46.     model = "models/player/robber.mdl",
  47.     description = [[You are a thief, rob people, lockpick their house and steal their plants and legal printers.]],
  48.     weapons = {"lockpick","tfa_ins2_acr","pocket"}, -- You may wanna find a pickpocket swep and add it here.
  49.     command = "mthief",
  50.     max = 2,
  51.     salary = 110,
  52.     admin = 0,
  53.     vote = true,
  54.     hasLicense = false,
  55.     category = "Criminals",
  56. })
  57.  
  58. TEAM_STAFF = DarkRP.createJob("Staff On Duty", {
  59.     color = Color(150, 20, 20, 255),
  60.     model = "models/player/zeus_combine_v2/zeus_combine_v2.mdl",
  61.     description = [[]],
  62.     weapons = {},
  63.     command = "aod",
  64.     max = 0,
  65.     salary = 250,
  66.     admin = 1,
  67.     vote = false,
  68.     hasLicense = false,
  69.     category = "Staffs",
  70.  
  71. })
  72.  
  73. TEAM_JUH = DarkRP.createJob("Juggernaut", {
  74.     color = Color(20, 20, 255, 255),
  75.     model = "models/player/robber.mdl",
  76.     description = [[]],
  77.     weapons = {"m9k_minigun","arrest_stick","door_ram","med_kit","stunstick","unarrest_stick","weaponchecker"}, -- You may wanna find a pickpocket swep and add it here.
  78.     command = "jug",
  79.     max = 1,
  80.     salary = 150,
  81.     admin = 0,
  82.     vote = true,
  83.     hasLicense = true,
  84.     category = "Civil Protection",
  85.     PlayerSpawn = function(ply) ply:SetHealth(500) end,
  86. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement