Fleet vehicles
This script offers you option to create your own fleet. Vehicles specified in configuration file, will be available to be assigned to players in given amount.
Below you can find example of how to add vehicle to fleet.
Locate
Config.Vehiclesin your config file.Create new object inside
Vehiclestable.Each object must have two properties:
model- Here you decide, what vehicle model you want to add. It can be add-on vehicleamount- This property specifies amount of given vehicle, that can be assigned to players
Config.Vehicles = {
{
model = "cavalcade3",
amount = 5
}
}Last updated