blob: f0abcde7993be8e034d21db3258f9687adf70a55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
---
title: fancynpcs_interact
parent: External task types
grand_parent: Task types
---
# fancynpcs_interact (task type)
Not released yet (dev builds)
{: .label .label-green }
Plugin 'FancyNpcs' required
{: .label }
Interact with a FancyNpcs NPC.
## Options
| Key | Description | Type | Required | Default | Notes |
|------------|-------------------------------------------------|---------------------|----------|---------|-------------------------------------|
| `npc-name` | The name of the NPC to interact with. | String | No | \- | Mutually exclusive with `npc-id`. |
| `npc-id` | The id of the NPC to interact with. | String | No | \- | Mutually exclusive with `npc-name`. |
| `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- |
## Examples
Interact with an NPC with ID "gerald":
``` yaml
fancynpcsinteract:
type: "fancynpcs_interact
npc-id: "gerald" # ID of NPC
worlds: # (OPTIONAL) restrict to certain worlds
- "world"
```
|