> For the complete documentation index, see [llms.txt](https://am-scripts.gitbook.io/am-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://am-scripts.gitbook.io/am-scripts/am-scripts/trucking/faq.md).

# FAQ

<details>

<summary>How can I add a custom truck image?</summary>

You can add your own truck images by placing them in the `Web/build/vehicles/` directory. The resource supports both `.png` and `.webp` formats.

</details>

<details>

<summary>I don’t want the Convoys section. How can I disable it?</summary>

You can disable the Convoys (or any other job type) directly in the config file. Simply go to `config/jobs.lua` and turn off the job type you don’t want.

```lua
convoys = {
    enabled = true, --- enable this type of jobs (setting this to false will disable them and also hide the categorie from the ui)
}
```

</details>

<details>

<summary>My framework isn’t supported. What should I do?</summary>

No problem! You can add support manually by placing your framework functions inside `Framework/custom/` and setting the framework to `custom` in the config.<br>

```lua
 framework = 'custom', --- currently supports 'qbx', 'qb', 'esx', 'custom' (add your code in framework/ folder)
```

</details>

<details>

<summary>What should I keep when updating the resource?</summary>

When updating the resource, make sure to preserve your custom files to avoid losing any modifications:

* Keep the `Web/build/logos/` and `Web/build/vehicles/` folders (for your custom images).
* Keep the `Framework/custom/` folder if you’re using a custom framework.
* Check the update notes in the Discord channel for a list of changed files, so you only replace what’s necessary and don’t overwrite your configs or customizations.

</details>

<details>

<summary>Is the tablet required to run the Trucking?</summary>

No the tablet is not required

</details>
