> For the complete documentation index, see [llms.txt](https://docs.stevoscripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stevoscripts.com/paid-scripts/stevo_police/exports.md).

# Exports

## Client Exports<br>

### Dispatch

```
Example Usage

local data = {
  caller = 'ESTA', 
  coords = cache.coords,
  priority = "A" ,
  callmessage = "I need help!", 
  cadmessage = "I need help! My dad slapped my mom!"
}
exports['stevo_cad']:dispatch(data)

CALLER: Caller name in cad (eg. ESTA)
COORDS: Coords you want the call to come from. (eg. inside bank, or player coords)
PRIORITY: Priority of call (eg. A, B, C)
CALLMESSAGE: Message that displays on the onscreen notification.
CADMESSAGE: Message that displays on the call message in the cad.
```
