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
0000 - N/A
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, use the SQL query below to delete the affected vehicle.
- Replace
2092547334in the query with the vehicle model value shown in your error.
sql
DELETE FROM owned_vehicles WHERE vehicle LIKE '%"model":2092547334%';sql
DELETE FROM player_vehicles WHERE mods LIKE '%"model":2092547334%';Common Issues
Please check out our Self Debugging Guide before contacting our support.
Folder Name Make sure the name of the folder is cd_bridge.
Escrowed Files Do not edit the encrypted files in any way.
Using QBCore but No Admin Permissions?
Using QBCore but No Admin Permissions?
Example:
- You are using QBCore, but your admin permissions are not working correctly.
Reason:
- This is usually caused by missing or incorrect QBCore ACE permissions in your
server.cfg.
Solution:
- Use the permission setup below.
- You do not need to change the permission structure or commands.
- Only replace the
xxxxxxplaceholders with your own player identifiers, such as your FiveM ID or license. - Leave everything else as-is unless you understand how the ACE permission system works.
server
## Permissions ##
add_ace group.admin command allow # allow all commands
{{addPrincipalsMaster}} # This is the way txAdmin assigns permissions to the server owner
# Resources
add_ace resource.qb-core command allow # Allow qb-core to execute commands
# Gods
add_ace qbcore.god command allow # Allow all commands
# Inheritance
add_principal qbcore.god group.admin # Allow gods access to the main admin group used to get all default permissions
add_principal qbcore.god qbcore.admin # Allow gods access to admin commands
add_principal qbcore.admin qbcore.mod # Allow admins access to mod commands
# Players
add_principal identifier.fivem:xxxxxx qbcore.god # Player Name
add_principal identifier.license:xxxxxx qbcore.admin # Player Name
add_principal identifier.license:xxxxxx qbcore.mod # Player NameAuto-Detect Not Detecting Your Resource
Auto-Detect Not Detecting Your Resource
Example:
cd_bridgeis not automatically detecting one of your supported resources.
Reason:
- The resource may have been renamed from its default name. Auto-detection relies on the default resource name.
cd_bridgemay be starting too early and cannot detect resources that have not started yet.
Solution:
- Make sure the supported resource is using its default resource name.
- Place
cd_bridgeat the bottom of yourserver.cfg. - Make sure your framework and other integrated resources start before
cd_bridge.