# 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

1. Go in the script folder in `integrations/sv_integrations.lua` file
2. Set this option from

```lua
SKIP_ITEM_EXISTS_CHECK = false
```

to

```lua
SKIP_ITEM_EXISTS_CHECK = true
```

## Step 2

1. If the script has a `default_config.json` file, edit this option in the `"server"` section from

```json
"canAlwaysCarryItem": false,
```

to

```json
"canAlwaysCarryItem": true,
```

Example screenshots:

Before:

<figure><img src="https://3735039044-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFH9TH8An8XLjMiOMvVGb%2Fuploads%2Fgit-blob-686c8ec9943710fca4b0fe41fc30c4d5c3b28aa9%2Fcan_always_carry_item_before.jpg?alt=media" alt=""><figcaption></figcaption></figure>

After:

<figure><img src="https://3735039044-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFH9TH8An8XLjMiOMvVGb%2Fuploads%2Fgit-blob-7f773ae3d01b10dd56faa3495358efd06d48c180%2Fcan_always_carry_item_after.jpg?alt=media" alt=""><figcaption></figcaption></figure>

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:

<div align="center"><figure><img src="https://3735039044-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFH9TH8An8XLjMiOMvVGb%2Fuploads%2Fgit-blob-eeb4b24107b8b6a45f5736a7c2290c049b7db43d%2Fcurrent_config_can_always_carry_before.jpg?alt=media" alt=""><figcaption></figcaption></figure></div>

After:

<figure><img src="https://3735039044-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFH9TH8An8XLjMiOMvVGb%2Fuploads%2Fgit-blob-d6e0192893f6d73d906815e61a376bb1618e5440%2Fcurrent_config_can_always_carry_after.jpg?alt=media" alt=""><figcaption></figcaption></figure>

### 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:

<figure><img src="https://3735039044-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFH9TH8An8XLjMiOMvVGb%2Fuploads%2Fgit-blob-ef9ce7abb5b167e59b2f71e63cb8e00baf795bda%2Fno_can_always_carry_item_before.jpg?alt=media" alt=""><figcaption></figcaption></figure>

After:

<figure><img src="https://3735039044-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFH9TH8An8XLjMiOMvVGb%2Fuploads%2Fgit-blob-3ce50c9f4057bce91da5094aacc1977792a28c5e%2Fno_can_always_carry_item_after.jpg?alt=media" alt=""><figcaption></figcaption></figure>

## 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
