Unique Shops with Liveries

While the vehicle pack from VooDoo comes with two different vehicles, each vehicle only comes with one livery

If you want to have more than Burgershot and the Taco trucks you can create custom liveries

Below is a very small snapshot of the config file to show how the liveries work

Each vehicle's livery in FiveM is assigned a unique index

The liveries that come with the trucks by default are both index 1

In the snippet below you can see we have set livery 1 as the Burgershot Truck for the voodoofoodtruck

[`voodoofoodtruck`] = {
        
        [1] = {  -- NEW -- ADDED SUPPORT FOR DIFFERENT LIVERIES PER FOOD TRUCK - LIVERY NUMBER GOES HERE
            ['label'] = 'burgershot Truck',

In this one we have set livery 1 as the Attack-A-Taco Truck for the voodootacotruck

 [`voodootacotruck`] = {

        [1] = {  -- NEW -- ADDED SUPPORT FOR DIFFERENT LIVERIES PER FOOD TRUCK - LIVERY NUMBER GOES HERE
            ['label'] = 'Attack-A-Taco Truck',

If you had a second livery at index 2 for either vehicle, you would add a new section starting the [2] to denote the new restaurant as the second livery for that vehicle

We do not sell extra liveries. You would need to either make or procure these yourself if you want more.

Last updated