Advertisement
Guest User

Jobs for Wild WestRP

a guest
Feb 22nd, 2020
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.44 KB | None | 0 0
  1. TEAM_BANKER = DarkRP.createJob("Banker", {
  2.     color = Color(255, 0, 0, 255),
  3.     model = {},
  4.     description = [[Manages the Bank]],
  5.     weapons = {},
  6.     command = "banker",
  7.     max = 2,
  8.     salary = 2000,
  9.     admin = false,
  10.     vote = true,
  11.     hasLicense = false,
  12.     candemote = false,
  13.     category = "Civilians"
  14. })
  15.  
  16. TEAM_LUMBER = DarkRP.createJob("Lumber Jack", {
  17.     color = Color(255, 0, 0, 255),
  18.     model = {},
  19.     description = [[Chops down tree's For money]],
  20.    weapons = {},
  21.    command = "lumberjack",
  22.    max = 10,
  23.    salary = 550,
  24.    admin = false,
  25.    vote = false,
  26.    hasLicense = false,
  27.    candemote = false,
  28.    category = "Civilians"
  29. })
  30.  
  31. TEAM_GAMEPO = DarkRP.createJob("Game Poacher", {
  32.    color = Color(255, 0, 0, 255),
  33.    model = {},
  34.    description = [[Hunts animals, Sells skins, food, etc to Players and the Tavern]],
  35.    weapons = {},
  36.    command = "gamepoacher",
  37.    max = 10,
  38.    salary = 550,
  39.    admin = 0,
  40.    vote = false,
  41.    hasLicense = true,
  42.    candemote = false,
  43.    category = "Civilians"
  44. })
  45.  
  46. TEAM_BARTEND = DarkRP.createJob("Bar Tender", {
  47.    color = Color(255, 0, 0, 255),
  48.    model = {},
  49.    description = [[Works at the Tavern and Sells Drinks, Manages every aspect of the Tavern]],
  50.    weapons = {},
  51.    command = "bartender",
  52.    max = 2,
  53.    salary = 550,
  54.    admin = 0,
  55.    vote = false,
  56.    hasLicense = false,
  57.    candemote = false,
  58.    category = "Civilians"
  59. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement