> For the complete documentation index, see [llms.txt](https://maxifaxipaxi-1.gitbook.io/mfpscripts-fivem-discontinued/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://maxifaxipaxi-1.gitbook.io/mfpscripts-fivem-discontinued/scripts/policejob/script-intergrations.md).

# Script Intergrations

### Panicbutton & Dispatch

```lua
Config.PanicTime = 120 -- in sec
Config.DispatchScript = 'none'
-- 'none' for no special dispatch script
-- 'core' for default core dispatch
-- 'aty' for aty_dispatch
-- 'cd_dispatch' for cd_dispatch
-- 'qs-dispatch' for Quasar Dispatch
-- 'custom' for custom script

function OpenCustomDispatch(playerCoords)
    -- add custom dispatch script here if Config.DispatchScript = 'custom'
end
```

### Billings & Innvoice

```lua
Config.BillingScript = 'none'
-- 'none' to disable interactionmenu-billings
-- 'esx_billing' for default esx billing
-- 'vivum' for VivumBilling
-- 'custom' for custom script

function OpenCustomBilling(target, amount)
    -- add custom billing script here if Config.BillingScript = 'custom'
end
```

### Mileage

```lua
Config.EnableIntegratedMileage = true -- (use our free resource: mfp_mileage)
Config.MileageScript = 'mfp'
-- 'mfp' for our free resource mfp_mileage
-- 'integrated' to enable the demo version of this feature
```

### Vehicle Registration

```lua
Config.VehicleRegisterScript = 'none'
-- 'lux' for default lux_vehiclepaper
-- 'none' to disable this feature
```

### Prison

```lua
Config.Prisonscript = 'custom' 
-- 'none' if you want to deactivate
-- 'myprison' for MyPrison
-- 'qalle' for esx-qalle-jail
-- 'custom' for custom script

function OpenCustomJailMenu(target)
    -- add custom jail script here if Config.Prisonscript = 'custom'
end
```

### Speedcams

```lua
Config.Speedcamsscript = 'custom' 
-- 'none' if you want to deactivate
-- 'myspeedcams' for MySpeedcams
-- 'custom' for custom script

function CreateCustomSpeedcams()
    -- add custom speedcam script here if Config.Speedcamsscript = 'custom'
end

function ManageCustomSpeedcams()
    -- add custom speedcam script here if Config.Speedcamsscript = 'custom'
end
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://maxifaxipaxi-1.gitbook.io/mfpscripts-fivem-discontinued/scripts/policejob/script-intergrations.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
