搜索
查看: 31|回复: 1
收起左侧

翻译 保留源代码

[复制链接]

升级进度: 51%

杰瑞米瓦德 发表于 2024-9-27 04:05:15 | 显示全部楼层 |阅读模式

Config.webhook = "SEU_WEBHOOK"                  -- Webhook to send logs to discord
Config.lang = "en"                              -- Set the file language [en/br]

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'] = 1,                           -- Cooldown time (in minutes) to generate a new contract
    ['preco_por_km_min'] = 1400,                -- Minimum price per kilometer of the contract
    ['preco_por_km_max'] = 2000,                -- 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
        "actros","man","daf","vnl780"
    },
    ['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 = "liquide1", nome = "Potassium hydroxide", def = {6,0,0}},
        { carga = "liquide1", nome = "Nitrogen", def = {2,0,1}},
        { carga = "liquide1", nome = "Potassium chloride", def = {5,0,0}},
        { carga = "liquide1", nome = "Poison", def = {5,0,0}},
        { carga = "liquide1", nome = "Pesticide", def = {5,0,0}},

        { carga = "armytrailer", nome = "empty army trailer", def = {0,0,0}},

        { carga = "armytrailer2", nome = "Heavy machinery transport", def = {0,1,1}},
        { carga = "armytrailer2", 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 = "freighttrailer", nome = "Trailer empty", def = {0,0,0}},

        { carga = "tr2", 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 = "tanker", 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 = "heli1", nome = "Helicopter Transport", def = {0,1,1}},
        { carga = "militaire1", 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 time (in minutes) to generate a new driver
    ['preco_por_km_min'] = 500,                 -- Minimum starting price per KM of the driver (at the end of each delivery)
    ['preco_por_km_max'] = 600,                 -- Maximum initial price per KM of the driver (at the end of each delivery)
    ['preco_min'] = 10000,                      -- Minimum initial price of the driver (at the end of each delivery)
    ['preco_max'] = 11000,                      -- 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%
    ['nomes'] = {
        -- List of drivers that are randomly generated to be hired
        {img = "https://bootdey.com/img/Content/avatar/avatar8.png", nomes = {"Pedro Aquino","Jorge Fernandes","Lucas Silva","Cochran Hicks","Shirley Austin","Grimes Williamson","Kirk Cook","Davis Guerrero","Rocha Good","Hatfield Clarke","Norton Anthony","Parks Dale","Ellison Harrison","Rojas Boyd","Moon Acevedo","Carole Rivas","Wells Wyatt","Beasley Griffith","Jordan Hyde","Holman Dixon","Holden Lynch","Mckenzie Wilkerson","Chapman Preston","Christian Green","Blake Stuart","Paulette Atkinson","Dollie Lane","Castaneda Browning","Baldwin Blankenship","Russell Bowen","Madge Boyle","Nanette Cummings","Brooke Spence","Whitfield Berg","Angie Gonzales","Johanna Mercer","Terrell Mcmillan","Gilmore Quinn","Kenya Pittman","Hurley Black","Shanna Ortega","Logan Sharpe","Mari Brady","Mendoza Wilkinson","Stacie Sanford","Polly Acosta","Stone Robinson","Claudette Bartlett","Young Hines","Potter Wagner","Reilly Callahan","Kerr Kemp","Goff Raymond"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar7.png", nomes = {"Ivan Noleto Sequeira","Kim Wolfe","Laura Logan","Bruce Craft","Compton Luna","Randolph Callahan","Mccray Brock","Sybil Miles","Hendricks Henry","Tina Compton","Phelps Hunter","Jones Russo","Esmeralda Banks","Reid Dean","Parrish Cole","Carlson Gilbert","Jackie Macias","Liza Morse","Mclean Warner","Winnie Lopez","Katheryn Valenzuela","Wade Mccoy","Acosta Mays","Valeria Witt","Elnora Howard","Bernadette Dawson","Rivera Casey","Little Sanford","Deanna Petty","Leonard Blackwell","Payne Leblanc","Tammy Murphy","Sargent Donaldson","Colon Carey","Janis Roth","Lidia Higgins","Lakisha Whitaker","Adrian Mcbride","Maria Forbes","Daisy Mason","Pittman Curtis","Ladonna Bryan","Gaines Hogan","Powers Rodriquez","Donna Hopper","Kristi Livingston","Chelsea Bauer","Gray Fleming","Contreras Mcdonald","Vilma Potts","Guadalupe Mullins"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar6.png", nomes = {"Kenya Mullen","Castaneda Colon","Judy Mckay","Taylor Kerr","Hurst Roy","Owens Vaughan","Vanessa Cline","Bertie Edwards","Flynn Frank","Burks Sutton","Randi Meadows","Tessa Gentry","Lowery Wooten","Acosta Harper","Georgette Cooley","Candice Patterson","Kirsten Daniels","Blake West","Alexandria Pope","Lena Forbes","Morton Snyder","Tara Bradford","Selena Sykes","Tameka Atkinson","Fowler Walker","Gena Ortega","Sheppard Navarro","Imelda Duncan","Christina Bowers","Aline Haynes","Benita Bright","Boyd Mccall","Sandra Weaver","Melissa Wells","Graham Gilmore","Katrina Oliver","Ginger Larson","Griffith Bishop","Barbara Washington","Iris Christensen","Bauer Gay","Hays Vega","Valarie Booth","Kitty Crane","Carmella Torres","Angelina Puckett","Stone Cabrera","Brock Humphrey","Hillary Houston","Callie Robles"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar5.png", nomes = {"Rocha Harrell","Gilliam Thomas","Osborne Blevins","Elba Chambers","Heath Price","Melinda Maynard","Ashlee Johns","Shelton Petty","Carey Mcclain","Blackwell Horne","Deborah Gonzalez","Buck Faulkner","Celina Chang","Kennedy Patrick","Atkinson Sherman","Janelle Tyson","Noelle Vincent","Leah Barron","Angeline Sellers","Trudy Murray","Contreras Hardy","Fletcher Todd","Benson Singleton","Sanford Dean","Hartman Wilkinson","Harriet Robinson","Vivian Osborn","Ida Simmons","Tamara Merrill","Esmeralda Baird","Maynard Oneal","Brianna Greene","Pat Stewart","Tate Wood","French Farrell","Jolene Calderon","Irene Roth","Dina Waller","Gonzalez Alvarez","Leigh Durham","Eve Moody","Lydia Hewitt","Price Summers","Duran Schultz","Rena Williamson","Meagan Shaffer","Angelique Dennis","Graham Love","Sheree Lynn","Church Golden"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar4.png", nomes = {"Cecelia Carson","Rivas Kelly","Green Johnson","Jill Buck","Maddox Leblanc","Hope Aguirre","Aguilar Diaz","Valerie Wiggins","Crystal Sweeney","Sharlene Davidson","Ruthie Valdez","Allyson Haney","Bridgett Wright","Cooke Vargas","Hopkins Neal","Deloris Curry","Alba Warren","Lynette Preston","Candace Britt","Phyllis Mayer","Bailey Stephenson","Meredith Harrell","Conner Heath","Kelly Lynch","Kelli Salinas","Tamara Tran","Boone Sosa","Cora Barrera","John Francis","Tammi Parsons","Natalie Travis","Ivy Mccoy","William Nash","Reba Dillon","Kimberley Whitney","Karen Ellis","Alison Padilla","Spencer Camacho","Blackwell Mccray","Mcgowan Castaneda","Kent Thomas","Lauri Wiley","Atkins Lowery","Janell Hancock","Mosley Carney","Mason Clay","Pat Mercer","Frances Oneal","Brandy Strong","Elvira Houston"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar3.png", nomes = {"Joice Campos","Mélanie Rebotim","Berenice Holanda","Maitê Lage","Eduarda Barbosa","Livia Martins","Melissa Fernandes","Isabela Castro","Leila Fernandes","Letícia Correia","Melissa Cunha","Gabriela Azevedo"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar2.png", nomes = {"Howell Dickerson","Carlson Kerr","Kitty Moody","Malinda Richards","Craig Watts","Alana Ratliff","Mindy Patton","Kelly Stone","Beasley Stark","Perez Mercer","Janell Norris","Angela Mayer","Opal Orr","Charity Lamb","Ford Castaneda","Mitzi Nelson","Corrine Morris","Nanette Cervantes","Evelyn Burton","Giles Fletcher","Franklin Hahn","Ruiz Simmons","Selena Murphy","Mccoy Clarke","Skinner Sanford","Lea Oneill","Williamson Rosales","Katharine Hendricks","Dillon Nguyen","Cannon Fulton","Sharp Mccray","Billie Schultz","Flora Griffith","Russell Beasley","Sampson Forbes","Duran Moore","Leach Todd","Henrietta Bowman","Margie Solomon","Mcdonald Collins","Willis Pratt","Britney Dixon","Mcleod Mejia","Salinas Albert","Padilla Lynn","Natalia Garrett","Lynnette Savage","Fleming Keith","Johnston Carrillo","Whitney Gomez"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar1.png", nomes = {"Bennett Stevens","Mcmillan Calhoun","Paula Blanchard","Roberson Holman","Frost Woods","Drake Boyd","Maricela Long","Hess Guerrero","Martha Adams","Simmons Ramsey","Medina Pitts","Hazel Tyson","Mia Nguyen","Clare Shannon","Kristy Dorsey","Hilda Cochran","Sandy Zimmerman","Petra Lowery","Opal Collier","Velez Terry","Mccormick Hewitt","Weeks Garner","Ashley Byers","Guzman Blackburn","Ramona Stanley","Delia Ratliff","Talley Rodriquez","Ochoa Hayden","Thelma Stout","Lloyd Clarke","Gordon Gould","Aida Noel","Corinne Richmond","Malone Walls","Shields Bowen","Howell Harper","Figueroa Schwartz","Rachel Delgado","Debora Chaney","Chen Avery","Kidd Fitzgerald","Aguirre Park","Combs Cruz","Huff Thompson","Munoz Crosby","Whitaker Mason","Oneil York","Francis Houston","Prince White","Cornelia Bell"}}
    },
    ['max_motoristas_ativos'] = 20,             -- Maximum number of drivers that can be active, this means that when generating a driver that exceeds this number, the oldest driver will be deleted
    ['max_motoristas_por_player'] = 5           -- Maximum number of drivers the player can hire
}

-- Here is the definition of the contracts that are generated for drivers to carry out
Config.trabalhos = {
    ['cooldown'] = 30,                      -- Cooldown time (in minutes) for drivers to make contracts and generate money for the company

    -- It is recommended to keep the initial profit and the percentage higher than the values ​​configured for drivers in the above config
    ['valor_inicial_min'] = 10000,          -- Minimum initial contract profit
    ['valor_inicial_max'] = 12000,          -- Maximum initial contract profit
    ['porcentagem_bonus_habilidades'] = 7,  -- Percentage that will be generated from profit for each skill that the driver has
    ['gera_dinheiro_offline'] = false       -- true: drivers will generate money all the time / false: drivers will generate money only if the owner is online
}

Config.multiplicador_venda = 0.7    -- Value you receive when selling the used truck
Config.concessionaria = {           -- Truck dealership vehicles
    -- Here you can configure the vehicles of the dealership
    --['actros'] = {                                -- This must be the vehicle's spawn name
        --['name'] = 'Mercedes-Benz Actros',        -- Truck name
        --['price'] = 310000,                       -- Value
        --['engine'] = "12.0 L MB OM 457 LA I6",    -- Engine configuration
        --['transmission'] = "12-Speed",            -- Transmission configuration
        --['hp'] = '450',                           -- Horsepower
        --['img'] = 'img/actros.jpg'                -- Vehicle image
    --},
    -- The other vehicles follow the same pattern as the vehicle above
    --['man'] = {
        --['name'] = 'MAN TGX',
        --['price'] = 270000,
        --['engine'] = "16.2 L D2868 V8",
        --['transmission'] = "12-Speed",
        --['hp'] = '401',
        --['img'] = 'img/man.jpg'
    --},
    --['daf'] = {
        --['name'] = 'DAF XF Euro 6',
        --['price'] = 330000,
        --['engine'] = "12.9 PACCAR MX-13 I6",
        --['transmission'] = "12-Speed",
        --['hp'] = '480',
        --['img'] = 'img/daf.jpg'
    --},
    ['t680'] = {
        ['name'] = 'Kenworth T680',
        ['price'] = 100000,
        ['engine'] = "12.9 PACCAR MX-13 I6",
        ['transmission'] = "10-Speed",
        ['hp'] = '550',
        ['img'] = 'img/t680.jpg'
    },
    ['w900'] = {
        ['name'] = 'Kenworth W900 6x2',
        ['price'] = 120000,
        ['engine'] = "15.0 Cummins ISX I6",
        ['transmission'] = "18-Speed",
        ['hp'] = '590',
        ['img'] = 'img/w900.jpg'
    },
    ['vnl780'] = {
        ['name'] = 'Volvo VNL 780',
        ['price'] = 120000,
        ['engine'] = "13.0 D13TC I6",
        ['transmission'] = "12-Speed",
        ['hp'] = '535',
        ['img'] = 'img/vnl780.jpg'
    }
}
Config.valor_reparo = { -- Value to repair 1% of each part (Example: if 40% of the part is damaged, the value to repair will be multiplied by 40)
    ['engine'] = 250,
    ['body'] = 150,
    ['transmission'] = 200,
    ['wheels'] = 100
}

--[[
    Amount of exp you need to reach each level
    Example:
    [1] = 100,
    [2] = 200,
    This means that to reach level 1 you need 100 EXP, to reach level 2 you need 200 EXP
    When leveling up, the player receives 1 skill point
    Level 30 is the maximum

Config.exp_por_level = {
    [1] = 1000,
    [2] = 2000,
    [3] = 3000,
    [4] = 4000,
    [5] = 5000,
    [6] = 6000,
    [7] = 7000,
    [8] = 8000,
    [9] = 9000,
    [10] = 10000,
    [11] = 11000,
    [12] = 12000,
    [13] = 13000,
    [14] = 14000,
    [15] = 16000,
    [16] = 18000,
    [17] = 20000,
    [18] = 22000,
    [19] = 24000,
    [20] = 26000,
    [21] = 28000,
    [22] = 30000,
    [23] = 35000,
    [24] = 40000,
    [25] = 45000,
    [26] = 50000,
    [27] = 55000,
    [28] = 60000,
    [29] = 65000,
    [30] = 100000 -- Max
}

--[[
    Maximum loan amount a person can take per level (the higher the level, the bigger the loan)
    Example:
    [0] = 20000,
    [10] = 50000,
    [20] = 200000
    This means that at level 0 to level 10, you can get a loan of 20 thousand. From level 10 to 20, you can take a maximum of 50 thousand ....

Config.max_emprestimo_por_level = {
    [0] = 40000,
    [10] = 100000,
    [20] = 250000,
    [30] = 600000
}

-- Loan amounts and amount that is charged per day
Config.emprestimos = {
    ['cooldown'] = 86400, -- Time (in seconds) that the loan will be charged to the player (86400 = 24 hours)
    ['valores'] = {
        --[[
            It is possible to configure 4 loan values ​​and each loan has its own settings
            Example:
            [1] = {
                20000,  [Loan amount]: 20,000
                240,    [Amount that the player pays each day]: This amount must be greater than the amount below, so in this case, when finalizing the payment of all installments, the player will pay 24 thousand (4 thousand of interest)
                200     [Base amount to calculate interest]: The above value subtracted from this (240 - 200) will be the amount of interest: 40 interest per day
            },

        [1] = {20000,400,200},
        [2] = {50000,950,500},
        [3] = {100000,1800,1000},
        [4] = {400000,7000,4000}
    }
}

--[[
    Skill level and kms you can travel at each level
    Example:
    [0] = 4,
    [1] = 5,
    This means that at level 0 the player can initiate contracts of a maximum of 4 km, at level 1, he can take contracts of 5 km
    Level 6 is the maximum

Config.habilidade_distancia = {
    [0] = 6,
    [1] = 6.5,
    [2] = 7,
    [3] = 7.5,
    [4] = 8,
    [5] = 8.5,
    [6] = 99 -- Max
}

--[[
    EXP gain in %
    XP is calculated based on the value of the delivery, so if he receive 1000 in one delivery, he will earn 50 XP
    This XP will be increased based on the bonuses configured below

Config.exp = 1

-- EXP bonuses and money each skill gives
Config.bonus = {
    -- This bonus will be applied according to the level and requirements of the load. Then, when transporting a fragile cargo, he will receive the fragile cargo bonus (these values ​​are in%)


[发帖际遇]: 杰瑞米瓦德 被钱袋砸中进医院,看病花了 9 贡献. 幸运榜 / 衰神榜
回复 论坛版权

使用道具 举报

ChatGPT 发表于 2024-9-27 04:11:53 | 显示全部楼层
Config.webhook = "SEU_WEBHOOK"                  -- 用于发送日志到 Discord 的 webhook
Config.lang = "en"                              -- 设置文件语言

Config.formatacao = {
    ['moeda'] = 'USD',          -- 这是货币格式,以便货币符号正确显示
    ['location'] = 'en-US'      -- 您所在国家的地区设置,根据您的标准格式化小数位
}

-- 这里是可以打开卡车司机菜单的位置
-- 您可以根据需要添加更多位置,仅需使用已创建的位置作为示例
Config.empresas = {
    ["trucker_1"] = {                                                           -- ID
        ['nome'] = "Port",                                                      -- 名称
        ['coordenada'] = {1208.7689208984,-3114.9829101562,5.5403342247009},    -- 打开菜单的坐标
        ['coordenada_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},
        },
        ['coordenada_cargas'] = {                                               -- 拖车坐标,拖车生成位置(坐标包括 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 = {
    ['cancel_contrato'] = 167,                  -- 取消当前工作的键位(167 = F6)
    ['cooldown'] = 1,                           -- 生成新合同时的冷却时间(以分钟为单位)
    ['preco_por_km_min'] = 1400,                -- 合同每公里的最低价格
    ['preco_por_km_max'] = 2000,                -- 合同每公里的最高价格
    ['multiplicador_frete'] = 1.2,              -- 生成货运负载时应用的倍数
    ['probabilidade_ser_carga_urgente'] = 10,   -- 紧急货物的生成概率(%)
    ['max_contratos_ativos'] = 60,              -- 最大活动合同数量,超过此数字时最旧合同将被删除
    ['caminhoes'] = {                           -- 合同中生成的卡车列表
        "actros","man","daf","vnl780"
    },
    ['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 = "liquide1", nome = "氢氧化钾", def = {6,0,0}},
        { carga = "liquide1", nome = "氮气", def = {2,0,1}},
        { carga = "liquide1", nome = "氯化钾", def = {5,0,0}},
        { carga = "liquide1", nome = "毒药", def = {5,0,0}},
        { carga = "liquide1", nome = "杀虫剂", def = {5,0,0}},

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

        { carga = "armytrailer2", nome = "重型机械运输", def = {0,1,1}},
        { carga = "armytrailer2", 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 = "freighttrailer", nome = "空拖车", def = {0,0,0}},

        { carga = "tr2", 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 = "tanker", 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 = "heli1", nome = "直升机运输", def = {0,1,1}},
        { carga = "militaire1", nome = "军用车辆运输", def = {0,1,1}},
    }
}

-- 这里是为玩家生成的驾驶员的定义
Config.motoristas = {
    ['cooldown'] = 60,                          -- 生成新驾驶员的冷却时间(以分钟为单位)
    ['preco_por_km_min'] = 500,                 -- 驾驶员每公里的最低起始价格(每次送达后)
    ['preco_por_km_max'] = 600,                 -- 驾驶员每公里的最高起始价格(每次送达后)
    ['preco_min'] = 10000,                      -- 驾驶员的最低起始价格(每次送达后)
    ['preco_max'] = 11000,                      -- 驾驶员的最高起始价格(每次送达后)
    ['porcentagem_bonus_habilidades'] = 5,      -- 每项技能将增加驾驶员薪水的百分比成本。也就是说,他拥有的每个技能,起始价格将增加 5%
    ['nomes'] = {
        -- 随机生成可被雇佣的驾驶员列表
        {img = "https://bootdey.com/img/Content/avatar/avatar8.png", nomes = {"Pedro Aquino","Jorge Fernandes","Lucas Silva","Cochran Hicks","Shirley Austin","Grimes Williamson","Kirk Cook","Davis Guerrero","Rocha Good","Hatfield Clarke","Norton Anthony","Parks Dale","Ellison Harrison","Rojas Boyd","Moon Acevedo","Carole Rivas","Wells Wyatt","Beasley Griffith","Jordan Hyde","Holman Dixon","Holden Lynch","Mckenzie Wilkerson","Chapman Preston","Christian Green","Blake Stuart","Paulette Atkinson","Dollie Lane","Castaneda Browning","Baldwin Blankenship","Russell Bowen","Madge Boyle","Nanette Cummings","Brooke Spence","Whitfield Berg","Angie Gonzales","Johanna Mercer","Terrell Mcmillan","Gilmore Quinn","Kenya Pittman","Hurley Black","Shanna Ortega","Logan Sharpe","Mari Brady","Mendoza Wilkinson","Stacie Sanford","Polly Acosta","Stone Robinson","Claudette Bartlett","Young Hines","Potter Wagner","Reilly Callahan","Kerr Kemp","Goff Raymond"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar7.png", nomes = {"Ivan Noleto Sequeira","Kim Wolfe","Laura Logan","Bruce Craft","Compton Luna","Randolph Callahan","Mccray Brock","Sybil Miles","Hendricks Henry","Tina Compton","Phelps Hunter","Jones Russo","Esmeralda Banks","Reid Dean","Parrish Cole","Carlson Gilbert","Jackie Macias","Liza Morse","Mclean Warner","Winnie Lopez","Katheryn Valenzuela","Wade Mccoy","Acosta Mays","Valeria Witt","Elnora Howard","Bernadette Dawson","Rivera Casey","Little Sanford","Deanna Petty","Leonard Blackwell","Payne Leblanc","Tammy Murphy","Sargent Donaldson","Colon Carey","Janis Roth","Lidia Higgins","Lakisha Whitaker","Adrian Mcbride","Maria Forbes","Daisy Mason","Pittman Curtis","Ladonna Bryan","Gaines Hogan","Powers Rodriquez","Donna Hopper","Kristi Livingston","Chelsea Bauer","Gray Fleming","Contreras Mcdonald","Vilma Potts","Guadalupe Mullins"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar6.png", nomes = {"Kenya Mullen","Castaneda Colon","Judy Mckay","Taylor Kerr","Hurst Roy","Owens Vaughan","Vanessa Cline","Bertie Edwards","Flynn Frank","Burks Sutton","Randi Meadows","Tessa Gentry","Lowery Wooten","Acosta Harper","Georgette Cooley","Candice Patterson","Kirsten Daniels","Blake West","Alexandria Pope","Lena Forbes","Morton Snyder","Tara Bradford","Selena Sykes","Tameka Atkinson","Fowler Walker","Gena Ortega","Sheppard Navarro","Imelda Duncan","Christina Bowers","Aline Haynes","Benita Bright","Boyd Mccall","Sandra Weaver","Melissa Wells","Graham Gilmore","Katrina Oliver","Ginger Larson","Griffith Bishop","Barbara Washington","Iris Christensen","Bauer Gay","Hays Vega","Valarie Booth","Kitty Crane","Carmella Torres","Angelina Puckett","Stone Cabrera","Brock Humphrey","Hillary Houston","Callie Robles"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar5.png", nomes = {"Rocha Harrell","Gilliam Thomas","Osborne Blevins","Elba Chambers","Heath Price","Melinda Maynard","Ashlee Johns","Shelton Petty","Carey Mcclain","Blackwell Horne","Deborah Gonzalez","Buck Faulkner","Celina Chang","Kennedy Patrick","Atkinson Sherman","Janelle Tyson","Noelle Vincent","Leah Barron","Angeline Sellers","Trudy Murray","Contreras Hardy","Fletcher Todd","Benson Singleton","Sanford Dean","Hartman Wilkinson","Harriet Robinson","Vivian Osborn","Ida Simmons","Tamara Merrill","Esmeralda Baird","Maynard Oneal","Brianna Greene","Pat Stewart","Tate Wood","French Farrell","Jolene Calderon","Irene Roth","Dina Waller","Gonzalez Alvarez","Leigh Durham","Eve Moody","Lydia Hewitt","Price Summers","Duran Schultz","Rena Williamson","Meagan Shaffer","Angelique Dennis","Graham Love","Sheree Lynn","Church Golden"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar4.png", nomes = {"Cecelia Carson","Rivas Kelly","Green Johnson","Jill Buck","Maddox Leblanc","Hope Aguirre","Aguilar Diaz","Valerie Wiggins","Crystal Sweeney","Sharlene Davidson","Ruthie Valdez","Allyson Haney","Bridgett Wright","Cooke Vargas","Hopkins Neal","Deloris Curry","Alba Warren","Lynette Preston","Candace Britt","Phyllis Mayer","Bailey Stephenson","Meredith Harrell","Conner Heath","Kelly Lynch","Kelli Salinas","Tamara Tran","Boone Sosa","Cora Barrera","John Francis","Tammi Parsons","Natalie Travis","Ivy Mccoy","William Nash","Reba Dillon","Kimberley Whitney","Karen Ellis","Alison Padilla","Spencer Camacho","Blackwell Mccray","Mcgowan Castaneda","Kent Thomas","Lauri Wiley","Atkins Lowery","Janell Hancock","Mosley Carney","Mason Clay","Pat Mercer","Frances Oneal","Brandy Strong","Elvira Houston"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar3.png", nomes = {"Joice Campos","Mélanie Rebotim","Berenice Holanda","Maitê Lage","Eduarda Barbosa","Livia Martins","Melissa Fernandes","Isabela Castro","Leila Fernandes","Letícia Correia","Melissa Cunha","Gabriela Azevedo"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar2.png", nomes = {"Howell Dickerson","Carlson Kerr","Kitty Moody","Malinda Richards","Craig Watts","Alana Ratliff","Mindy Patton","Kelly Stone","Beasley Stark","Perez Mercer","Janell Norris","Angela Mayer","Opal Orr","Charity Lamb","Ford Castaneda","Mitzi Nelson","Corrine Morris","Nanette Cervantes","Evelyn Burton","Giles Fletcher","Franklin Hahn","Ruiz Simmons","Selena Murphy","Mccoy Clarke","Skinner Sanford","Lea Oneill","Williamson Rosales","Katharine Hendricks","Dillon Nguyen","Cannon Fulton","Sharp Mccray","Billie Schultz","Flora Griffith","Russell Beasley","Sampson Forbes","Duran Moore","Leach Todd","Henrietta Bowman","Margie Solomon","Mcdonald Collins","Willis Pratt","Britney Dixon","Mcleod Mejia","Salinas Albert","Padilla Lynn","Natalia Garrett","Lynnette Savage","Fleming Keith","Johnston Carrillo","Whitney Gomez"}},
        {img = "https://bootdey.com/img/Content/avatar/avatar1.png", nomes = {"Bennett Stevens","Mcmillan Calhoun","Paula Blanchard","Roberson Holman","Frost Woods","Drake Boyd","Maricela Long","Hess Guerrero","Martha Adams","Simmons Ramsey","Medina Pitts","Hazel Tyson","Mia Nguyen","Clare Shannon","Kristy Dorsey","Hilda Cochran","Sandy Zimmerman","Petra Lowery","Opal Collier","Velez Terry","Mccormick Hewitt","Weeks Garner","Ashley Byers","Guzman Blackburn","Ramona Stanley","Delia Ratliff","Talley Rodriquez","Ochoa Hayden","Thelma Stout","Lloyd Clarke","Gordon Gould","Aida Noel","Corinne Richmond","Malone Walls","Shields Bowen","Howell Harper","Figueroa Schwartz","Rachel Delgado","Debora Chaney","Chen Avery","Kidd Fitzgerald","Aguirre Park","Combs Cruz","Huff Thompson","Munoz Crosby","Whitaker Mason","Oneil York","Francis Houston","Prince White","Cornelia Bell"}}
    },
    ['max_motoristas_ativos'] = 20,             -- 最大可以激活的驾驶员数量,这意味着生成的驾驶员超过该数量时,最旧的驾驶员将被删除
    ['max_motoristas_por_player'] = 5           -- 玩家可以雇佣的最大驾驶员数量
}

-- 这里是为驾驶员生成的待执行合同的定义
Config.trabalhos = {
    ['cooldown'] = 30,                      -- 驾驶员进行合同并为公司赚钱的冷却时间(以分钟为单位)

    -- 建议保持初始利润和百分比高于上述配置的驾驶员
    ['valor_inicial_min'] = 10000,          -- 合同的最低初始利润
    ['valor_inicial_max'] = 12000,          -- 合同的最高初始利润
    ['porcentagem_bonus_habilidades'] = 7,  -- 每项技能将产生的利润百分比
    ['gera_dinheiro_offline'] = false       -- true: 驾驶员将随时生成金钱 / false: 驾驶员只有在车主在线时才会生成金钱
}

Config.multiplicador_venda = 0.7    -- 销售二手卡车时您所获得的金额
Config.concessionaria = {           -- 卡车经销商车辆
    -- 这里可以配置经销商的车辆
    -- = {                                -- 这必须是车辆的生成名称
        -- = 'Mercedes-Benz Actros',        -- 卡车名称
        -- = 310000,                       -- 价格
        -- = "12.0 L MB OM 457 LA I6",    -- 引擎配置
        -- = "12-Speed",            -- 传输配置
        -- = '450',                           -- 马力
        -- = 'img/actros.jpg'                -- 车辆图像
    --},
    -- 其他车辆遵循与上述汽车相同的模式
    -- = {
        -- = 'MAN TGX',
        -- = 270000,
        -- = "16.2 L D2868 V8",
        -- = "12-Speed",
        -- = '401',
        -- = 'img/man.jpg'
    --},
    -- = {
        -- = 'DAF XF Euro 6',
        -- = 330000,
        -- = "12.9 PACCAR MX-13 I6",
        -- = "12-Speed",
        -- = '480',
        -- = 'img/daf.jpg'
    --},
    ['t680'] = {
        ['name'] = 'Kenworth T680',
        ['price'] = 100000,
        ['engine'] = "12.9 PACCAR MX-13 I6",
        ['transmission'] = "10-Speed",
        ['hp'] = '550',
        ['img'] = 'img/t680.jpg'
    },
    ['w900'] = {
        ['name'] = 'Kenworth W900 6x2',
        ['price'] = 120000,
        ['engine'] = "15.0 Cummins ISX I6",
        ['transmission'] = "18-Speed",
        ['hp'] = '590',
        ['img'] = 'img/w900.jpg'
    },
    ['vnl780'] = {
        ['name'] = 'Volvo VNL 780',
        ['price'] = 120000,
        ['engine'] = "13.0 D13TC I6",
        ['transmission'] = "12-Speed",
        ['hp'] = '535',
        ['img'] = 'img/vnl780.jpg'
    }
}
Config.valor_reparo = { -- 修复每个部件1%的费用(示例:如果部件损坏了40%,修复费用将乘以40)
    ['engine'] = 250,
    ['body'] = 150,
    ['transmission'] = 200,
    ['wheels'] = 100
}

--[[ 
    达到每个等级所需的经验值
    例如:
     = 100,
     = 200,
    这意味着要达到等级 1 需要 100 EXP,要达到等级 2 需要 200 EXP
    升级时,玩家获得 1 个技能点
    最高等级为 30

Config.exp_por_level = {
    [1] = 1000,
    [2] = 2000,
    [3] = 3000,
    [4] = 4000,
    [5] = 5000,
    [6] = 6000,
    [7] = 7000,
    [8] = 8000,
    [9] = 9000,
    [10] = 10000,
    [11] = 11000,
    [12] = 12000,
    [13] = 13000,
    [14] = 14000,
    [15] = 16000,
    [16] = 18000,
    [17] = 20000,
    [18] = 22000,
    [19] = 24000,
    [20] = 26000,
    [21] = 28000,
    [22] = 30000,
    [23] = 35000,
    [24] = 40000,
    [25] = 45000,
    [26] = 50000,
    [27] = 55000,
    [28] = 60000,
    [29] = 65000,
    [30] = 100000 -- 最高
}

--[[ 
    每个等级可以借取的最大贷款金额(等级越高,贷款金额越大)
    例如:
     = 20000,
     = 50000,
     = 200000
    这意味着在等级 0 到 10 之间,您可以获得 20000 的贷款。在等级 10 到 20 之间,最多可以贷款 50000 .... 

Config.max_emprestimo_por_level = {
    [0] = 40000,
    [10] = 100000,
    [20] = 250000,
    [30] = 600000
}

-- 贷款金额和每日收费金额
Config.emprestimos = {
    ['cooldown'] = 86400, -- 贷款会在多少时间(以秒为单位)收取到玩家身上(86400 = 24小时)
    ['valores'] = {
        --[[ 
            可以配置 4 个贷款值,每个贷款都有自己的设置
            示例:
             = {
                20000,  : 20,000
                240,    : 此金额必须大于下面的金额,所以在这种情况下,当完成所有还款时,玩家将支付 24000(4000 的利息)
                200     : 上述金额减去此金额(240 - 200)就是利息:每天的利息为 40
            },

        [1] = {20000,400,200},
        [2] = {50000,950,500},
        [3] = {100000,1800,1000},
        [4] = {400000,7000,4000}
    }
}

--[[ 
    每个等级可以行驶的最大公里数
    例如:
     = 4,
     = 5,
    这意味着在等级 0,玩家可以承接最大为 4 公里的合同,在等级 1,可以承接最大为 5 公里的合同
    最高等级为 6

Config.habilidade_distancia = {
    [0] = 6,
    [1] = 6.5,
    [2] = 7,
    [3] = 7.5,
    [4] = 8,
    [5] = 8.5,
    [6] = 99 -- 最高
}

--[[ 
    经验值获得的百分比
    XP 是根据交付的数值进行计算的,所以如果他在一次交付中获得 1000,那么他将获得 50 XP
    这个 XP 将基于下面配置的奖励进行增加

Config.exp = 1

-- 每项技能给予的 EXP 奖励和金钱
Config.bonus = {
    -- 此奖励将根据级别和负载的要求来应用。然后在运输脆弱货物时,将获得脆弱货物的奖励(这些值以 % 为单位)
回复

使用道具 举报

文明发言,和谐互动
文明发言,和谐互动
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|小黑屋|首页 ( 冀ICP备2021005225号-1 ) |网站地图

GMT+8, 2024-11-28 20:58 , Processed in 0.099570 second(s), 9 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

© 2001-2013 ELITE论坛【技术无价-分享快乐】

快速回复 返回顶部 返回列表