Gathering Tasks
Tasks involving resource gathering and item collection.
Task Types
Section titled “Task Types”- CollectTask — Gather items from world resource nodes.
- CollectionCompleteTask — Complete a collection set (no YAML body properties — configure directly in XML).
For properties common to all tasks (header, completion items, journal text) see the Task Overview.
CollectTask
Section titled “CollectTask”Gather items from world resource nodes.
<이름> discriminator: 채집Task
tasks: - taskId: 1 type: CollectTask body: itemId: 98765 targetCount: 5| YAML property | Type | Description |
|---|---|---|
itemId | int | Collection node / item ID to gather. |
targetCount | int | Number of items to collect. |
targetNpc | string | Turn-in NPC spec (if delivery required). |
completionDialogue | int | Dialogue ID shown on completion. |
incompleteDialogue | int | Dialogue ID shown when incomplete. |
completionButtonText | string | Completion button label. |
| YAML property | XML element | XML location |
|---|---|---|
itemId | <콜렉션Id> | <Body> → <채집물지정> → <채집물지정> (entry) |
targetCount | <사냥마리수> | <Body> → <채집물지정> → <채집물지정> (entry) |
targetNpc | <대상NPC지정> | <Body> → <대상NPC지정> |
completionDialogue | <완료시대사작성> | <Body> → <완료시대사작성> |
incompleteDialogue | <미완료시대사작성> | <Body> → <미완료시대사작성> |
completionButtonText | <완료버튼Text> | <Body> → <완료버튼Text> |
<Body> <채집물지정> <채집물지정> <콜렉션Id>98765</콜렉션Id> <사냥마리수>5</사냥마리수> </채집물지정> </채집물지정></Body>CollectionCompleteTask
Section titled “CollectionCompleteTask”Complete a collection set (no YAML body properties — configure directly in XML).
<이름> discriminator: 채집완료Task
tasks: - taskId: 1 type: CollectionCompleteTask nextTaskId: 2 journalText: "@quest:1001001"No body properties.
No body properties.
<Body> <채집물지정> <!-- collection entries defined in source XML --> </채집물지정> <수집아이템지정> <!-- required items defined in source XML --> </수집아이템지정></Body>