Advertisement
marcinhuU

m-Deliverys

Mar 16th, 2022
935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config["GeneralMenu"] = {
  4. vector3(153.16, -3211.57, 5.91)
  5. }
  6.  
  7. ------------------
  8. -- Deliveries
  9. ------------------
  10. Config["ViagemPequena"] = { -- Small deliverie 1.0/2.0 kmh
  11. vector3(1037.58, -2177.6, 31.53),
  12. vector3(415.35, -2072.76, 21.47),
  13. vector3(829.52, -1916.94, 29.38),
  14. vector3(923.23, -2436.05, 28.45),
  15. -- You can add more locations
  16. }
  17.  
  18. Config["ViagemMedia"] = { -- Medium deliverie 3.0/4.0 kmh
  19. vector3(-657.76, -679.19, 31.48),
  20. vector3(-702.82, -916.86, 19.21),
  21. vector3(-1242.3, -1300.9, 3.91),
  22. vector3(-1148.77, -1168.7, 2.53),
  23. -- You can add more locations
  24. }
  25.  
  26. Config["ViagemLonga"] = { -- Big deliverie +5.0 kmh
  27. vector3(1200.71, 2655.72, 37.85),
  28. vector3(556.25, 2674.09, 42.17),
  29. vector3(341.63, 2614.99, 44.67),
  30. vector3(728.95, 2312.89, 51.76),
  31. -- You can add more locations
  32. }
  33.  
  34. ------------------
  35. -- XP level
  36. ------------------
  37. Config.XP_Need_Small_Delivery = 0 -- Required amount of XP to be able to make a small delivery.
  38. Config.XP_Need_Medium_Delivery = 250 -- Required amount of XP to be able to make a medium delivery.
  39. Config.XP_Need_Big_Delivery = 500 -- Required amount of XP to be able to make a big delivery.
  40. -------------------------------------------------------------------------------------------------------------
  41. Config.XP_Small_Delivery = 5 -- Amount earned xp for a small delivery.
  42. Config.XP_Medium_Delivery = 10 -- Amount earned xp for a medium delivery.
  43. Config.XP_Big_Delivery = 15 -- Amount earned xp for a big delivery.
  44. -------------------------------------------------------------------------------------------------------------
  45. Config.Money_Small_Delivery = 250 -- Amount earned in cash for a small delivery
  46. Config.Money_Medium_Delivery = 350 -- Amount earned in cash for a medium delivery
  47. Config.Money_Big_Delivery = 450 -- Amount earned in cash for a big delivery
  48.  
  49. ----------------------
  50. -- Car
  51. ----------------------
  52. Config.Fuel = "LegacyFuel" -- Name of your fuel script
  53. Config.VehicleKeysTrigger = "vehiclekeys:client:SetOwner" -- Trigger to give vehiclekeys
  54.  
  55. Config.Camiao = {
  56. [1] = {camiao = "rumpo"}, -- Vehicle
  57. }
  58.  
  59. Config.SpawnCamiao = { -- Locations to spawn the vehicle
  60. [1] = {x = 143.60, y = -3204.36, z = 5.86},
  61. -- You can add more
  62. }
  63.  
  64. ---------------
  65. -- Blips Deliverys
  66. ---------------
  67. Config.SmallDelivery = {
  68. Name = "Entrega",
  69. Sprite = 436,
  70. Colour = 3,
  71. RouteColour = 3,
  72. }
  73.  
  74. Config.MediumDelivery = {
  75. Name = "Entrega",
  76. Sprite = 436,
  77. Colour = 3,
  78. RouteColour = 3,
  79. }
  80.  
  81. Config.BigDelivery = {
  82. Name = "Entrega",
  83. Sprite = 436,
  84. Colour = 3,
  85. RouteColour = 3,
  86. }
  87.  
  88. ---------------
  89. -- Language
  90. ---------------
  91. Config["Language"] = {
  92. ["QBTarget"] = {
  93. ["Information"] = "Trucker Information",
  94. ["IconInformation"] = "fas fa-truck",
  95. ["Delivery"] = "Deliver Order",
  96. ["IconDelivery"] = "fas fa-box",
  97. ["Vehicle"] = "Save Vehicle",
  98. ["IconVehicle"] = "fas fa-car",
  99. },
  100. ["QBMenu"] = {
  101. ["Information"] = "Trucker Information",
  102. ["StartJob"] = "Start a delivery!",
  103. ["ShowLevel"] = "My level!",
  104. ["Locations"] = "Trucker Locations",
  105. ["SmallDelivery"] = "Small Delivery (1.0km/2.0km)",
  106. ["MediumDelivery"] = "Medium Delivery (3.0km/4.0km)",
  107. ["BigDelivery"] = "Big Delivery (+5.0km)",
  108. ["Experience"] = "Your Experience: ",
  109. ["GainExperience"] = "Experience :",
  110. ["Need"] = "Need: ",
  111. ["Rewards"] = "Rewards: ",
  112. ["Money"] = "Money: $"
  113. },
  114. ["Notification"] = {
  115. ["SaveVehicle"] = "Go guard the truck.",
  116. ["Entregue"] = "Order delivered, back to base.",
  117. ["Failed"] = "You failed.",
  118. ["NoXP"] = "You don't have enough experience.",
  119. },
  120. ["ProgressBars"] = {
  121. ["Entregar"] = "Delivering the order..."
  122. }
  123. }
  124.  
  125. ---------------
  126. -- Peds
  127. ---------------
  128. Config.PedLocation = vector3(142.52, -3211.43, 4.86)
  129. Config.PedListTrucker = {
  130. {
  131. model = "a_m_m_farmer_01",
  132. coords = Config.PedLocation,
  133. heading = 2.55,
  134. gender = "male",
  135. scenario = "WORLD_HUMAN_STAND_MOBILE_UPRIGHT"
  136. },
  137. }
  138.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement