Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. Add ability to place hits
  2.  
  3. https://steamcommunity.com/sharedfiles/filedetails/?id=1941303121
  4.  
  5. TEAM_TECHOASSIMILATION = DarkRP.createJob("Techno Fascist", {
  6. color = Color(39, 166, 143, 255),
  7. model = {"models/scp_mtf_russian/mtf_rus_08.mdl"},
  8. description = [[Assimilate the impure, take the city, plan your revenge!]],
  9. weapons = {"fas2_ifak", "fas2_sks", "fas2_ak47", "fas2_glock20", "fas2_rem870", "fas2_machete", "lockpick", "prokeypadcracker", "m9k_suicide_bomb"},
  10. command = "/technofascist",
  11. max = 2,
  12. salary = 666,
  13. admin = 0,
  14. vote = false,
  15. hasLicense = true,
  16. candemote = false,
  17. category = "Custom Classes",
  18. PlayerSpawn = function(ply)
  19. ply:SetMaxHealth(100)
  20. ply:SetHealth(100)
  21. ply:SetArmor(25)
  22. end,
  23. customCheck = function(ply) return
  24. table.HasValue({"STEAM_0:1:437657564", "STEAM_0:0:512678000"}, ply:SteamID())
  25. end,
  26. CustomCheckFailMsg = "ACCESS DENIED",
  27. })
  28.  
  29.  
  30.  
  31.  
  32. ----------------------------_____________________________________________-----------------------------------------------
  33.  
  34.  
  35.  
  36.  
  37. Add ability to place hits
  38.  
  39.  
  40. https://steamcommunity.com/sharedfiles/filedetails/?id=200700693
  41.  
  42.  
  43.  
  44. TEAM_DEADPOOL = DarkRP.createJob("Deadpool", {
  45. color = Color(128, 0, 0, 255),
  46. model = {"models/pechenko_121/deadpool/chr_deadpool2.mdl"},
  47. description = [[Kickass and Chew Bubble Gum, Go around accept hits and raid sorry losers. You're a certified badass, do what's necessary ]],
  48. weapons = {"fas2_ifak", "tfa_ins2_sai_gry", "fas2_m82", "tfa_tfap_ddegl", "tfa_ins2_m500", "lockpick", "prokeypadcracker"},
  49. command = "deadpool",
  50. max = 2,
  51. salary = 900,
  52. admin = 0,
  53. vote = false,
  54. hasLicense = true,
  55. candemote = false,
  56. category = "Custom Classes",
  57. PlayerSpawn = function(ply)
  58. ply:SetMaxHealth(100)
  59. ply:SetHealth(100)
  60. ply:SetArmor(25)
  61. end,
  62. customCheck = function(ply) return
  63. table.HasValue({"STEAM_1:0:187349368", "STEAM_1:1:437657564"}, ply:SteamID())
  64. end,
  65. CustomCheckFailMsg = "This job is for the buyer and recipients ",
  66. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement