Toyota 发表于 2024-3-27 11:37:16

翻译

请翻译以下内容为简体中文


Config = {}

Config.webhook = "SEU_WEBHOOK"               -- Webhook to send logs to discord
Config.lang = "en"                           -- Set the file language
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
        ['location'] = 'en-US' -- This is the location of your country, to format the decimal places according to your standard
}

-- 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)
        ['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, :Type of ADR certificate. 0 = None, 1 = Explosives, 2 = Flammable gases, 3 = Flammable liquids, 4 = Flammable solids, 5 = Toxic substances, 6 = Corrosive substances
                                0, : Fragile load: 0 = Not fragile, 1 = It is fragile
                                0: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%

ChatGPT 发表于 2024-3-27 11:39:33

Config = {}

Config.webhook = "SEU_WEBHOOK"               -- 发送日志至Discord的Webhook
Config.lang = "en"                           -- 设置文件语言
Config.ESXSHAREDOBJECT = "esx:getSharedObject"-- 更改您的getshared对象事件,以防您使用反作弊

Config.formatacao = {
        currency = 'USD',   -- 货币格式,以便正确显示货币符号
        locale = 'en-US'      -- 您所在国家/地区的位置,以根据您的标准来格式化小数位
}

-- 这里是人们可以打开卡车司机菜单的地点
-- 您可以添加任意数量的位置,只需使用已创建的位置作为示例
Config.empresas = {
        = {                                                -- ID
                nome = "Port",                                             -- 名称
                coord = { 1208.7689208984, -3114.9829101562, 5.5403342247009 }, -- 打开菜单的坐标
                garagem = {                                     -- 卡车将生成的车库坐标(由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 },
                },
                reboque = { -- 拖车坐标,拖车将生成在这里(由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 },
                }
        }
}

-- 这是为玩家生成交付合同的定义
Config.contratos = {
        cancelarTrabalhoKey = 167,             -- 取消活动任务的按键(167 = F6)
        cooldownGerarContrato = 5,                      -- 生成新合同的冷却时间(以分钟为单位)
        precoMinimoPorKm = 8000,          -- 合同每千米的最低价格
        precoMaximoPorKm = 12000,          -- 合同每千米的最高价格
        cargaMultiplicadora = 1.2,         -- 生成货运合同时应用的倍数
        cargaUrgenteChance = 10, -- 急件是随机生成的,这里可以配置概率(%)
        contratosMaximo = 60,         -- 最多可激活的合同数量,这意味着当生成一个超过此数目的联系时,最旧的联系将被删除
        trucks = {                      -- 在合同中生成的卡车列表
                "Phantom", "Hauler2", "Packer", "Hauler", "Phantom2", "Phantom3",
        },
        cargas = {
                --[[
                        在合同中生成的载货列表。
                        carga:是拖车生成名称
                        nome:是将显示在列表中供玩家选择的名称
                        def:是载货定义,用于配置是否为ADR证书、易碎或贵重货物
                        Def由3个值组成
                        def = {
                                0:ADR证书类型。0 = 无,1 = 炸药,2 = 易燃气体,3 = 易燃液体,4 = 易燃固体,5 = 有毒物质,6 = 腐蚀性物质
                                0:易碎货物:0 = 不易碎,1 = 易碎
                                0:贵重货物:0 = 不贵重,1 = 贵重
                        }
                ]]
                { carga = "armytanker",nome = "军队燃油罐",                      def = { 3, 0, 0 } },
                { carga = "armytanker",nome = "军队供水",                   def = { 0, 0, 0 } },
                { carga = "armytanker",nome = "军队腐蚀材料罐",       def = { 6, 0, 1 } },
                { carga = "armytanker",nome = "军队易燃气体罐",             def = { 2, 0, 0 } },
                { carga = "armytanker",nome = "军队有毒气体罐",               def = { 5, 0, 0 } },
                { carga = "armytanker",nome = "军队机密材料",               def = { 0, 0, 1 } },

                { carga = "trailerlogs", nome = "氢氧化钾",               def = { 6, 0, 0 } },
                { carga = "trailerlogs", nome = "氮气",                            def = { 2, 0, 1 } },
                { carga = "trailerlogs", nome = "氯化钾",                  def = { 5, 0, 0 } },
                { carga = "trailerlogs", nome = "毒药",                              def = { 5, 0, 0 } },
                { carga = "trailerlogs", nome = "杀虫剂",                           def = { 5, 0, 0 } },

                { carga = "armytrailer", nome = "空军拖车",                  def = { 0, 0, 0 } },

                { carga = "armytrailer", nome = "重型机械运输",         def = { 0, 1, 1 } },
                { carga = "armytrailer", nome = "隧道机械传送",         def = { 0, 1, 1 } },

                { carga = "docktrailer", nome = "家具运输",               def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "冷藏运输",            def = { 0, 1, 0 } },
                { carga = "docktrailer", nome = "砖运输",                     def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "进口产品运输",      def = { 0, 0, 1 } },
                { carga = "docktrailer", nome = "塑料制品运输",               def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "服装运输",                  def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "椅子运输",                     def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "家电运输",               def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "清洁用品运输",      def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "精制木材运输",            def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "石头运输",                     def = { 0, 0, 0 } },
                { carga = "docktrailer", nome = "珠宝运输",               def = { 0, 1, 1 } },
                { carga = "docktrailer", nome = "玻璃运输",                     def = { 0, 1, 0 } },
                { carga = "docktrailer", nome = "弹药运输",                      def = { 1, 0, 0 } },

                { carga = "docktrailer", nome = "拖车空的",                     def = { 0, 0, 0 } },

                { carga = "trailers4",   nome = "汽车拖车空的",                   def = { 0, 0, 0 } },

                { carga = "trailers4",   nome = "海军物品拖车",            def = { 0, 0, 0 } },
                { carga = "trailers4",   nome = "船拖车",                        def = { 0, 1, 1 } },

                { carga = "tr4",         nome = "富鸽车",                               def = { 0, 1, 1 } },

                { carga = "tvtrailer",   nome = "表演材料运输",    def = { 0, 0, 1 } },
                { carga = "tvtrailer",   nome = "活动材料运输",       def = { 0, 1, 1 } },

                { carga = "tanker2",   nome = "带添加剂的燃油罐",            def = { 3, 0, 0 } },
                { carga = "tanker2",   nome = "普通燃油罐",                  def = { 3, 0, 0 } },
                { carga = "tanker2",   nome = "煤油罐",                     def = { 3, 0, 0 } },
                { carga = "tanker2",   nome = "油罐",                            def = { 3, 0, 0 } },

                { carga = "docktrailer", nome = "异国材料运输",       def = { 0, 1, 1 } },
                { carga = "docktrailer", nome = "稀有材料运输",         def = { 0, 1, 1 } },
                { carga = "docktrailer", nome = "武器运输",            def = { 0, 0, 1 } },

                { carga = "trailerlogs", nome = "木材物流",                  def = { 0, 0, 0 } },

                { carga = "trailers",    nome = "建筑材料运输", def = { 0, 0, 0 } },
                { carga = "trailers",    nome = "橡胶运输",         def = { 0, 0, 0 } },
                { carga = "trailers",    nome = "家电运输",            def = { 0, 1, 0 } },
                { carga = "trailers",    nome = "疫苗运输",               def = { 0, 1, 0 } },
                { carga = "trailers",    nome = "爆炸物运输",             def = { 1, 1, 0 } },
                { carga = "trailers",    nome = "锯末运输",                   def = { 0, 0, 0 } },

                { carga = "trailers2",   nome = "葡萄运输",                     def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "猪肉运输",                      def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "牛肉运输",                   def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "胡萝卜运输",                  def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "土豆运输",                  def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "牛奶运输",                      def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "罐头食品运输",         def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "冷冻肉运输",               def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "豆子运输",                  def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "醋运输",                  def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "柠檬水运输",                  def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "瓶装水运输",             def = { 0, 0, 0 } },
                { carga = "trailers2",   nome = "奶酪运输",                  def = { 0, 0, 0 } },

                { carga = "trailers3",   nome = "瓷砖运输",                      def = { 0, 0, 0 } },
                { carga = "trailers3",   nome = "铁路运输",                      def = { 0, 0, 0 } },
                { carga = "trailers3",   nome = "用过的包装运输",         def = { 0, 0, 0 } },
                { carga = "trailers3",   nome = "地板板运输",               def = { 0, 0, 0 } },
                { carga = "trailers3",   nome = "陶瓷运输",                   def = { 0, 1, 0 } },
                { carga = "trailers3",   nome = "废品运输",                     def = { 0, 0, 0 } },

                { carga = "trailers4",   nome = "烟花运输",            def = { 1, 1, 0 } },
                { carga = "trailers4",   nome = "爆炸物运输",             def = { 1, 1, 0 } },
                { carga = "trailers4",   nome = "炸药运输",               def = { 1, 1, 0 } },
                { carga = "trailers4",   nome = "白磷运输",          def = { 4, 1, 0 } },

                { carga = "tr4",         nome = "高价汽车运输",               def = { 0, 1, 1 } },
                { carga = "tr4",         nome = "军用车辆运输",            def = { 0, 1, 1 } },
        }
}

-- 这是为玩家生成的司机定义
Config.motoristas = {
        cooldownGerarMotorista = 60,                  -- 生成新司机的冷却时间(以分钟为单位)
        precoMinimoPorKM = 65,               -- 司机每千米的最低起价(每次交付结束时)
        precoMaximoPorKM = 78,               -- 司机每千米的最高起价(每次交付结束时)
        precoMinimoMotorista = 900,               -- 司机的最低初始价格(每次交付结束时)
        precoMaximoMotorista = 1040,            -- 司机的最高初始价格(每次交付结束时)
        habilidadeAumentoPreco = 5,   -- 这是每项技能将增加司机薪水的成本百分比。也就是说,对于每一项能力,起价都会增加5%
页: [1]
查看完整版本: 翻译