> For the complete documentation index, see [llms.txt](https://items.advancedplugins.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://items.advancedplugins.net/items/items-settings/general-settings.md).

# General Settings

```yaml
settings:
  # Should items be stackable
  disabledStacking: true
  # Should item be used by owner only
  # Owner is the person which receives item when given with commands
  ownerOnly: false
  # Usage limit
  # Set to -1 to disable
  usageLimit: -1
  # Worlds in which this item cannot be used
  restrictedWorlds:
    - 'example_world'
  # Should interactions be disabled? E.g. placing
  disableInteractions: true
  # Should inventory interactions with this item be disabled?
  # If set to true, player won't be able to move this item in inventory
  disableInventoryInteractions: false
```

#### `disabledStacking`

* Determines whether items should be stackable or not.
* Set to `true` to disable stacking, and `false` to enable stacking.

#### `ownerOnly`

* Determines if the item should be usable by the owner only.
* The owner is the person who receives the item when given with commands.
* Set to `true` for owner-only usage, and `false` to allow anyone to use the item.

#### `usageLimit`

* Sets a limit on the number of times the item can be used.
* Set to `-1` to disable usage limits.

#### `restrictedWorlds`

* Lists the worlds in which the item cannot be used.
* Add world names to the list to restrict usage in those worlds.

#### `disableInteractions`

* Determines whether interactions with the item should be disabled (e.g., placing).
* Set to `true` to disable interactions, and `false` to enable them.

#### `disableInventoryInteractions`

* Determines whether inventory interactions with the item should be disabled.
* If set to `true`, the player won't be able to move the item in their inventory.
* Set to `false` to allow inventory interactions.

<br>
