Other Integrations

Find information on configuring for other resources!

Wasabi Car Lock

-- This section is intended for people using a locking system on their server, and allows you to give keys to players to prevent bugs
lockingSystems = {
    wasabiCarlock = {
        enabled = false,
        resourceName = "wasabi_carlock",
    }
}

Sometimes players encounter an issue when using a car lock system such as Wasabi. We provide support for Wasabi Car lock, which can be enabled in the config.lua file.

Alternative car locking system

To integrate an alternative car locking system, such as running an export to unlock a vehicle, head to the cl_utils.lua file and add the code to the function below.

-- This can be used to detect when a new drone is created
-- You may need to unlock/register a drone with a garage script if you use this type of resource
function droneCreated(vehicle)
    
end

Last updated

Was this helpful?