Makiver

Untitled

May 5th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.64 KB | None | 0 0
  1. Config.Menus = {
  2.     main = {
  3.         label       = 'LS CUSTOMS',
  4.         parent      = nil,
  5.         upgrades    = _U('upgrades'),
  6.         cosmetics   = _U('cosmetics')
  7.     },
  8.     upgrades = {
  9.         label           = _U('upgrades'),
  10.         parent          = 'main',
  11.         modEngine       = _U('engine'),
  12.         modBrakes       = _U('brakes'),
  13.         modTransmission = _U('transmission'),
  14.         modSuspension   = _U('suspension'),
  15.         modArmor        = _U('armor'),
  16.         modTurbo        = _U('turbo')
  17.     },
  18.     modEngine = {
  19.         label = _U('engine'),
  20.         parent = 'upgrades',
  21.         modType = 11,
  22.         price = {13.95, 32.56, 65.12, 139.53}
  23.     },
  24.     modBrakes = {
  25.         label = _U('brakes'),
  26.         parent = 'upgrades',
  27.         modType = 12,
  28.         price = {4.65, 9.3, 18.6, 13.95}
  29.     },
  30.     modTransmission = {
  31.         label = _U('transmission'),
  32.         parent = 'upgrades',
  33.         modType = 13,
  34.         price = {13.95, 20.93, 46.51}
  35.     },
  36.     modSuspension = {
  37.         label = _U('suspension'),
  38.         parent = 'upgrades',
  39.         modType = 15,
  40.         price = {3.72, 7.44, 14.88, 29.77, 40.2}
  41.     },
  42.     modArmor = {
  43.         label = _U('armor'),
  44.         parent = 'upgrades',
  45.         modType = 16,
  46.         price = {69.77, 116.28, 130.00, 150.00, 180.00, 190.00}
  47.     },
  48.     modTurbo = {
  49.         label = _U('turbo'),
  50.         parent = 'upgrades',
  51.         modType = 17,
  52.         price = {55.81}
  53.     },
  54.     cosmetics = {
  55.         label               = _U('cosmetics'),
  56.         parent              = 'main',
  57.         bodyparts           = _U('bodyparts'),
  58.         windowTint          = _U('windowtint'),
  59.         modHorns            = _U('horns'),
  60.         neonColor           = _U('neons'),
  61.         resprays            = _U('respray'),
  62.         modXenon            = _U('headlights'),
  63.         plateIndex          = _U('licenseplates'),
  64.         wheels              = _U('wheels'),
  65.         modPlateHolder      = _U('modplateholder'),
  66.         modVanityPlate      = _U('modvanityplate'),
  67.         modTrimA            = _U('interior'),
  68.         modOrnaments        = _U('trim'),
  69.         modDashboard        = _U('dashboard'),
  70.         modDial             = _U('speedometer'),
  71.         modDoorSpeaker      = _U('door_speakers'),
  72.         modSeats            = _U('seats'),
  73.         modSteeringWheel    = _U('steering_wheel'),
  74.         modShifterLeavers   = _U('gear_lever'),
  75.         modAPlate           = _U('quarter_deck'),
  76.         modSpeakers         = _U('speakers'),
  77.         modTrunk            = _U('trunk'),
  78.         modHydrolic         = _U('hydraulic'),
  79.         modEngineBlock      = _U('engine_block'),
  80.         modAirFilter        = _U('air_filter'),
  81.         modStruts           = _U('struts'),
  82.         modArchCover        = _U('arch_cover'),
  83.         modAerials          = _U('aerials'),
  84.         modTrimB            = _U('wings'),
  85.         modTank             = _U('fuel_tank'),
  86.         modWindows          = _U('windows'),
  87.         modLivery           = _U('stickers')
  88.     },
  89.  
  90.     modPlateHolder = {
  91.         label = _U('modplateholder'),
  92.         parent = 'cosmetics',
  93.         modType = 25,
  94.         price = 3.49
  95.     },
  96.     modVanityPlate = {
  97.         label = _U('modvanityplate'),
  98.         parent = 'cosmetics',
  99.         modType = 26,
  100.         price = 1.1
  101.     },
  102.     modTrimA = {
  103.         label = _U('interior'),
  104.         parent = 'cosmetics',
  105.         modType = 27,
  106.         price = 6.98
  107.     },
  108.     modOrnaments = {
  109.         label = _U('trim'),
  110.         parent = 'cosmetics',
  111.         modType = 28,
  112.         price = 0.9
  113.     },
  114.     modDashboard = {
  115.         label = _U('dashboard'),
  116.         parent = 'cosmetics',
  117.         modType = 29,
  118.         price = 4.65
  119.     },
  120.     modDial = {
  121.         label = _U('speedometer'),
  122.         parent = 'cosmetics',
  123.         modType = 30,
  124.         price = 4.19
  125.     },
  126.     modDoorSpeaker = {
  127.         label = _U('door_speakers'),
  128.         parent = 'cosmetics',
  129.         modType = 31,
  130.         price = 5.58
  131.     },
  132.     modSeats = {
  133.         label = _U('seats'),
  134.         parent = 'cosmetics',
  135.         modType = 32,
  136.         price = 4.65
  137.     },
  138.     modSteeringWheel = {
  139.         label = _U('steering_wheel'),
  140.         parent = 'cosmetics',
  141.         modType = 33,
  142.         price = 4.19
  143.     },
  144.     modShifterLeavers = {
  145.         label = _U('gear_lever'),
  146.         parent = 'cosmetics',
  147.         modType = 34,
  148.         price = 3.26
  149.     },
  150.     modAPlate = {
  151.         label = _U('quarter_deck'),
  152.         parent = 'cosmetics',
  153.         modType = 35,
  154.         price = 4.19
  155.     },
  156.     modSpeakers = {
  157.         label = _U('speakers'),
  158.         parent = 'cosmetics',
  159.         modType = 36,
  160.         price = 6.98
  161.     },
  162.     modTrunk = {
  163.         label = _U('trunk'),
  164.         parent = 'cosmetics',
  165.         modType = 37,
  166.         price = 5.58
  167.     },
  168.     modHydrolic = {
  169.         label = _U('hydraulic'),
  170.         parent = 'cosmetics',
  171.         modType = 38,
  172.         price = 5.12
  173.     },
  174.     modEngineBlock = {
  175.         label = _U('engine_block'),
  176.         parent = 'cosmetics',
  177.         modType = 39,
  178.         price = 5.12
  179.     },
  180.     modAirFilter = {
  181.         label = _U('air_filter'),
  182.         parent = 'cosmetics',
  183.         modType = 40,
  184.         price = 3.72
  185.     },
  186.     modStruts = {
  187.         label = _U('struts'),
  188.         parent = 'cosmetics',
  189.         modType = 41,
  190.         price = 6.51
  191.     },
  192.     modArchCover = {
  193.         label = _U('arch_cover'),
  194.         parent = 'cosmetics',
  195.         modType = 42,
  196.         price = 4.19
  197.     },
  198.     modAerials = {
  199.         label = _U('aerials'),
  200.         parent = 'cosmetics',
  201.         modType = 43,
  202.         price = 1.12
  203.     },
  204.     modTrimB = {
  205.         label = _U('wings'),
  206.         parent = 'cosmetics',
  207.         modType = 44,
  208.         price = 6.05
  209.     },
  210.     modTank = {
  211.         label = _U('fuel_tank'),
  212.         parent = 'cosmetics',
  213.         modType = 45,
  214.         price = 4.19
  215.     },
  216.     modWindows = {
  217.         label = _U('windows'),
  218.         parent = 'cosmetics',
  219.         modType = 46,
  220.         price = 4.19
  221.     },
  222.     modLivery = {
  223.         label = _U('stickers'),
  224.         parent = 'cosmetics',
  225.         modType = 48,
  226.         price = 9.3
  227.     },
  228.  
  229.     wheels = {
  230.         label = _U('wheels'),
  231.         parent = 'cosmetics',
  232.         modFrontWheelsTypes = _U('wheel_type'),
  233.         modFrontWheelsColor = _U('wheel_color'),
  234.         tyreSmokeColor = _U('tiresmoke')
  235.     },
  236.     modFrontWheelsTypes = {
  237.         label               = _U('wheel_type'),
  238.         parent              = 'wheels',
  239.         modFrontWheelsType0 = _U('sport'),
  240.         modFrontWheelsType1 = _U('muscle'),
  241.         modFrontWheelsType2 = _U('lowrider'),
  242.         modFrontWheelsType3 = _U('suv'),
  243.         modFrontWheelsType4 = _U('allterrain'),
  244.         modFrontWheelsType5 = _U('tuning'),
  245.         modFrontWheelsType6 = _U('motorcycle'),
  246.         modFrontWheelsType7 = _U('highend')
  247.     },
  248.     modFrontWheelsType0 = {
  249.         label = _U('sport'),
  250.         parent = 'modFrontWheelsTypes',
  251.         modType = 23,
  252.         wheelType = 0,
  253.         price = 4.65
  254.     },
  255.     modFrontWheelsType1 = {
  256.         label = _U('muscle'),
  257.         parent = 'modFrontWheelsTypes',
  258.         modType = 23,
  259.         wheelType = 1,
  260.         price = 4.19
  261.     },
  262.     modFrontWheelsType2 = {
  263.         label = _U('lowrider'),
  264.         parent = 'modFrontWheelsTypes',
  265.         modType = 23,
  266.         wheelType = 2,
  267.         price = 4.65
  268.     },
  269.     modFrontWheelsType3 = {
  270.         label = _U('suv'),
  271.         parent = 'modFrontWheelsTypes',
  272.         modType = 23,
  273.         wheelType = 3,
  274.         price = 4.19
  275.     },
  276.     modFrontWheelsType4 = {
  277.         label = _U('allterrain'),
  278.         parent = 'modFrontWheelsTypes',
  279.         modType = 23,
  280.         wheelType = 4,
  281.         price = 4.19
  282.     },
  283.     modFrontWheelsType5 = {
  284.         label = _U('tuning'),
  285.         parent = 'modFrontWheelsTypes',
  286.         modType = 23,
  287.         wheelType = 5,
  288.         price = 5.12
  289.     },
  290.     modFrontWheelsType6 = {
  291.         label = _U('motorcycle'),
  292.         parent = 'modFrontWheelsTypes',
  293.         modType = 23,
  294.         wheelType = 6,
  295.         price = 3.26
  296.     },
  297.     modFrontWheelsType7 = {
  298.         label = _U('highend'),
  299.         parent = 'modFrontWheelsTypes',
  300.         modType = 23,
  301.         wheelType = 7,
  302.         price = 5.12
  303.     },
  304.     modFrontWheelsColor = {
  305.         label = _U('wheel_color'),
  306.         parent = 'wheels'
  307.     },
  308.     wheelColor = {
  309.         label = _U('wheel_color'),
  310.         parent = 'modFrontWheelsColor',
  311.         modType = 'wheelColor',
  312.         price = 0.66
  313.     },
  314.     plateIndex = {
  315.         label = _U('licenseplates'),
  316.         parent = 'cosmetics',
  317.         modType = 'plateIndex',
  318.         price = 1.1
  319.     },
  320.     resprays = {
  321.         label = _U('respray'),
  322.         parent = 'cosmetics',
  323.         primaryRespray = _U('primary'),
  324.         secondaryRespray = _U('secondary'),
  325.         pearlescentRespray = _U('pearlescent'),
  326.     },
  327.     primaryRespray = {
  328.         label = _U('primary'),
  329.         parent = 'resprays',
  330.     },
  331.     secondaryRespray = {
  332.         label = _U('secondary'),
  333.         parent = 'resprays',
  334.     },
  335.     pearlescentRespray = {
  336.         label = _U('pearlescent'),
  337.         parent = 'resprays',
  338.     },
  339.     color1 = {
  340.         label = _U('primary'),
  341.         parent = 'primaryRespray',
  342.         modType = 'color1',
  343.         price = 1.12
  344.     },
  345.     color2 = {
  346.         label = _U('secondary'),
  347.         parent = 'secondaryRespray',
  348.         modType = 'color2',
  349.         price = 0.66
  350.     },
  351.     pearlescentColor = {
  352.         label = _U('pearlescent'),
  353.         parent = 'pearlescentRespray',
  354.         modType = 'pearlescentColor',
  355.         price = 0.88
  356.     },
  357.     modXenon = {
  358.         label = _U('headlights'),
  359.         parent = 'cosmetics',
  360.         modType = 22,
  361.         price = 3.72
  362.     },
  363.     bodyparts = {
  364.         label = _U('bodyparts'),
  365.         parent = 'cosmetics',
  366.         modFender = _U('leftfender'),
  367.         modRightFender = _U('rightfender'),
  368.         modSpoilers = _U('spoilers'),
  369.         modSideSkirt = _U('sideskirt'),
  370.         modFrame = _U('cage'),
  371.         modHood = _U('hood'),
  372.         modGrille = _U('grille'),
  373.         modRearBumper = _U('rearbumper'),
  374.         modFrontBumper = _U('frontbumper'),
  375.         modExhaust = _U('exhaust'),
  376.         modRoof = _U('roof')
  377.     },
  378.     modSpoilers = {
  379.         label = _U('spoilers'),
  380.         parent = 'bodyparts',
  381.         modType = 0,
  382.         price = 4.65
  383.     },
  384.     modFrontBumper = {
  385.         label = _U('frontbumper'),
  386.         parent = 'bodyparts',
  387.         modType = 1,
  388.         price = 5.12
  389.     },
  390.     modRearBumper = {
  391.         label = _U('rearbumper'),
  392.         parent = 'bodyparts',
  393.         modType = 2,
  394.         price = 5.12
  395.     },
  396.     modSideSkirt = {
  397.         label = _U('sideskirt'),
  398.         parent = 'bodyparts',
  399.         modType = 3,
  400.         price = 4.65
  401.     },
  402.     modExhaust = {
  403.         label = _U('exhaust'),
  404.         parent = 'bodyparts',
  405.         modType = 4,
  406.         price = 5.12
  407.     },
  408.     modFrame = {
  409.         label = _U('cage'),
  410.         parent = 'bodyparts',
  411.         modType = 5,
  412.         price = 5.12
  413.     },
  414.     modGrille = {
  415.         label = _U('grille'),
  416.         parent = 'bodyparts',
  417.         modType = 6,
  418.         price = 3.72
  419.     },
  420.     modHood = {
  421.         label = _U('hood'),
  422.         parent = 'bodyparts',
  423.         modType = 7,
  424.         price = 4.88
  425.     },
  426.     modFender = {
  427.         label = _U('leftfender'),
  428.         parent = 'bodyparts',
  429.         modType = 8,
  430.         price = 5.12
  431.     },
  432.     modRightFender = {
  433.         label = _U('rightfender'),
  434.         parent = 'bodyparts',
  435.         modType = 9,
  436.         price = 5.12
  437.     },
  438.     modRoof = {
  439.         label = _U('roof'),
  440.         parent = 'bodyparts',
  441.         modType = 10,
  442.         price = 5.58
  443.     },
  444.     windowTint = {
  445.         label = _U('windowtint'),
  446.         parent = 'cosmetics',
  447.         modType = 'windowTint',
  448.         price = 1.12
  449.     },
  450.     modHorns = {
  451.         label = _U('horns'),
  452.         parent = 'cosmetics',
  453.         modType = 14,
  454.         price = 1.12
  455.     },
  456.     neonColor = {
  457.         label = _U('neons'),
  458.         parent = 'cosmetics',
  459.         modType = 'neonColor',
  460.         price = 1.12
  461.     },
  462.     tyreSmokeColor = {
  463.         label = _U('tiresmoke'),
  464.         parent = 'wheels',
  465.         modType = 'tyreSmokeColor',
  466.         price = 1.12
  467.     }
  468.  
  469. }
Add Comment
Please, Sign In to add comment