Advertisement
Guest User

Untitled

a guest
Oct 26th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. Config = {}
  2. Config.DrawDistance = 200.0
  3. Config.MaxErrors = 5
  4. Config.SpeedMultiplier = 3.6
  5. Config.Locale = 'en'
  6.  
  7. Config.Prices = {
  8. dmv = 200,
  9. drive = 250,
  10. drive_bike = 250,
  11. drive_truck = 500
  12. }
  13.  
  14. Config.VehicleModels = {
  15. drive = 'Blista',
  16. drive_bike = 'Akuma',
  17. drive_truck = 'mule3'
  18. }
  19.  
  20. Config.SpeedLimits = {
  21. residence = 80,
  22. town = 50,
  23. freeway = 'Neribotas'
  24. }
  25.  
  26. Config.Zones = {
  27.  
  28. DMVSchool = {
  29. Pos = {x = -145.98, y = 6303.85, z = 31.56},
  30. Size = {x = 1.5, y = 1.5, z = 1.0},
  31. Color = {r = 204, g = 204, b = 0},
  32. Type = 21
  33. },
  34.  
  35. VehicleSpawnPoint = {
  36. Pos = {x = -146.95, y = 6312.45, z = 31.42, h = 316.95},
  37. Size = {x = 1.5, y = 1.5, z = 1.0},
  38. Color = {r = 204, g = 204, b = 0},
  39. Type = -1
  40. }
  41.  
  42. }
  43.  
  44. Config.CheckPoints = {
  45.  
  46. {
  47. -- pirmas
  48. Pos = vector3(-142.66, 6316.58, 31.59),
  49. Action = function(playerPed, vehicle, setCurrentZoneType)
  50. setCurrentZoneType('town')
  51. DrawMissionText(_U('pirmas_point'), Config.SpeedLimits['town']), 5000)
  52.  
  53. end
  54. },
  55.  
  56. -- antras
  57. {
  58. Pos = vector3(-162.17, 6351.92, 31.44),
  59. Action = function(playerPed, vehicle, setCurrentZoneType)
  60. setCurrentZoneType('town')
  61. DrawMissionText(_U('antras_point'), 5000)
  62.  
  63. end
  64. },
  65. -- 3
  66. {
  67. Pos = vector3(-314.95, 6245.78, 31.49),
  68. Action = function(playerPed, vehicle, setCurrentZoneType)
  69. setCurrentZoneType('town')
  70. DrawMissionText(_U('tekstas_point'), 5000)
  71.  
  72. end
  73. },
  74. -- 4
  75. {
  76. Pos = vector3(-389.61, 6168.08, 31.49),
  77. Action = function(playerPed, vehicle, setCurrentZoneType)
  78. setCurrentZoneType('town')
  79. DrawMissionText(_U('saunu_point'), Config.SpeedLimits['town']), 5000)
  80.  
  81. end
  82. },
  83. -- 5
  84. {
  85. Pos = vector3(-259.89, 6210.94, 31.5),
  86. Action = function(playerPed, vehicle, setCurrentZoneType)
  87. setCurrentZoneType('town')
  88. DrawMissionText(_U('saunu_point'), 5000)
  89.  
  90. end
  91. },
  92. -- 6
  93. {
  94. Pos = vector3(-74.66, 6271.2, 31.37),
  95. Action = function(playerPed, vehicle, setCurrentZoneType)
  96. setCurrentZoneType('town')
  97. DrawMissionText(_U('watch_traffic_lightson'), Config.SpeedLimits['town']), 5000)
  98.  
  99. end
  100. },
  101. -- 7
  102. {
  103. Pos = vector3(227.2, 6554.06, 31.7),
  104. Action = function(playerPed, vehicle, setCurrentZoneType)
  105. setCurrentZoneType('freeway')
  106. DrawMissionText(_U('vaziuojam_greitkeli'), 5000)
  107.  
  108. end
  109. },
  110. -- 8
  111. {
  112. Pos = vector3(1447.41, 6552.09, 15.07),
  113. Action = function(playerPed, vehicle, setCurrentZoneType)
  114. setCurrentZoneType('freeway')
  115. DrawMissionText(_U('pirmas_point'), 5000)
  116.  
  117. end
  118. },
  119. -- 9
  120. {
  121. Pos = vector3(209.45, 6563.49, 31.96),
  122. Action = function(playerPed, vehicle, setCurrentZoneType)
  123. setCurrentZoneType('town')
  124. DrawMissionText(_U('stop_look_left'), Config.SpeedLimits['town']), 5000)
  125.  
  126. end
  127. },
  128. -- 10
  129. {
  130. Pos = vector3(-18.77, 6630.76, 30.87),
  131. Action = function(playerPed, vehicle, setCurrentZoneType)
  132. setCurrentZoneType('town')
  133. DrawMissionText(_U('tekstas_point'), 5000)
  134.  
  135. end
  136. },
  137. -- 11
  138. {
  139. Pos = vector3(-127.44, 6431.86, 31.46),
  140. Action = function(playerPed, vehicle, setCurrentZoneType)
  141. setCurrentZoneType('town')
  142. DrawMissionText(_U('pirmas_point'), Config.SpeedLimits['town']), 5000)
  143.  
  144. end
  145. },
  146. -- 12
  147. {
  148. Pos = vector3(-146.13, 6327.63, 31.61),
  149. Action = function(playerPed, vehicle, setCurrentZoneType)
  150. setCurrentZoneType('town')
  151. DrawMissionText(_U('good_turn_right'), 5000)
  152.  
  153. end
  154. },
  155. -- last
  156. {
  157. Pos = vector3(-161.52, 6299.19, 31.25),
  158. Action = function(playerPed, vehicle, setCurrentZoneType)
  159. ESX.Game.DeleteVehicle(vehicle)
  160.  
  161. end
  162. }
  163.  
  164. }
  165.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement