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

๐Ÿ“‚Carcols Fixer

Documentation for Carcols Fixer.

1

License & Download

Once you have completed the payment, you will get access to the product in your profile page where you can download the resource, and manage the license to the product.

You can find the License Key to your product in the license page.

You need to make sure the Authorized IP in the license page matches your servers IP (do not include the port).

2

Setting Up In FiveM Server

  1. Download the product from the profile page.

  2. Once the download is completed, unzip the folder.

  3. Once unzipped, drag & drop the folder into your server root folder. (Same as server.cfg file)

    Position of the CarcolsFixer in your FiveM server
    Position of the CarcolsFixer in your FiveM server
  4. Open the config.json file, inside you will find the following:

    {
        "licensekey": "LICENSE_KEY_HERE",
    
        "skipResources": [ "PATH/TO/RESOURCE", "PATH/TO/RESOURCE2" ],
        "checkSirenIDs": true,
        "checkLightIDs": true,
        "checkModkitIDs": true
    }
  5. Replace the LICENSE_KEY_HERE text with your license key.

  6. We do not recommend you use this unless you know what you are doing! If you wish to skip some resources, you can put the path to the resource in the "skipResources". Paths need to be literal paths (for example: /home/fxserver/server-data/resources/NORTHERNMODS), and should be inside quotes ("") , paths need to be separated by a comma (,).

  7. You can disable checking sirenSettings IDs by setting the "checkSirenIDs" to false

  8. You can disable checking lightSettings IDs by setting the "checkLightIDs" to false

  9. You can disable checking modKit IDs by setting the "checkModkitIDs" to false

To make sure the resource works, do not modify anything other than the config.json file.

Next move to Starting Resource.

3

Starting Resource

WINDOWS Starting Resource

If you only have SSH access to your server, go to LINUX Starting Resource.

The resource will begin fixing carcols IDs automatically as soon as it is started.

  1. Navigate to the CarcolsFixer resource. (Likely looks like this: /home/fxserver/server-data/CarcolsFixer)

  2. When inside of the CarcolsFixer folder right click on the folder.

    The CarcolsFixer folder
  3. Click on "Open in Terminal"

    Open in Terminal inside of the CarcolsFixer resource

  4. In the terminal type: node .

  5. Make sure to start/restart your vehicles after the CarcolsFixer has run.

LINUX Starting Resource

The resource will begin fixing carcols IDs automatically as soon as it is started.

  1. Use SSH to connect to your server.

  2. Navigate to the CarcolsFixer resource. With the cd command. (Likely looks like this: cd /home/fxserver/server-data/CarcolsFixer)

  3. When inside of the CarcolsFixer folder, run the command node .

    The CarcolsFixer folder
  4. Make sure to start/restart your vehicles after the CarcolsFixer has run.

4

Restart The Server

Restart the server to make sure all changes get applied.

Common Issues

Server crashes when resource is started.

This can happen when your server has many resources. To fix this disable all but one of the checks, so for example in the config.json:

{
    "licensekey": "LICENSE_KEY_HERE",

    "skipResources": [ "PATH/TO/RESOURCE", "PATH/TO/RESOURCE2" ],
    "checkSirenIDs": true,
    "checkLightIDs": false,
    "checkModkitIDs": false
}

After running it like this you can run it again with a different check enabled and it will work like normal.

Info: < PATH>: Couldn't find any ID, will use a random number. This highly likely means you have over 255 different IDs already.

This will lead to some vehicles to break! This means there are more than 255 different sirenSettingsIDs, which is the limit in GTA V. There is currently no work around for this limit other than a client sided solution here, but this will only fix the issue for clients that have the script installed.

Error: <PATH>: Unexpected close tag

This means the carcols or carvartions file in the path given in the error has invalid syntax. To fix this, make sure to check the syntax of the file.

Last updated