#Dealership

6 messages · Page 1 of 1 (latest)

cyan edge
#

How to add cars into dealership i have them on tx admin but not the dealer ship

weary rampartBOT
#

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!

discordtip TIP:

Need actual official support? Reach out to our customer care. zaplivechat

sturdy hull
#

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')
;
cyan edge
#

Thank you