Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.82 KB | None | 0 0
  1.  
  2. -- this file configure the cloakrooms on the map
  3.  
  4. local cfg = {}
  5.  
  6. -- prepare surgeries customizations
  7. local surgery_male = { model = "mp_m_freemode_01" }
  8. local surgery_female = { model = "mp_f_freemode_01" }
  9. local emergency_male = { model = "s_m_m_paramedic_01" }
  10. local emergency_female = { model = "s_f_y_paramedic_01" }
  11. local fbi_male = { model = "s_m_y_swat_01" }
  12. local sheriff_male = { model = "s_m_y_sheriff_01"}
  13. local sheriff_female = { model = "s_f_y_sheriff_01"}
  14. local hway_male = { model = "s_m_y_hwaycop_01"}
  15. local cop_male = { model = "s_f_y_cop_01"}
  16. local ups_male = { model = "s_m_m_ups_02"}
  17. local cop_female = { model = "s_f_y_cop_01"}
  18. local detective_male = { model = "s_m_m_CIASec_01"}
  19. local officer_male = { model = "s_m_y_cop_01"}
  20. local bounty_male = { model = "s_m_y_BlackOps_01"}
  21. local captain_male = { model = "s_m_y_fibcop_01"}
  22. local lieutenant_male = { model = "s_m_m_Armoured_02"}
  23. local sergeant_male = { model = "s_m_y_Ranger_01"}
  24. local deputy_male = { model = "s_m_y_ranger_01"}
  25. local chief_male = {model = "s_m_m_ciasec_01"}
  26. local santa = {model = "Santaclaus"}
  27.  
  28. --s_m_m_paramedic_01
  29. --s_f_y_scrubs_01
  30. --mp_m_freemode_01
  31. --mp_f_freemode_01
  32.  
  33.  
  34. for i=0,19 do
  35. surgery_female[i] = {0,0}
  36. surgery_male[i] = {0,0}
  37. end
  38.  
  39. -- cloakroom types (_config, map of name => customization)
  40. --- _config:
  41. ---- permissions (optional)
  42. ---- not_uniform (optional): if true, the cloakroom will take effect directly on the player, not as a uniform you can remove
  43. cfg.cloakroom_types = {
  44. ["police"] = {
  45. _config = { permissions = {"police.cloakroom"} },
  46. ["Male uniform"] = {
  47. [3] = {30,0},
  48. [4] = {25,2},
  49. [6] = {24,0},
  50. [8] = {58,0},
  51. [11] = {55,0},
  52. ["p2"] = {2,0}
  53. },
  54. ["Female uniform"] = {
  55. [3] = {35,0},
  56. [4] = {30,0},
  57. [6] = {24,0},
  58. [8] = {6,0},
  59. [11] = {48,0},
  60. ["p2"] = {2,0}
  61. }
  62. },
  63. ["Lawyer"] = {
  64. _config = { permissions = {"Lawyer.cloakroom"} },
  65. ["Male uniform"] = {
  66. [3] = {1,0},
  67. [4] = {10,0},
  68. [6] = {10,0},
  69. [8] = {4,0},
  70. [11] = {10,0},
  71. ["p2"] = {-1,0}
  72. },
  73. ["Female uniform"] = {
  74. [3] = {0,0},
  75. [4] = {37,0},
  76. [6] = {13,0},
  77. [8] = {21,1},
  78. [11] = {24,3},
  79. ["p2"] = {-1,0}
  80. }
  81. },
  82. ["emergency"] = {
  83. _config = { permissions = {"emergency.cloakroom"} },
  84. ["Male"] = emergency_male,
  85. },
  86. ["Politi Motorcykel"] = {
  87. _config = { permissions = {"Commander.cloakroom"} },
  88. ["Motorcykel Betjent"] = hway_male,
  89. },
  90. ["Politi Civil"] = {
  91. _config = { permissions = {"Detective.cloakroom"} },
  92. ["Kriminal Betjent"] = detective_male,
  93. },
  94. ["UPS"] = {
  95. _config = { permissions = {"ups.cloakroom"} },
  96. ["Courier"] = ups_male,
  97. },
  98. ["AKS"] = {
  99. _config = { permissions = {"SWAT.cloakroom"} },
  100. ["Mand"] = fbi_male,
  101. },
  102. ["Politi"] = {
  103. _config = { permissions = {"sheriff.cloakroom"} },
  104. ["Mand"] = sheriff_male,
  105. ["Kvinde"] = cop_female
  106. }
  107. }
  108.  
  109. cfg.cloakrooms = {
  110. {"police", 459.01037597656,-992.32800292969,30.689575195313},
  111. {"Detective", 459.01037597656,-992.32800292969,30.689575195313},
  112. {"Sergeant", 459.01037597656,-992.32800292969,30.689575195313},
  113. --{"police", 369.9228515625,-1607.12976074219,29.291934967041},
  114. {"police", 1848.2177734375,3689.5593261719,34.267040252686}, -- sandy shores
  115. {"police", -448.53857421875,6009.2690429688,31.716375350952}, -- paleto
  116. {"SWAT", 459.01037597656,-992.32800292969,30.689575195313},
  117. {"sheriff", 459.01037597656,-992.32800292969,30.689575195313},
  118. {"Lawyer",105.48087310791,-1088.82177734375,29.3024787902832},
  119. {"UPS",78.672370910645,111.7912902832,81.168083190918},
  120. {"emergency",244.1099395752,-1382.8720703125,39.534328460693}
  121. -- {"Santa",-1373.0778808594,-2677.6694335938,13.944942474365} -- Santa's Cloakroom (Disabled)
  122. }
  123.  
  124. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement