Issues with items
It may happen that if you have particular inventories, item addition or removal causes errors in server console
In this case, to try fixing the issue try doing the following steps:
Step 1
- Go in the script folder in - integrations/sv_integrations.luafile
- Set this option from 
SKIP_ITEM_EXISTS_CHECK = falseto
SKIP_ITEM_EXISTS_CHECK = trueStep 2
- If the script has a - default_config.jsonfile, edit this option in the- "server"section from
"canAlwaysCarryItem": false,to
"canAlwaysCarryItem": true,Example screenshots:
Before:

After:

2. If the script has current_config.json file (which is a different file from the previous one), edit again the option canAlwaysCarryItem to true
Example screenshots:
Before:

After:

What to do if I don't have canAlwaysCarryItem option?
If you don't have the canAlwaysCarryItem option, you simply need to add it, be sure to add it at the beginning of the server part
Example
Before:

After:

Step 3
The item you are working on, must exist to be used in the scripts. To be sure the item exist, you can try to give it to yourself
Creating the item depends on your framework and/or on your inventory, so creating it will be up to you
Last updated
Was this helpful?