# Bot Credential

You need to specify your bot credential in order for auto-login to work and the entire script work correctly.

#### Guest Account

{% hint style="info" %}
Set the password to empty for guest accounts.
{% endhint %}

You can use guest account, the script support using guest account and skipping the tutorial by itself. If you do not wish to use any name, the bot will randomize the name 8 letter.

#### Example Random Guest Account

```lua
credential = {
    name = '',
    password = ''
}
```

#### Example Guest Account

```lua
credential = {
    name = 'botsekut1',
    password = ''
}
```

#### Example

```lua
credential = {
    name = 'botsekut1',
    password = 'sekut'
}
```


---

# 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://machseeman.gitbook.io/sarafarm/customizing-your-configuration/bots-configuration/bot-credential.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.
