For the complete documentation index, see llms.txt. This page is also available as Markdown.

FAQ

How can I add a custom truck image?

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

I don’t want the Convoys section. How can I disable it?

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.

convoys = {
    enabled = true, --- enable this type of jobs (setting this to false will disable them and also hide the categorie from the ui)
}
My framework isn’t supported. What should I do?

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

 framework = 'custom', --- currently supports 'qbx', 'qb', 'esx', 'custom' (add your code in framework/ folder)
What should I keep when updating the resource?

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.

Is the tablet required to run the Trucking?

No the tablet is not required

Last updated