Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Request Qb-customs with item

CreatingCalibers

Gold Elite
Joined
Oct 11, 2022
Messages
321
Reaction score
2,000
Points
316
Location
20110
I would wait on that,
Qb-customs was pulled from the qbcore dev team turns out they were using stolen code in portions of the script and are rewritten it from scratch.
 

CreatingCalibers

Gold Elite
Joined
Oct 11, 2022
Messages
321
Reaction score
2,000
Points
316
Location
20110
you go to the \resources\[qb]\qb-core\shared\vehicle.lua to changes prices of any car it won't be in the custom script itself

if your looking for the benny price in custom you go to
resources\[qb]\qb-customs\cong.lua and change it to what he has in the video for items instead of money

you would need to edit this in confg
-- ADJUST PRICING
vehicleCustomisationPrices = {
cosmetics = {price = 400},
respray = {price = 1000},
performance = {prices = {0, 3250, 5500, 10450, 15250, 20500, 25000}},
turbo = {prices = {0, 15000}},
wheels = {price = 400},
customwheels = {price = 600},
wheelsmoke = {price = 400},
windowtint = {price = 400},
neonside = {price = 100},
neoncolours = {price = 500},
headlights = {price = 100},
xenoncolours = {price = 500},
oldlivery = {price = 500},
plateindex = {price = 1000}
}

So like this
-- ADJUST PRICING
vehicleCustomisationPrices = {
["cosmetics"]
item = "plastic",
cost = 2,
},

Spacing is important
bandicam 2023-02-10 12-59-08-765.jpg
 
Last edited:

axsilen2

Silver Elite
Joined
Jan 29, 2023
Messages
18
Reaction score
50
Points
231
Location
vietnam
you go to the \resources\[qb]\qb-core\shared\vehicle.lua to changes prices of any car it won't be in the custom script itself

if your looking for the benny price in custom you go to
resources\[qb]\qb-customs\cong.lua and change it to what he has in the video for items instead of money

you would need to edit this in confg
-- ADJUST PRICING
vehicleCustomisationPrices = {
cosmetics = {price = 400},
respray = {price = 1000},
performance = {prices = {0, 3250, 5500, 10450, 15250, 20500, 25000}},
turbo = {prices = {0, 15000}},
wheels = {price = 400},
customwheels = {price = 600},
wheelsmoke = {price = 400},
windowtint = {price = 400},
neonside = {price = 100},
neoncolours = {price = 500},
headlights = {price = 100},
xenoncolours = {price = 500},
oldlivery = {price = 500},
plateindex = {price = 1000}
}

So like this
-- ADJUST PRICING
vehicleCustomisationPrices = {
["cosmetics"]
item = "plastic",
cost = 2,
},

Spacing is important
View attachment 12670
thank you so much, you help me alot <3
 

axsilen2

Silver Elite
Joined
Jan 29, 2023
Messages
18
Reaction score
50
Points
231
Location
vietnam

you go to the \resources\[qb]\qb-core\shared\vehicle.lua to changes prices of any car it won't be in the custom script itself

if your looking for the benny price in custom you go to
resources\[qb]\qb-customs\cong.lua and change it to what he has in the video for items instead of money

you would need to edit this in confg
-- ADJUST PRICING
vehicleCustomisationPrices = {
cosmetics = {price = 400},
respray = {price = 1000},
performance = {prices = {0, 3250, 5500, 10450, 15250, 20500, 25000}},
turbo = {prices = {0, 15000}},
wheels = {price = 400},
customwheels = {price = 600},
wheelsmoke = {price = 400},
windowtint = {price = 400},
neonside = {price = 100},
neoncolours = {price = 500},
headlights = {price = 100},
xenoncolours = {price = 500},
oldlivery = {price = 500},
plateindex = {price = 1000}
}

So like this
-- ADJUST PRICING
vehicleCustomisationPrices = {
["cosmetics"]
item = "plastic",
cost = 2,
},

Spacing is important
View attachment 12670
1676054211129.png

i have change it , and it error :(
 

CreatingCalibers

Gold Elite
Joined
Oct 11, 2022
Messages
321
Reaction score
2,000
Points
316
Location
20110
you didn't put your spacing in and the script doesn't have a end
line 43 back up to top no spacing
All the tables need it.


see the picture below how items column is spaced under ["cos
---------------------------------------------------------------------->item = "plastic"

change
vehicleCustomisationPrices = {

to

RepairCostAmount = {
["cosmetics"]
item = "plastic",
cost = 2,
},
["performance"]
item = "plastic",
cost = 2,
},


Photo Of Code
bandicam 2023-02-10 17-38-52-012.jpg
 
Last edited:

axsilen2

Silver Elite
Joined
Jan 29, 2023
Messages
18
Reaction score
50
Points
231
Location
vietnam
you didn't put your spacing in and the script doesn't have a end
line 43 back up to top no spacing
All the tables need it.


see the picture below how items column is spaced under ["cos
---------------------------------------------------------------------->item = "plastic"

change
vehicleCustomisationPrices = {

to

RepairCostAmount = {
["cosmetics"]
item = "plastic",
cost = 2,
},
["performance"]
item = "plastic",
cost = 2,
},


Photo Of Code
View attachment 12675
it have change like you say, and it not working :( still error in cl_ui
 

CreatingCalibers

Gold Elite
Joined
Oct 11, 2022
Messages
321
Reaction score
2,000
Points
316
Location
20110
the coding style is over 1 year old may not work with the latest qbcore too Why I would wait for the rewritten release through the devs
 
Top