#Dealership
6 messages · Page 1 of 1 (latest)
Hi there 👋
Thank you for creating a post on our Community Forum. Please keep in mind that we don't provide official support on Discord. This is a forum for the community, by the community. Meaning that help is not guaranteed. Now let's wait and see if someone of our lovely community can help you out!
TIP:
Need actual official support? Reach out to our customer care. 
It depends on your dealership script, I would recommend using google but I will do this part for you now 
If you use esx_vehicleshop, you have to put it in your MySQL database
you have to have the spawnnames and then you can add them into your DB by using this template
('DisplayName', 'spawnname', price, 'category')
Example:
INSERT INTO `vehicles` (name, model, price, category) VALUES
('Porsche 992 GT3','992gt3',350000,'sports'),
('Volkswagen Golf 7','golf7',30000,'sedan'),
('BMW X7 2020','x72020',140000,'suvs'),
('Mercedes Sprinter 2022','sprinter22',80000,'vans')
;
Thank you