Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. TEAM_TACTICALOP = DarkRP.createJob("Tactical Operator", {
  2. color = Color(255, 115, 0, 255),
  3. model = {"models/mark2580/payday2/pd2_swat_heavy_zeal_rebel.mdl"},
  4. description = [[This Mank's custom job. Manks is Danks.]],
  5. weapons = {"realistic_hook" , "stungun", "tfa_nmrih_fubar", "m9k_acr", "m9k_ied_detonator"},
  6. command = "tacticaloperator",
  7. max = 1,
  8. salary = 250,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = true,
  12. candemote = false,
  13. PlayerSpawn = function(ply)
  14. ply:SetArmor(100)
  15. ply:SetMaxArmor(255)
  16. end,
  17. customCheck = function(ply) return ply:SteamID() == "STEAM_0:1:90546774" end
  18. })
  19.  
  20. TEAM_UC = DarkRP.createJob("Undercover Cop", {
  21. color = Color(0, 0, 255, 255),
  22. model = {"models/kerry/merriweather5.mdl"},
  23. description = [[This is Knightfalls Custom Job.]],
  24. weapons = {"pass_detectiv" , "weapon_r_handcuffs", "tfa_nmrih_sledge", "m9k_mp7", "m9k_glock", "stungun"},
  25. command = "undercover",
  26. max = 1,
  27. salary = 250,
  28. admin = 0,
  29. vote = false,
  30. hasLicense = true,
  31. candemote = false,
  32. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement