# Item

**Item settings overview**

{% code title="Config.lua" %}

```lua
Config.requireditem = true -- Enable item requirement before using the UI [ true \ false ]
Config.requireditemame = "computer"  -- Item name
Config.requiredhinttxt = "You need a computer to use this." -- Hint if missing the item
```

{% endcode %}

<mark style="color:blue;">**Config.requireditem**</mark>\
If <mark style="color:green;">true</mark> enable item requirement before using the UI, esle if <mark style="color:red;">false</mark> disable the requirement.\
\ <mark style="color:blue;">**Config.requireditemname**</mark>\
Required tem name. Can be any item.\ <br>

{% hint style="danger" %}
If you don't have the item in your server, run this sql query again:
{% endhint %}

```sql
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('computer', 'Computer', 1, 0, 1);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://scriptforge.gitbook.io/d/crypto-money-washer/configuration-file/item.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
