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.UseExploitProtectionis disabled. - It usually means the
modelvalue is missing from the saved vehicle data inside thevehicle/modscolumn.
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
modelvalue is missing,cd_garagecannot correctly identify the vehicle.
Solution:
- Use the SQL query below for your framework to find vehicles with a missing
modelvalue. - Delete the affected vehicle, or manually add the correct
modelvalue back into the saved vehicle JSON.
sql
SELECT * FROM owned_vehicles WHERE JSON_EXTRACT(vehicle, '$.model') IS NULL;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_garagecannot 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()andSetVehicleProperties()functions that your mechanic/customs resource requires you to do.
Solution:
- Make required changes to
GetVehicleProperties()andSetVehicleProperties()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.FakePlatesbut 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: 
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'.
Reason:
- The
poundcolumn is a default ESX vehicle database column, but it has been removed from yourowned_vehiclestable. UpdateFrameworkDefaultVehicleColumnssyncscd_garagedata 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
UpdateFrameworkDefaultVehicleColumnsoption 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'.
Reason:
- The
poundcolumn is a default ESX vehicle database column, but it has been removed from yourowned_vehiclestable. UpdateFrameworkDefaultVehicleColumnssyncscd_garagedata 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
UpdateFrameworkDefaultVehicleColumnsoption in the in-game configurator. - You can do this using
/garageconfig.
Invalid vehicle model value: -1319110865