请翻译以下内容为简体中文
Config = {}
Config.webhook = "SEU_WEBHOOK" -- Webhook to send logs to discord
Config.lang = "en" -- Set the file language [en/br]
Config.ESXSHAREDOBJECT =
"esx:getSharedObject" -- Change your getshared object event here, in case you are using anti-cheat
Config.formatacao = {
['moeda'] = 'USD', -- This is the format of the currency, so that your currency sign appears correctly [Examples: BRL, USD]
['location'] = 'en-US' -- This is the location of your country, to format the decimal places according to your standard [Examples: pt-BR, en-US]
}
-- Here are the places where the person can open the trucker menu
-- You can add as many locations as you like, just use the location already created as an example
Config.empresas = {
["trucker_1"] = { -- ID
['nome'] = "Port", -- Name
['coordenada'] = { 1208.7689208984, -3114.9829101562, 5.5403342247009 }, -- Coordinate to open the menu
['coordenada_garagem'] = { -- Garage coordinates, where the trucks will spawn (coordinates composed of x, y, z, h)
{ 1250.55, -3162.4, 5.88, 270.00 },
{ 1250.76, -3168.05, 5.86, 270.00 },
{ 1245.91, -3135.67, 5.62, 270.00 },
{ 1246.07, -3142.42, 5.63, 270.00 },
{ 1245.93, -3149.04, 5.62, 270.00 },
{ 1245.69, -3155.94, 5.6, 270.00 },
},
['coordenada_cargas'] = { -- Trailer coordinates, where the trailers will spawn (coordinates composed of x, y, z, h)
{ 1274.21, -3186.43, 5.91, 90.00 },
{ 1272.53, -3097.32, 5.91, 90.00 },
{ 1273.55, -3088.39, 5.91, 90.00 },
{ 1273.47, -3123.78, 5.91, 90.00 },
{ 1272.68, -3159.19, 5.91, 90.00 },
{ 1275.37, -3174.52, 5.91, 90.00 },
{ 1275.04, -3168.83, 5.91, 90.00 },
}
}
}
-- Here is the definition of the contracts that are generated for the players to deliver
Config.contratos = {
['cancel_contrato'] = 167, -- Key to cancel the active job (167 = F6) [Hold key 2 seconds]
['cooldown'] = 5, -- Cooldown time (in minutes) to generate a new contract
['preco_por_km_min'] = 8000, -- Minimum price per kilometer of the contract
['preco_por_km_max'] = 12000, -- Maximum price per kilometer of the contract
['multiplicador_frete'] = 1.2, -- Multiplier applied when generating FREIGHT loads
['probabilidade_ser_carga_urgente'] = 10, -- The urgent load is generated randomly, here you can configure the probability (%)
['max_contratos_ativos'] = 60, -- Maximum of contracts that can be active, this means that when generating a contact that exceeds this number, the oldest contract will be deleted
['caminhoes'] = { -- List of trucks that are generated in contracts
"Phantom", "Hauler2", "Packer", "Hauler", "Phantom2", "Phantom3",
},
['cargas'] = {
--[[
List of loads that are generated in the contracts.
carga: is the trailer spawn name
nome: is the name that will appear in the list for the player to select
def: are the load definitions, to configure if it is an ADR certificate, fragile or valuable load
Def is composed of 3 values
def = {
0, [First value]: Type of ADR certificate. 0 = None, 1 = Explosives, 2 = Flammable gases, 3 = Flammable liquids, 4 = Flammable solids, 5 = Toxic substances, 6 = Corrosive substances
0, [Second value]: Fragile load: 0 = Not fragile, 1 = It is fragile
0 [Third value]: Valuable cargo: 0 = Not valuable, 1 = It is valuable
}
]]
{ carga = "armytanker", nome = "Army fuel tank", def = { 3, 0, 0 } },
{ carga = "armytanker", nome = "Army water supply", def = { 0, 0, 0 } },
{ carga = "armytanker", nome = "Army Corrosive Materials Tank", def = { 6, 0, 1 } },
{ carga = "armytanker", nome = "Army flammable gas tank", def = { 2, 0, 0 } },
{ carga = "armytanker", nome = "Army toxic gas tank", def = { 5, 0, 0 } },
{ carga = "armytanker", nome = "Army secret materials", def = { 0, 0, 1 } },
{ carga = "trailerlogs", nome = "Potassium hydroxide", def = { 6, 0, 0 } },
{ carga = "trailerlogs", nome = "Nitrogen", def = { 2, 0, 1 } },
{ carga = "trailerlogs", nome = "Potassium chloride", def = { 5, 0, 0 } },
{ carga = "trailerlogs", nome = "Poison", def = { 5, 0, 0 } },
{ carga = "trailerlogs", nome = "Pesticide", def = { 5, 0, 0 } },
{ carga = "armytrailer", nome = "empty army trailer", def = { 0, 0, 0 } },
{ carga = "armytrailer", nome = "Heavy machinery transport", def = { 0, 1, 1 } },
{ carga = "armytrailer", nome = "Tunneling machine transport", def = { 0, 1, 1 } },
{ carga = "docktrailer", nome = "Furniture transport", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Refrigerator transport", def = { 0, 1, 0 } },
{ carga = "docktrailer", nome = "Brick transport", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Transport of imported products", def = { 0, 0, 1 } },
{ carga = "docktrailer", nome = "Transport of plastics", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Clothing transport", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Chair transport", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Appliance transport", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Transport of cleaning supplies", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Refined timber transport", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Stone transport", def = { 0, 0, 0 } },
{ carga = "docktrailer", nome = "Transport of jewels", def = { 0, 1, 1 } },
{ carga = "docktrailer", nome = "Glass transport", def = { 0, 1, 0 } },
{ carga = "docktrailer", nome = "Ammo transport", def = { 1, 0, 0 } },
{ carga = "docktrailer", nome = "Trailer empty", def = { 0, 0, 0 } },
{ carga = "trailers4", nome = "Car trailer empty", def = { 0, 0, 0 } },
{ carga = "trailers4", nome = "Naval articles trailer", def = { 0, 0, 0 } },
{ carga = "trailers4", nome = "Boat trailer", def = { 0, 1, 1 } },
{ carga = "tr4", nome = "Stork", def = { 0, 1, 1 } },
{ carga = "tvtrailer", nome = "Transport of materials for shows", def = { 0, 0, 1 } },
{ carga = "tvtrailer", nome = "Transport of event materials", def = { 0, 1, 1 } },
{ carga = "tanker2", nome = "Fuel tank with additives", def = { 3, 0, 0 } },
{ carga = "tanker2", nome = "Common fuel tank", def = { 3, 0, 0 } },
{ carga = "tanker2", nome = "Kerosene tank", def = { 3, 0, 0 } },
{ carga = "tanker2", nome = "Oil tank", def = { 3, 0, 0 } },
{ carga = "docktrailer", nome = "Transport of exotic materials", def = { 0, 1, 1 } },
{ carga = "docktrailer", nome = "Transport of rare materials", def = { 0, 1, 1 } },
{ carga = "docktrailer", nome = "Transport of armaments", def = { 0, 0, 1 } },
{ carga = "trailerlogs", nome = "Log transportation", def = { 0, 0, 0 } },
{ carga = "trailers", nome = "Transport of construction materials", def = { 0, 0, 0 } },
{ carga = "trailers", nome = "Rubber transport", def = { 0, 0, 0 } },
{ carga = "trailers", nome = "Appliance transportation", def = { 0, 1, 0 } },
{ carga = "trailers", nome = "Transport of vaccines", def = { 0, 1, 0 } },
{ carga = "trailers", nome = "Transport of explosives", def = { 1, 1, 0 } },
{ carga = "trailers", nome = "Sawdust transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Grape transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Pork transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Transport of beef", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Carrot transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Potato transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Milk transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Transport of canned goods", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Frozen meat transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Bean transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Vinegar transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Lemonade transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Bottled water transport", def = { 0, 0, 0 } },
{ carga = "trailers2", nome = "Cheese transport", def = { 0, 0, 0 } },
{ carga = "trailers3", nome = "Tile transport", def = { 0, 0, 0 } },
{ carga = "trailers3", nome = "Rail transport", def = { 0, 0, 0 } },
{ carga = "trailers3", nome = "Transport of used packaging", def = { 0, 0, 0 } },
{ carga = "trailers3", nome = "Floor plate transport", def = { 0, 0, 0 } },
{ carga = "trailers3", nome = "Ceramic transport", def = { 0, 1, 0 } },
{ carga = "trailers3", nome = "Scrap transport", def = { 0, 0, 0 } },
{ carga = "trailers4", nome = "Transport of fireworks", def = { 1, 1, 0 } },
{ carga = "trailers4", nome = "Transport of explosives", def = { 1, 1, 0 } },
{ carga = "trailers4", nome = "Dynamite transport", def = { 1, 1, 0 } },
{ carga = "trailers4", nome = "White phosphorus transport", def = { 4, 1, 0 } },
{ carga = "tr4", nome = "value car Transport", def = { 0, 1, 1 } },
{ carga = "tr4", nome = "Army vehicle transport", def = { 0, 1, 1 } },
}
}
-- Here is the definition of the drivers that are generated for the players to hire
Config.motoristas = {
['cooldown'] = 60,
-- ['cooldown'] = 60, -- Cooldown time (in minutes) to generate a new driver
['preco_por_km_min'] = 65, -- Minimum starting price per KM of the driver (at the end of each delivery)
['preco_por_km_max'] = 78, -- Maximum initial price per KM of the driver (at the end of each delivery)
['preco_min'] = 900, -- Minimum initial price of the driver (at the end of each delivery)
['preco_max'] = 1040, -- Maximum initial price of the driver (at the end of each delivery)
['porcentagem_bonus_habilidades'] = 5, -- This is the cost in % that each skill will increase in the driver's salary. That is, for each ability he has, the starting price will increase by 5%
|