Skip to content

Troubleshooting Guide

Error Codes

Info


If you encounter an error code not listed below, please open a support ticket in the Codesign Discord for assistance.

Server

  • 5111 - This warning appears when Config.UseExploitProtection is disabled. It likely means the model variable in the vehicle/mods column is missing for a player's vehicle. This could be caused by a faulty vehicle shop or, less commonly, a player using a cheat engine. To fix it, delete the vehicle or manually add the plate in the JSON file.
ESX
sql
SELECT * FROM owned_vehicles WHERE JSON_EXTRACT(vehicle, '$.model') IS NULL;
QBCore / QBox
sql
SELECT * FROM owned_vehicles WHERE JSON_EXTRACT(vehicle, '$.model') IS NULL;

Client

Common Issues

Please check out our Self Debugging Guide before contacting our support.

Folder Name Make sure the name of the folder is cd_garage.

Escrowed Files Do not edit the escrowed files in any way.

Screen Flickering?

Screen Flickering?

Example:

If your screen is flickering while using cd_easytime.

Reason:

This is due to you having multiple time/weather sync scripts running at the same time fighting each other eg., vSync or vMenu.

Solution:

Stop the other time/weather script that is causing this or stop cd_easytime and remove it from the dependencies in the fxmanifest.lua of cd_garage.

RGB Colours Not Saving Correctly?

RGB Colours Not Saving Correctly?

Example:

If your vehicles RGB colours are not saving when you store a vehicle or not applying when spawning a vehicle in the garage.

Reason:

This is because you have not made the changes to your frameworks GetVehicleProperties() and SetVehicleProperties() functions that your mechanic/customs resource requires you to do.

Solution:

Make required changes to GetVehicleProperties() and SetVehicleProperties() according to your mechanic/customs resource.

Item(s) Not Found In Inventory Database Table:

Item(s) Not Found In Inventory Database Table:

Example:

If you get an error when the script or server start with the name of an item, such as fakeplate.

Reason:

You have enabled Config.FakePlates but the fake plate item has not been added to your servers items.

Solution:

The error message tells you the name of the item that is missing, add it to your servers items.

Configurator UI Stuck Loading

Configurator UI Stuck Loading

Example: If the configurator UI is stuck loading, check your client F8 console for an error like this: error example

Reason:

  • The default los_santos.webp image is around 14MB.
  • Some GPUs may not have enough VRAM to load it correctly.

Solution:

  • Download the lower-quality version of the image.
  • Replace the los_santos.webp file inside: cd_garage/html/images/map

Missing pound Column SQL Error

Missing pound Column SQL Error:

Example:

  • If you get an SQL error saying Unknown column 'pound' in 'SET'. Missing pound Column SQL Error

Reason:

  • The pound column is a default ESX vehicle database column, but it has been removed from your owned_vehicles table.
  • UpdateFrameworkDefaultVehicleColumns syncs cd_garage data back to the default framework vehicle columns for compatibility. This includes things like the vehicle garage state, impound state, and current garage.

Solution:

  • Disable the UpdateFrameworkDefaultVehicleColumns option in the in-game configurator.
  • You can do this using /garageconfig.

Hello!