Common Errors
In this section, you will find answers to commonly encountered issues. Remember that most errors stem from incorrect configuration, lack of required resources, or insufficient modification.
Bear in mind that troubleshooting requires patience and precision. Try to carefully analyze the errors and systematically review possible solutions.
If the issue persists after verifying the configuration and available resources, please contact the support on the VMS Discord.
My LMB does not work when creating a house.
This usually means that an external resource is blocking the Left Mouse Button input.
To fix this, open your config.lua, find the option Config.HousingCreatorControls and try replacing SELECT with one of the alternative control indexes for the Left Mouse Button:
['SELECT'] = {controlIndex = 92},
['SELECT'] = {controlIndex = 106},
['SELECT'] = {controlIndex = 122},
['SELECT'] = {controlIndex = 135},
['SELECT'] = {controlIndex = 142},
['SELECT'] = {controlIndex = 223},
['SELECT'] = {controlIndex = 229},
['SELECT'] = {controlIndex = 237},
['SELECT'] = {controlIndex = 257},
['SELECT'] = {controlIndex = 329},
['SELECT'] = {controlIndex = 346},K4MB1 Shells have a buggy starting position inside.
You need to remove the qb-interior resource, and download Starter Shells from the official K4MB1 website.
Rain/snow inside the shell for a while with qb-weathersync
Find the equivalents in your current qb-weathersync/client/client.lua and replace with the code below.
RegisterNetEvent('qb-weathersync:client:DisableSync', function()
disable = true
end)Rain/snow inside the shell for a while with qbx_weathersync
Find the equivalents in your current qbx_weathersync/client/client.lua and replace with the code below.
RegisterNetEvent('qb-weathersync:client:DisableSync', function()
disable = true
end)No time sync inside the shell with vSync
By default, vSync does not have the ability to stop and resume time or weather, but in the following file we have prepared such an option.
The marked lines of code have been added:
Last updated