> For the complete documentation index, see [llms.txt](https://docs.av-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.av-scripts.com/laptop-pack/boosting/installation/dispatch.md).

# Dispatch

The only dispatch system included by default is `ps-dispatch`, as it is a free and open-source resource.

If you are using a different dispatch script, you can easily integrate it by editing the `sendDispatch` function located in: `av_boosting/client/editable/_dispatch.lua`

This function receives the target vehicle and its class as arguments, providing you with the necessary data to trigger and format your custom police alerts.

{% code title="av\_boosting/client/editable/\_dispatch.lua" %}

```lua
function sendDispatch(vehicle, className)
    dbug("Sending dispatch for vehicle:", vehicle, "class:", className)
    if GetResourceState("ps-dispatch") == "started" then
        return exports['ps-dispatch']:CarBoosting(vehicle)
    end
end
```

{% endcode %}
