Advertisement
ejay_

Untitled

May 31st, 2020
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.64 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.DrawDistance = 50.0
  4.  
  5. Config.Marker = {type = 1, x = 1.5, y = 1.5, z = 0.5, r = 102, g = 0, b = 102, a = 100, rotate = false}
  6.  
  7. Config.ReviveReward = 150 -- revive reward, set to 0 if you don't want it enabled
  8. Config.AntiCombatLog = true -- enable anti-combat logging?
  9. Config.LoadIpl = true -- disable if you're using fivem-ipl or other IPL loaders
  10.  
  11. Config.Locale = 'en'
  12.  
  13. local second = 1000
  14. local minute = 60 * second
  15.  
  16. Config.EarlyRespawnTimer = 11 * minute -- time til respawn is available
  17. Config.BleedoutTimer = 10 * minute -- time til the player bleeds out
  18.  
  19. Config.EnablePlayerManagement = true
  20.  
  21. Config.RemoveWeaponsAfterRPDeath = true
  22. Config.RemoveCashAfterRPDeath = true
  23. Config.RemoveItemsAfterRPDeath = true
  24.  
  25. -- Let the player pay for respawning early, only if he can afford it.
  26. Config.EarlyRespawnFine = false
  27. Config.EarlyRespawnFineAmount = 5000
  28.  
  29. Config.RespawnPoint = {coords = vector3(341.0, -1397.3, 32.5), heading = 48.5}
  30.  
  31. Config.Hospitals = {
  32.  
  33. CentralLosSantos = {
  34.  
  35. Blip = {
  36. coords = vector3(307.7, -1433.4, 28.9),
  37. sprite = 61,
  38. scale = 1.2,
  39. color = 2
  40. },
  41.  
  42. AmbulanceActions = {
  43. vector3(270.5, -1363.0, 23.5)
  44. },
  45.  
  46. Pharmacies = {
  47. vector3(230.1, -1366.1, 38.5)
  48. },
  49.  
  50. Vehicles = {
  51. {
  52. Spawner = vector3(307.7, -1433.4, 30.0),
  53. InsideShop = vector3(446.7, -1355.6, 43.5),
  54. Marker = {type = 36, x = 1.0, y = 1.0, z = 1.0, r = 100, g = 50, b = 200, a = 100, rotate = true},
  55. SpawnPoints = {
  56. {coords = vector3(297.2, -1429.5, 29.8), heading = 227.6, radius = 4.0},
  57. {coords = vector3(294.0, -1433.1, 29.8), heading = 227.6, radius = 4.0},
  58. {coords = vector3(309.4, -1442.5, 29.8), heading = 227.6, radius = 6.0}
  59. }
  60. }
  61. },
  62.  
  63. Helicopters = {
  64. {
  65. Spawner = vector3(317.5, -1449.5, 46.5),
  66. InsideShop = vector3(305.6, -1419.7, 41.5),
  67. Marker = {type = 34, x = 1.5, y = 1.5, z = 1.5, r = 100, g = 150, b = 150, a = 100, rotate = true},
  68. SpawnPoints = {
  69. {coords = vector3(313.5, -1465.1, 46.5), heading = 142.7, radius = 10.0},
  70. {coords = vector3(299.5, -1453.2, 46.5), heading = 142.7, radius = 10.0}
  71. }
  72. }
  73. },
  74.  
  75. FastTravels = {
  76. {
  77. From = vector3(294.7, -1448.1, 29.0),
  78. To = {coords = vector3(272.8, -1358.8, 23.5), heading = 0.0},
  79. Marker = {type = 1, x = 2.0, y = 2.0, z = 0.5, r = 102, g = 0, b = 102, a = 100, rotate = false}
  80. },
  81.  
  82. {
  83. From = vector3(275.3, -1361, 23.5),
  84. To = {coords = vector3(295.8, -1446.5, 28.9), heading = 0.0},
  85. Marker = {type = 1, x = 2.0, y = 2.0, z = 0.5, r = 102, g = 0, b = 102, a = 100, rotate = false}
  86. },
  87.  
  88. {
  89. From = vector3(247.3, -1371.5, 23.5),
  90. To = {coords = vector3(333.1, -1434.9, 45.5), heading = 138.6},
  91. Marker = {type = 1, x = 1.5, y = 1.5, z = 0.5, r = 102, g = 0, b = 102, a = 100, rotate = false}
  92. },
  93.  
  94. {
  95. From = vector3(335.5, -1432.0, 45.50),
  96. To = {coords = vector3(249.1, -1369.6, 23.5), heading = 0.0},
  97. Marker = {type = 1, x = 2.0, y = 2.0, z = 0.5, r = 102, g = 0, b = 102, a = 100, rotate = false}
  98. },
  99.  
  100. {
  101. From = vector3(234.5, -1373.7, 20.9),
  102. To = {coords = vector3(320.9, -1478.6, 28.8), heading = 0.0},
  103. Marker = {type = 1, x = 1.5, y = 1.5, z = 1.0, r = 102, g = 0, b = 102, a = 100, rotate = false}
  104. },
  105.  
  106. {
  107. From = vector3(317.9, -1476.1, 28.9),
  108. To = {coords = vector3(238.6, -1368.4, 23.5), heading = 0.0},
  109. Marker = {type = 1, x = 1.5, y = 1.5, z = 1.0, r = 102, g = 0, b = 102, a = 100, rotate = false}
  110. }
  111. },
  112.  
  113. FastTravelsPrompt = {
  114. {
  115. From = vector3(237.4, -1373.8, 26.0),
  116. To = {coords = vector3(251.9, -1363.3, 38.5), heading = 0.0},
  117. Marker = {type = 1, x = 1.5, y = 1.5, z = 0.5, r = 102, g = 0, b = 102, a = 100, rotate = false},
  118. Prompt = _U('fast_travel')
  119. },
  120.  
  121. {
  122. From = vector3(256.5, -1357.7, 36.0),
  123. To = {coords = vector3(235.4, -1372.8, 26.3), heading = 0.0},
  124. Marker = {type = 1, x = 1.5, y = 1.5, z = 0.5, r = 102, g = 0, b = 102, a = 100, rotate = false},
  125. Prompt = _U('fast_travel')
  126. }
  127. }
  128.  
  129. }
  130. }
  131.  
  132. Config.AuthorizedVehicles = {
  133. car = {
  134. ambulance = {
  135. { model = 'ambulance', label = 'Rohamkocsi', price = 1000},
  136. { model = 'qrv', label = 'Esetkocsi', price = 1000}
  137. },
  138.  
  139. doctor = {
  140. { model = 'ambulance', label = 'Rohamkocsi', price = 800},
  141. { model = 'qrv', label = 'Esetkocsi', price = 800},
  142. { model = 'fdnyambo', label = 'Rohamkocsi 2', price = 800}
  143. },
  144.  
  145. doctor_master = {
  146. { model = 'ambulance', label = 'Rohamkocsi', price = 600},
  147. { model = 'qrv', label = 'Esetkocsi', price = 600},
  148. { model = 'dodgeEMS', label = 'Személyi kocsi', price = 600},
  149. { model = 'fdnyambo', label = 'Rohamkocsi 2', price = 600}
  150. },
  151.  
  152. chief_doctor = {
  153. { model = 'ambulance', label = 'Rohamkocsi', price = 500},
  154. { model = 'qrv', label = 'Esetkocsi', price = 500},
  155. { model = 'dodgeEMS', label = 'Személyi kocsi', price = 500},
  156. { model = 'fdnyambo', label = 'Rohamkocsi 2', price = 500}
  157. },
  158.  
  159. boss = {
  160. { model = 'ambulance', label = 'Rohamkocsi', price = 1},
  161. { model = 'qrv', label = 'Esetkocsi', price = 1},
  162. { model = 'dodgeEMS', label = 'Személyi kocsi', price = 1},
  163. { model = 'fdnyambo', label = 'Rohamkocsi 2', price = 1}
  164. }
  165. },
  166.  
  167. helicopter = {
  168. ambulance = {},
  169.  
  170. doctor = {},
  171.  
  172. doctor_master = {
  173. {model = 'as365', price = 15000}
  174. },
  175.  
  176. chief_doctor = {
  177. {model = 'as365', price = 15000}
  178. },
  179.  
  180. boss = {
  181. {model = 'as365', price = 1}
  182. }
  183. }
  184. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement