> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Mob Interact

> Triggers when a player clicks on a MythicMob.

The **Mob Interact** event fires when a player interacts (right-clicks) with a MythicMob. This is commonly used for talking to mobs that act as quest givers or shopkeepers.

## Configuration

| Key       | Type    | Description                                                 |
| :-------- | :------ | :---------------------------------------------------------- |
| `mobName` | `Regex` | A regular expression to match the internal name of the mob. |

## Usage Examples

### Quest Giver

Start a conversation when player clicks on "Master\_Arkanis".

```yaml theme={null}
id: talk_to_arkanis
type: mythicmobs_interact_event
mobName: Master_Arkanis
```

### Multiple Mobs

Trigger for any mob containing "Villager" in its name.

```yaml theme={null}
id: interact_with_villager
type: mythicmobs_interact_event
mobName: .*Villager.*
```
