Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.63 KB | None | 0 0
  1. TEAM_HOBOKING = DarkRP.createJob("Hobo King", {
  2.     color = Color(80, 45, 0, 255),
  3.     model = "models/player/soldier_stripped.mdl",
  4.     description = [[Your in charge of all the hobos!
  5.    
  6.     -You are allowed to mug¨.
  7.     -You are allowed to build a home in the street, but no printers
  8.     -Remember that people can kill you when your throwing stuff on them.]],
  9.     weapons = {"weapon_bugbait", "m9k_knife"},
  10.     command = "hoboking",
  11.     max = 1,
  12.     salary = 0,
  13.     admin = 0,
  14.     vote = false,
  15.     hasLicense = false,
  16.     hobo = true
  17. })
  18.  
  19. TEAM_SWAT = DarkRP.createJob("SWAT", {
  20.     color = Color(25, 25, 170, 255),
  21.     model = {"models/player/swat.mdl"},
  22.     description = [[]],
  23.     weapons = {"arrest_stick", "unarrest_stick", "m9k_deagle", "m9k_famas", "stunstick", "door_ram", "weaponchecker"},
  24.     command = "swat",
  25.     max = 3,
  26.     salary = 90,
  27.     admin = 0,
  28.     vote = true,
  29.     hasLicense = true,
  30.     ammo = {
  31.         ["pistol"] = 60,
  32.     }
  33. })
  34.  
  35. TEAM_SWATSNIPER = DarkRP.createJob("SWAT Sniper", {
  36.     color = Color(25, 25, 170, 255),
  37.     model = {"models/player/swat.mdl"},
  38.     description = [[]],
  39.     weapons = {"arrest_stick", "unarrest_stick", "m9k_deagle", "m9k_intervention", "stunstick", "door_ram", "weaponchecker"},
  40.     command = "swatsniper",
  41.     max = 1,
  42.     salary = 110,
  43.     admin = 0,
  44.     vote = true,
  45.     hasLicense = true,
  46.     ammo = {
  47.         ["pistol"] = 60,
  48.     }
  49. })
  50.  
  51. TEAM_SWATLEADER = DarkRP.createJob("SWAT Leader", {
  52.     color = Color(25, 25, 170, 255),
  53.     model = {"models/player/swat.mdl"},
  54.     description = [[]],
  55.     weapons = {"arrest_stick", "unarrest_stick", "m9k_deagle", "weapon_real_spas", "m9k_famas", "stunstick", "door_ram", "weaponchecker"},
  56.     command = "swatleader",
  57.     max = 1,
  58.     salary = 150,
  59.     admin = 0,
  60.     vote = true,
  61.     hasLicense = true,
  62.     NeedToChangeFrom = TEAM_SWAT,
  63.     ammo = {
  64.         ["pistol"] = 60,
  65.     }
  66. })
  67.  
  68. TEAM_CHIEF = DarkRP.createJob("Police Chief", {
  69.     color = Color(20, 20, 255, 255),
  70.     model = "models/player/combine_soldier_prisonguard.mdl",
  71.     description = [[The Chief is the leader of the Civil Protection unit.
  72.         Coordinate the police force to enforce law in the city.
  73.         Hit a player with arrest baton to put them in jail.
  74.         Bash a player with a stunstick and they may learn to obey the law.
  75.         The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
  76.         Type /wanted <name> to alert the public to the presence of a criminal.
  77.         Type /jailpos to set the Jail Position]],
  78.     weapons = {"arrest_stick", "unarrest_stick", "m9k_deagle", "m9k_m4a1", "stunstick", "door_ram", "weaponchecker"},
  79.     command = "chief",
  80.     max = 1,
  81.     salary = 120,
  82.     admin = 0,
  83.     vote = false,
  84.     hasLicense = true,
  85.     chief = true,
  86.     NeedToChangeFrom = TEAM_POLICE,
  87.     ammo = {
  88.         ["pistol"] = 60,
  89.     }
  90. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement