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.

  1. Locate Config.Vehicles in your config file.

  2. Create new object inside Vehicles table.

  3. Each object must have two properties:

    • model - Here you decide, what vehicle model you want to add. It can be add-on vehicle

    • amount - This property specifies amount of given vehicle, that can be assigned to players

Config.Vehicles = {
    {
        model = "cavalcade3",
        amount = 5
    }
}

Last updated