Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. TEAM_AFSOCJTAC = DarkRP.createJob("US AFSOC: JTAC", {
  2. color = Color(0, 255, 255, 255),
  3. model = {models/player/pmc_4/pmc__01.mdl},
  4. description = [[.]],
  5. weapons = {"cw_g4p_m16a4", "cw_m1911", "cw_flash_grenade", "cw_smoke_grenade", "cw_frag_grenade", "weapon_medkit"},
  6. command = "afsocjtac",
  7. max = 5,
  8. salary = 150,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = true,
  12. candemote = false,
  13. category = "US: AFSOC",
  14. PlayerSpawn = function(ply)
  15. ply:SetMaxHealth(250)
  16. ply:SetHealth(250)
  17. end
  18. })
  19.  
  20. TEAM_AFSOCPJ = DarkRP.createJob("US AFSOC: PJ", {
  21. color = Color(0, 240, 255, 255),
  22. model = {models/player/pmc_5/pmc__07.mdl},
  23. description = [[.]],
  24. weapons = {"cw_g4p_m16a4", "cw_m1911", "realistic_hook", "weapon_medkit"}, -- ADD THE DEFIBRILLATOR IF ADDED TO THE SERVER
  25. command = "afsocpj",
  26. max = 3,
  27. salary = 150,
  28. admin = 0 ,
  29. vote = false ,
  30. hasLicense = true,
  31. candemote = false ,
  32. category = "US: AFSOC",
  33. PlayerSpawn = function(ply)
  34. ply:SetMaxHealth(250)
  35. ply:SetHealth(250)
  36. end
  37. })
  38.  
  39. TEAM_AFSOCDINS = DarkRP.createJob("US AFSOC: GWDS", {
  40. color = Color(0, 255, 255, 255),
  41. model = {models/player/mw3rangers/us_ranger_01.mdl},
  42. description = [[You do ground training for AFSOC]],
  43. weapons = {"cw_g4p_m16a4", "cw_m1911",},
  44. command = "afsocgwds",
  45. max = 1,
  46. salary = 150,
  47. admin = 0,
  48. vote = false,
  49. hasLicense = true,
  50. candemote = false,
  51. category = "US: AFSOC",
  52. PlayerSpawn = function(ply)
  53. ply:SetMaxHealth(250)
  54. ply:SetHealth(250)
  55. end
  56. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement