Advertisement
Guest User

Untitled

a guest
May 18th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.86 KB | None | 0 0
  1. TEAM_LGUN = DarkRP.createJob("Light Gun Dealer", {
  2. color = Color(255, 140, 0, 255),
  3. model = "models/player/monk.mdl",
  4. description = [[A Gun Dealer is the only person who can sell guns to other people.
  5. Make sure you aren't caught selling illegal firearms to the public! You might get arrested!]],
  6. weapons = {},
  7. command = "lgundealer",
  8. max = 3,
  9. salary = GAMEMODE.Config.normalsalary,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = false
  13. })
  14.  
  15. TEAM_HGUN = DarkRP.createJob("Heavy Gun Dealer", {
  16. color = Color(255, 140, 0, 255),
  17. model = "models/player/monk.mdl",
  18. description = [[A Gun Dealer is the only person who can sell guns to other people.
  19. Make sure you aren't caught selling illegal firearms to the public! You might get arrested!]],
  20. weapons = {},
  21. command = "hgundealer",
  22. max = 1,
  23. salary = GAMEMODE.Config.normalsalary,
  24. admin = 0,
  25. vote = true,
  26. hasLicense = false
  27. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement