For the complete documentation index, see llms.txt. This page is also available as Markdown.

configVehicleSpawnCommand.lua

config.vehicleSpawnCommand = {
    active = true, -- When true, vehicles can be spawned using the commands defined below.
    commands = {
        {
            active = true,
            command = { "pboat" },
            desc = "COMMAND_SPAWN_VEHICLE_BOAT",
            vehicleList = { "predator" },
            needInWater = true,
            progressbar = {
                active = true,
                time = 5000
            }
        },
        {
            active = true,
            command = { "pjet" },
            desc = "COMMAND_SPAWN_VEHICLE_BOAT",
            vehicleList = { "pspjski" },
            needInWater = true,
            progressbar = {
                active = true,
                time = 5000
            }
        },
        {
            active = true,
            command = { "pheli" },
            desc = "COMMAND_SPAWN_VEHICLE_HELI",
            vehicleList = { "polmav", "polmav2" },
            progressbar = {
                active = true,
                time = 5000
            }
        }
    }
}

Last updated