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

Example:

  • This warning appears when Config.UseExploitProtection is disabled.
  • It usually means the model value is missing from the saved vehicle data inside the vehicle/mods column.

Reason:

  • This can be caused by another resource saving the vehicle incorrectly, such as a faulty vehicle shop.
  • Less commonly, it may be caused by a player using a cheat engine.
  • If the model value is missing, cd_garage cannot correctly identify the vehicle.

Solution:

  • Use the SQL query below for your framework to find vehicles with a missing model value.
  • Delete the affected vehicle, or manually add the correct model value back into the saved vehicle JSON.
ESX
sql
SELECT * FROM owned_vehicles WHERE JSON_EXTRACT(vehicle, '$.model') IS NULL;
QBCore / QBox
sql
SELECT * FROM player_vehicles WHERE JSON_EXTRACT(mods, '$.model') IS NULL;

Client

3423

Example:

  • If you get an error such as Invalid vehicle model value: -1319110865.

Reason:

  • This usually means the vehicle was previously added to a player's garage while the vehicle resource was installed and running.
  • The vehicle files have since been removed, or the resource containing that vehicle is no longer started.
  • Because the vehicle model can no longer be loaded, cd_garage cannot find the vehicle data.

Solution:

  • Make sure the resource containing the vehicle is installed and started again.
  • If the vehicle has been permanently removed from the server, remove or replace that vehicle from the player's garage/database.

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.

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.

Invalid vehicle model value: -1319110865

Hello!